* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #24f903 0%, #1af901 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Главная страница */
        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background: url(/image/photo_5339529473428230043_y.png) center/cover;
            position: relative;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            color: white;
            font-size: clamp(2rem, 8vw, 5rem);
            font-weight: 900;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            color: #01f90a;
            font-size: clamp(1.2rem, 4vw, 2.5rem);
            font-weight: 600;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            margin-bottom: 50px;
        }

        .enter-btn {
            padding: 20px 60px;
            font-size: clamp(1.2rem, 3vw, 2rem);
            font-weight: 700;
            color: white;
            background: linear-gradient(135deg, #fc0101 0%, #fd0101 100%);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .enter-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(1, 251, 1, 0.6);
        }

        .enter-btn:active {
            transform: translateY(-2px) scale(1.02);
        }

        /* Внутренняя страница меню */
        .menu-page {
            display: none;
            min-height: 100vh;
            padding: 40px 20px;
            background-image: url(/image/fon1стр.jpg);
            background-repeat: no-repeat;
            background-size: cover;
        }

        .menu-page.active {
            display: block;
        }

        .menu-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            animation: fadeInDown 0.8s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .menu-header h1 {
            color: rgb(252, 4, 4);
            font-size: clamp(2rem, 6vw, 4rem);
            margin-bottom: 10px;
        }

        .menu-header h3 {
            color: #fcfcfc;
            font-size: clamp(1rem, 3vw, 1.8rem);
            font-weight: 600;
        }

        .menu-header .format-text {
            color: white;
            font-size: clamp(0.9rem, 2.5vw, 1.5rem);
            margin-top: 10px;
            opacity: 0.9;
        }

        .menu-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            padding: 20px;
        }

        .menu-item {
            background: yellow;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            animation: fadeIn 0.6s ease backwards;
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .menu-item1 {
            background: red;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            animation: fadeIn 0.6s ease backwards;
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .menu-item2 {
            background: blue;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            animation: fadeIn 0.6s ease backwards;
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .menu-item:nth-child(n) {
            animation-delay: calc(0.1s * var(--i));
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .menu-item:hover {
            transform: translateY(-10px) scale(1.03);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border-color: #03fe0b;
        }

        .menu-item h1 {
            color: black;
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            margin-bottom: 10px;
        }

        .menu-item h3, .menu-item h4 {
            color: #01127e;
            font-size: clamp(0.8rem, 2vw, 1rem);
            font-weight: 400;
            margin-top: 8px;
            opacity: 0.9;
        }

        .back-btn {
            position: fixed;
            top: 20px;
            left: 20px;
            padding: 15px 30px;
            background: rgba(244, 67, 54, 0.9);
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .back-btn:hover {
            background: rgba(244, 67, 54, 1);
            transform: translateX(-5px);
        }

        /* Адаптация для планшетов */
        @media (max-width: 768px) {
            .menu-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 15px;
                padding: 15px;
            }

            .menu-item {
                padding: 25px 20px;
            }

            .hero-title {
                letter-spacing: 1px;
            }

            .enter-btn {
                padding: 18px 50px;
            }

            .back-btn {
                top: 15px;
                left: 15px;
                padding: 12px 25px;
                font-size: 0.9rem;
            }
        }

        /* Адаптация для мобильных */
        @media (max-width: 480px) {
            .hero-section {
                padding: 15px;
            }

            .hero-subtitle {
                margin-bottom: 30px;
            }

            .enter-btn {
                padding: 15px 40px;
                letter-spacing: 1px;
            }

            .menu-page {
                padding: 20px 10px;
            }

            .menu-header {
                padding: 30px 15px;
                margin-bottom: 30px;
            }

            .menu-grid {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 10px;
            }

            .menu-item {
                padding: 20px 15px;
            }

            .menu-item h1 {
                font-size: 1.1rem;
            }

            .menu-item h3, .menu-item h4 {
                font-size: 0.85rem;
            }

            .back-btn {
                top: 10px;
                left: 10px;
                padding: 10px 20px;
                font-size: 0.85rem;
            }
        }

        /* Адаптация для очень маленьких экранов */
        @media (max-width: 320px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .enter-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .menu-item {
                padding: 18px 12px;
            }
        }

        /* Адаптация для больших экранов */
        @media (min-width: 1400px) {
            .menu-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Социальные сети */
        .social-links {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

        .social-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            transform: scale(0);
            transition: transform 0.3s ease;
            border-radius: 50%;
        }

        .social-btn:hover::before {
            transform: scale(1);
        }

        .social-btn:hover {
            transform: translateX(-10px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        }

        .social-btn svg {
            width: 30px;
            height: 30px;
            fill: white;
            position: relative;
            z-index: 1;
        }

        .social-btn.vk {
            background: linear-gradient(135deg, #4680C2 0%, #5181b8 100%);
        }

        .social-btn.telegram {
            background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
        }

        .social-btn.whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }

        .social-btn.youtube {
            background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
        }

        .social-btn.instagram {
            background: linear-gradient(135deg, #E4405F 0%, #D6249F 50%, #FCCC63 100%);
        }

        .social-btn.twitter {
            background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
        }

        .social-btn.mail {
            background: #4680C2
        }

        /* Тултипы для соцсетей */
        .social-btn::after {
            content: attr(data-tooltip);
            position: absolute;
            right: 70px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 8px 15px;
            border-radius: 8px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            font-size: 14px;
        }

        .social-btn:hover::after {
            opacity: 1;
        }

        /* Адаптация социальных сетей для планшетов */
        @media (max-width: 768px) {
            .social-links {
                right: 15px;
                gap: 12px;
            }

            .social-btn {
                width: 50px;
                height: 50px;
            }

            .social-btn svg {
                width: 25px;
                height: 25px;
            }

            .social-btn::after {
                display: none;
            }
        }

        /* Адаптация социальных сетей для мобильных */
        @media (max-width: 480px) {
            .social-links {
                position: fixed;
                bottom: 20px;
                right: auto;
                left: 50%;
                transform: translateX(-50%);
                flex-direction: row;
                gap: 10px;
                top: auto;
            }

            .social-btn {
                width: 45px;
                height: 45px;
            }

            .social-btn svg {
                width: 22px;
                height: 22px;
            }

            .social-btn:hover {
                transform: translateY(-5px) scale(1.1);
            }
        }

        /* Ландшафтная ориентация на мобильных */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero-section {
                min-height: auto;
                padding: 30px 20px;
            }

            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }

            .hero-subtitle {
                font-size: 1.3rem;
                margin-bottom: 25px;
            }

            .enter-btn {
                padding: 12px 40px;
                font-size: 1.2rem;
            }

            .social-links {
                right: 10px;
                gap: 8px;
            }

            .social-btn {
                width: 40px;
                height: 40px;
            }

            .social-btn svg {
                width: 20px;
                height: 20px;
            }
        }