/* ══════════════════════════════════════════════
           RESET & BASE
        ══════════════════════════════════════════════ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --red: #E51921;
            --red-hover: #c91319;
            --blue: #2B50FF;
            --blue-dark: #1e3fcc;
            --black: #0A0A0A;
            --white: #FFFFFF;
            --bg-cream: #F2EDE7;
            --bg-dark: #111111;
            --bg-card: #FFFFFF;
            --text-primary: #0A0A0A;
            --text-secondary: #6B7280;
            --text-on-dark: #FFFFFF;
            --text-muted: #9CA3AF;
            --border: #E5E7EB;
            --font-mono: 'JetBrains Mono', 'Courier New', monospace;
            --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
            --radius: 12px;
            --radius-sm: 8px;
            --radius-lg: 16px;
            --shadow: 0 1px 3px rgba(0,0,0,.08);
            --shadow-md: 0 4px 20px rgba(0,0,0,.08);
            --max-w: 1200px;
            --transition: .25s ease;
        }

        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: var(--font-sans);
            color: var(--text-primary);
            background: var(--bg-cream);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        button { cursor: pointer; font-family: inherit; border: none; }
        ul { list-style: none; }

        .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
        .hours-ribbon.double {
            display: none;
        }
        /* ══════════════════════════════════════════════
           1. TOP INFO BAR
        ═════════════════════════════════════════════ */
        .top-bar {
            background: var(--red);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .5px;
            text-transform: uppercase;
            padding: 8px 0;
            text-align: center;
        }
        .top-bar span { opacity: .7; }
        .top-bar a {
            color: var(--white);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

            /* ══════════════════════════════════════════════
               2. MAIN NAV
            ═════════════════════════════════════════════ */
            .main-nav {
                background: var(--black);
                position: sticky;
                top: 0;
                z-index: 1000;
                border-bottom: 1px solid rgba(255,255,255,.06);
            }
            .main-nav .container {
                display: flex;
                align-items: center;
                justify-content: space-between;
                height: 56px;
            }
            .nav-logo {
                display: flex;
                align-items: center;
                gap: 10px;
                color: var(--white);
                font-family: var(--font-mono);
                font-weight: 700;
                font-size: 24px;
                letter-spacing: 1px;
            }
            .nav-logo svg { width: 28px; height: 28px; }

            .nav-links {
                display: flex;
                align-items: center;
                gap: 28px;
            }
            .nav-links a {
                color: var(--text-muted);
                font-size: 13px;
                font-weight: 500;
                transition: color var(--transition);
            }
            .nav-links a:hover { color: var(--white); }

            .nav-cta {
                background: var(--blue);
                color: var(--white) !important;
                padding: 8px 18px;
                border-radius: 6px;
                font-size: 13px;
                font-weight: 600;
                transition: background var(--transition);
            }
            .nav-cta:hover { background: var(--blue-dark); }

            .nav-burger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
            .nav-burger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
            /* Навигация с dropdown */
            .nav-links {
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .nav-item {
                position: relative;
            }

            .nav-btn {
                color: var(--text-muted);
                font-size: 13px;
                font-weight: 500;
                padding: 8px 14px;
                border-radius: 6px;
                transition: all var(--transition);
                background: none;
                border: none;
                cursor: pointer;
                display: flex;
                align-items: center;
                gap: 6px;
            }

            .nav-btn:hover {
                color: var(--white);
                background: rgba(255, 255, 255, 0.05);
            }

            .nav-arrow {
                width: 10px;
                height: 10px;
                transition: transform var(--transition);
            }

            .nav-item.active .nav-arrow {
                transform: rotate(180deg);
            }

            /* Dropdown меню */
            .dropdown {
                position: absolute;
                top: calc(100% + 8px);
                left: 0;
                background: var(--bg-dark);
                border: 2px solid var(--blue);
                border-radius: 12px;
                padding: 8px;
                min-width: 280px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all var(--transition);
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
                z-index: 1000;
            }

            .nav-item.active .dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .dropdown-item {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 12px 16px;
                color: var(--text-muted);
                font-size: 14px;
                border-radius: 8px;
                transition: all var(--transition);
                text-decoration: none;
            }

            .dropdown-item:hover {
                background: rgba(255, 255, 255, 0.05);
                color: var(--white);
            }

            .dropdown-icon {
                font-size: 18px;
                flex-shrink: 0;
            }

            .dropdown-text {
                font-weight: 500;
            }

            /* CTA кнопка */
            .nav-cta {
                background: var(--blue);
                color: var(--white) !important;
                padding: 10px 20px;
                font-weight: 600;
                margin-left: 8px;
            }

            .nav-cta:hover {
                background: var(--blue-dark);
                transform: translateY(-1px);
            }
            /* Mobile Styles */
            @media (max-width: 768px) {
                /* Top bar - red */
                .top-bar {
                    background: var(--red);
                    color: var(--white);
                    font-size: 11px;
                    padding: 8px 16px;
                    text-align: center;
                    line-height: 1.4;
                }

                .top-bar a {
                    color: var(--white);
                    text-decoration: none;
                    font-weight: 600;
                }

                /* Main nav - black */
                .main-nav {
                    background: var(--black);
                    padding: 12px 16px;
                }

                .main-nav .container {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    height: auto;
                    min-height: 48px;
                }

                .nav-logo {
                    color: var(--white);
                    font-size: 18px;
                    font-weight: 700;
                    letter-spacing: 2px;
                }

                .nav-logo svg {
                    width: 32px;
                    height: 32px;
                }

                /* Mobile menu button */
                .nav-burger {
                    display: flex;
                    flex-direction: column;
                    gap: 5px;
                    background: none;
                    border: none;
                    padding: 8px;
                    cursor: pointer;
                }

                .nav-burger span {
                    width: 24px;
                    height: 2px;
                    background: var(--white);
                    border-radius: 2px;
                    transition: all 0.3s ease;
                }

                /* Mobile navigation panel */
                .nav-links {
                    display: none;
                    position: absolute;
                    top: 100%;
                    left: 0;
                    right: 0;
                    background: var(--black);
                    flex-direction: column;
                    padding: 16px;
                    gap: 8px;
                    border-top: 1px solid rgba(255, 255, 255, 0.1);
                    z-index: 1000;
                }

                .nav-item {
                    width: 100%;
                }

                .nav-btn {
                    width: 100%;
                    justify-content: space-between;
                    padding: 12px 16px;
                    color: var(--white);
                    font-size: 14px;
                    background: none;
                    border: none;
                    text-align: left;
                }

                .nav-btn:hover {
                    background: rgba(255, 255, 255, 0.05);
                }

                .nav-cta {
                    background: var(--blue);
                    color: var(--white) !important;
                    border-radius: 8px;
                    padding: 12px 20px;
                    text-align: center;
                    font-weight: 600;
                    margin-top: 8px;
                }

                /* Dropdown for mobile */
                .dropdown {
                    position: static;
                    opacity: 1;
                    visibility: visible;
                    transform: none;
                    border: none;
                    border-radius: 8px;
                    margin-top: 8px;
                    background: rgba(255, 255, 255, 0.05);
                    display: none;
                    width: 100%;
                }

                .nav-item.active .dropdown {
                    display: block;
                }

                .dropdown-item {
                    padding: 10px 16px;
                    color: rgba(255, 255, 255, 0.8);
                }

                /* Hero section - mobile */
                .hero {
                    grid-template-columns: 1fr;
                    min-height: auto;
                }

                .hero-left {
                    padding: 40px 20px 80px;
                    min-height: calc(100vh - 140px);
                }

                .hero-traj {
                    display: none;
                }

                .hero-tag {
                    font-size: 9px;
                    padding: 4px 10px;
                    margin-bottom: 16px;
                }

                .hero-title {
                    font-size: 42px;
                    letter-spacing: -2px;
                    margin-bottom: 16px;
                }

                .hero-desc {
                    font-size: 14px;
                    margin-bottom: 12px;
                }

                .hero-sub {
                    font-size: 11px;
                    margin-bottom: 24px;
                }

                .hero-actions {
                    flex-direction: column;
                    width: 100%;
                    gap: 12px;
                }

                .btn {
                    width: 100%;
                    justify-content: center;
                    padding: 14px 24px;
                    font-size: 13px;
                }

                .btn-red {
                    background: var(--red);
                }

                .btn-outline {
                    border-color: rgba(255, 255, 255, 0.5);
                }

                /* Hours ribbon - mobile */
                .hours-ribbon {
                    padding: 12px 0;
                    font-size: 9px;
                    letter-spacing: 1px;
                }
                .hours-ribbon.double {
                    display: inline-flex;
                }
                .ribbon-dot {
                    width: 5px;
                    height: 5px;
                }

                /* Hide right side on mobile */
                .hero-right {
                    height: 100%;
                    margin-bottom: -20%;
                }

                /* Bottom ticker - red */
                .ticker {
                    background: var(--red);
                    padding: 12px 0;
                }

                .ticker-item {
                    font-size: 11px;
                    padding: 0 16px;
                }

                /* Section titles - mobile */
                /* Features grid - mobile */
                /* Pricing - mobile */
                /* Schedule - mobile */
                /* Reviews - mobile */
                /* Modal - mobile */
                .modal-box {
                    padding: 32px 20px;
                    margin: 20px;
                }

                .modal-title {
                    font-size: 22px;
                }

                .modal-phone {
                    font-size: 22px;
                }

                .modal-messengers {
                    grid-template-columns: 1fr;
                }

                /* Footer - mobile */

            }

            /* Small mobile */
            @media (max-width: 375px) {
                .hero-title {
                    font-size: 36px;
                }

                .hero-desc {
                    font-size: 13px;
                }

                .btn {
                    padding: 12px 20px;
                    font-size: 12px;
                }
            }
            /* Мобильное меню */
            @media (max-width: 1024px) {
                .nav-links {
                    display: none;
                    position: absolute;
                    top: 56px;
                    left: 0;
                    right: 0;
                    background: var(--bg-dark);
                    flex-direction: column;
                    padding: 20px;
                    gap: 4px;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                }

                .nav-item {
                    width: 100%;
                }

                .nav-btn {
                    width: 100%;
                    justify-content: space-between;
                }

                .dropdown {
                    position: static;
                    opacity: 1;
                    visibility: visible;
                    transform: none;
                    border: none;
                    border-radius: 8px;
                    margin-top: 4px;
                    background: rgba(255, 255, 255, 0.03);
                    display: none;
                }

                .nav-item.active .dropdown {
                    display: block;
                }

                .dropdown-item {
                    padding: 10px 16px;
                }
            }
        /* ═══════════ HERO ═══════════ */
        .hero {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            min-height: calc(100vh - 88px);
            position: relative;
            overflow: hidden;
        }

        /* LEFT SIDE */
        .hero-left {
            background: var(--blue);
            background-image:
                    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M60 0v60M0 0h60' stroke='%23fff' stroke-opacity='.08' stroke-width='1'/%3E%3C/svg%3E");
            position: relative;
            padding: 80px 60px;
            padding-bottom: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        /* Animated balls */
        /* 1. Анимация движения по пути (от 0% до 100%) */
        @keyframes ballRun {
            0% {
                offset-distance: 0%;
            }
            100% {
                offset-distance: 100%;
            }
        }

        /* 2. Первый шарик (Красный) */
        .hero-ball {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--red);
            border-radius: 50%;
            z-index: 5; /* Чтобы был поверх линии */
            box-shadow: 0 0 20px rgba(229, 25, 33, 0.8);

            /* Привязка к траектории */
            offset-path: path('M 0 0 C 13.3333 13.3333 140 -10 300 170 L 290 20 L 30 90 Z');
            offset-rotate: 0deg; /* Шарик не вращается, а скользит */
            offset-distance: 0%;

            /* Быстрая анимация (3 секунды на круг) */
            animation: ballRun 3s linear infinite;
        }

        /* 3. Второй шарик (Белый) */
        .hero-ball-2 {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--white);
            border-radius: 50%;
            z-index: 5;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);

            /* Та же траектория */
            offset-path: path('M -162 435 L 881 253 L -190 146 L 887 4');
            offset-rotate: 0deg;

            /* Стартуем с середины пути, чтобы шарики не накладывались */
            offset-distance: 50%;

            /* Чуть другая скорость для динамики */
            animation: ballRun 4s linear infinite;
        }
        @media (min-width: 2000px) {
            .hero-ball-2 {
                offset-path: path('M -162 435 L 1327 353 L -190 146 L 1327 6');
            }
        }
        @media (min-width: 1800px) {
            .hero-ball-2 {
                offset-path: path('M -162 435 L 991 325 L -190 146 L 987 53');
            }
        }
        /* Trajectory SVG */
        .hero-traj {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .hero-left-content {
            position: relative;
            z-index: 2;
            max-width: 540px;
            margin-bottom: auto;
            padding-bottom: 40px;
        }

        .hero-tag {
            display: inline-block;
            background: var(--red);
            color: var(--white);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 4px;
            margin-bottom: 24px;
        }

        .hero-title {
            font-family: var(--font-mono);
            font-size: clamp(56px, 8vw, 92px);
            font-weight: 700;
            line-height: 0.95;
            letter-spacing: -3px;
            margin-bottom: 24px;
        }

        .hero-title-king {
            display: block;
            color: var(--white);
        }

        .hero-title-pong {
            display: block;
            color: var(--red);
        }

        .hero-desc {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 12px;
            max-width: 480px;
        }

        .hero-sub {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 32px;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            transition: all var(--transition);
            text-decoration: none;
        }

        .btn-red {
            background: var(--red);
            color: var(--white);
        }

        .btn-red:hover {
            background: var(--red-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(229, 25, 33, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, 0.35);
        }

        .btn-outline:hover {
            border-color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        /* Hours ribbon - на всю ширину внизу */
        .hours-ribbon {
            display: inline-flex;
            align-items: center;
            justify-content: left;
            gap: 10px;
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.6);
            background-color: black;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            z-index: 2;
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            padding: 16px 24px;
            margin-top: auto;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ribbon-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #22c55e;
            animation: pulse-dot 2s infinite;
            flex-shrink: 0;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        /* RIGHT SIDE - с картинкой */
        .hero-right {
            position: relative;
            overflow: hidden;
        }

        .hero-image-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-right-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .hero-right {
                height: 100%;
                margin-bottom: -20%;
            }
            .hero-left > .hours-ribbon {
                display: none;
            }
            .hero-left {
                padding: 60px 32px 0px 32px;
                min-height: calc(100vh - 88px);
            }

            .hero-left-content {
                max-width: 100%;
            }

            .hours-ribbon {
                padding: 12px 12px;
                font-size: 13px;
                color: white;
            }
        }

        @media (max-width: 640px) {
            .hero-title {
                font-size: 42px;
                letter-spacing: -2px;
            }

            .hero-actions {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        /* Trajectory SVG */
        .hero-traj {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .hero-left-content {
            position: relative;
            z-index: 2;
            max-width: 540px;
        }

        .hero-tag {
            display: inline-block;
            background: var(--red);
            color: var(--white);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 4px;
            margin-bottom: 24px;
        }

        .hero-title {
            font-family: var(--font-mono);
            font-size: clamp(56px, 8vw, 92px);
            font-weight: 700;
            line-height: 0.95;
            letter-spacing: -3px;
            margin-bottom: 24px;
        }

        .hero-title-king {
            display: block;
            color: var(--white);
        }

        .hero-title-pong {
            display: block;
            color: var(--red);
        }

        .hero-desc {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 12px;
            max-width: 480px;
        }

        .hero-sub {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 32px;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            transition: all var(--transition);
            text-decoration: none;
        }

        .btn-red {
            background: var(--red);
            color: var(--white);
        }

        .btn-red:hover {
            background: var(--red-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(229, 25, 33, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, 0.35);
        }

        .btn-outline:hover {
            border-color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        /* RIGHT SIDE */

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .hero-left-content {
                max-width: 100%;
            }
        }

        @media (max-width: 640px) {
            .hero-title {
                font-size: 42px;
                letter-spacing: -2px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            transition: all var(--transition);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255,255,255,.3);
        }
        .btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }

        @keyframes pulse-dot {
            0%,100% { opacity: 1; }
            50% { opacity: .4; }
        }

        /* ══════════════════════════════════════════════
           4. TICKER BAR
        ══════════════════════════════════════════════ */
        .ticker {
            background: var(--red);
            overflow: hidden;
            padding: 10px 0;
            white-space: nowrap;
        }
        .ticker-track {
            display: inline-flex;
            animation: ticker-scroll 30s linear infinite;
        }
        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 0 24px;
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .5px;
        }
        .ticker-item::before {
            content: '';
            width: 4px;
            height: 4px;
            background: rgba(255,255,255,.5);
            border-radius: 50%;
        }
        @keyframes ticker-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /*modal*/
        /* Modal Overlay */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .modal-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        /* Modal Box */
        .modal-box {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            max-width: 520px;
            width: 100%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.9) translateY(20px);
            transition: all 0.3s ease;
        }

        .modal-overlay.open .modal-box {
            transform: scale(1) translateY(0);
        }

        /* Close Button */
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-cream);
            border: none;
            font-size: 24px;
            line-height: 1;
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
        }

        .modal-close:hover {
            background: var(--border);
            color: var(--text-primary);
            transform: rotate(90deg);
        }

        /* Modal Title */
        .modal-title {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 24px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        /* Modal Text */
        .modal-text {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        /* Modal Phone */
        .modal-phone {
            display: block;
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 32px;
            text-decoration: none;
            transition: color var(--transition);
        }

        .modal-phone:hover {
            color: var(--blue-dark);
        }

        /* Messengers */
        .modal-messengers {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .msg-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 20px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all var(--transition);
            color: var(--white);
        }

        .msg-btn svg {
            flex-shrink: 0;
        }

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

        .msg-telegram:hover {
            background: linear-gradient(135deg, #229ED9 0%, #1a8bc0 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(42, 171, 238, 0.3);
        }

        .msg-max {
            background: linear-gradient(135deg, #2B4EFF 0%, #1e3fcc 100%);
        }
        .msg-max img {
            width: 20px;
            height: 20px;
        }
        .msg-max:hover {
            background: linear-gradient(135deg, #1e3fcc 0%, #1533a8 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(43, 78, 255, 0.3);
        }

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

        .msg-whatsapp:hover {
            background: linear-gradient(135deg, #128C7E 0%, #0d7361 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

        /* Responsive */
        @media (max-width: 640px) {
            .modal-box {
                padding: 32px 24px;
            }

            .modal-title {
                font-size: 22px;
            }

            .modal-phone {
                font-size: 22px;
            }

            .modal-messengers {
                grid-template-columns: 1fr;
            }

            .msg-btn {
                padding: 14px 16px;
            }
        }
        /* === СТИЛИ БАННЕРА === */
        .cookie-consent-banner {
            position: fixed;
            bottom: 20px;
            right: 20px;
            max-width: 600px;
            width: calc(100% - 40px);
            background-color: #ebebeb;
            padding: 20px 24px;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
            font-size: 14px;
            line-height: 1.55;
            color: #333333;
            z-index: 99999;
            opacity: 0;
            transform: translateY(12px);
            visibility: hidden;
            transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
            box-sizing: border-box;
        }

        .cookie-consent-banner.is-visible {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }

        .cookie-consent-banner__inner {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .cookie-consent-banner__text {
            margin: 0;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }

        .cookie-consent-banner__text a {
            color: #004bff;
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 75, 255, 0.3);
            transition: border-color 0.2s ease;
            word-break: break-word;
        }

        .cookie-consent-banner__text a:hover {
            border-bottom-color: #004bff;
        }

        .cookie-consent-banner__btn {
            align-self: flex-start;
            padding: 10px 28px;
            background-color: #ebebeb;
            color: #555555;
            border: 1px solid #999999;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            -webkit-tap-highlight-color: transparent;
        }

        .cookie-consent-banner__btn:hover {
            background-color: #e8e8e8;
            color: #111111;
            border-color: #111111;
        }

        .cookie-consent-banner__btn:active {
            transform: scale(0.97);
        }

        /* ===== АДАПТАЦИЯ: ПЛАНШЕТ (до 768px) ===== */
        @media (max-width: 768px) {
            .cookie-consent-banner {
                right: 12px;
                bottom: 12px;
                width: calc(100% - 24px);
                max-width: none;
                padding: 16px 18px;
                border-radius: 10px;
            }

            .cookie-consent-banner__text {
                font-size: 13px;
                line-height: 1.5;
            }

            .cookie-consent-banner__btn {
                padding: 10px 24px;
                font-size: 14px;
            }
        }

        /* ===== АДАПТАЦИЯ: МОБИЛЬНЫЙ (до 480px) ===== */
        @media (max-width: 480px) {
            .cookie-consent-banner {
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                max-width: none;
                border-radius: 12px 12px 0 0;
                padding: 14px 16px 14px 16px;
                box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
                transform: translateY(100%);
            }

            .cookie-consent-banner.is-visible {
                transform: translateY(0);
            }

            .cookie-consent-banner__inner {
                gap: 12px;
            }

            .cookie-consent-banner__text {
                font-size: 12.5px;
                line-height: 1.48;
            }

            .cookie-consent-banner__btn {
                width: 100%;
                align-self: stretch;
                padding: 12px 16px;
                font-size: 15px;
                border-radius: 6px;
            }

            /* Убираем подчёркивание ссылок на мобильном для чистоты */
            .cookie-consent-banner__text a {
                border-bottom: none;
                text-decoration: underline;
                text-decoration-style: dotted;
                text-underline-offset: 2px;
            }
        }

        /* ===== АДАПТАЦИЯ: ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ (до 360px) ===== */
        @media (max-width: 360px) {
            .cookie-consent-banner {
                padding: 12px 14px 12px 14px;
            }

            .cookie-consent-banner__text {
                font-size: 12px;
                line-height: 1.45;
            }

            .cookie-consent-banner__btn {
                padding: 11px 14px;
                font-size: 14px;
            }
        }

        /* Отключаем hover-эффекты на тач-устройствах */
        @media (hover: none) {
            .cookie-consent-banner__btn:hover {
                background-color: #ebebeb;
                color: #555555;
                border-color: #999999;
            }
            .cookie-consent-banner__btn:active {
                background-color: #e0e0e0;
                color: #111111;
                border-color: #111111;
            }
        }

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

        :root {
            --blue: #2B4EFF;
            --black: #0A0A0A;
            --white: #FFFFFF;
            --bg: #F5F1EC;
            --gray-light: #E8E6E3;
            --gray-text: #6B6B6B;
            --gray-muted: #9B9B9B;
            --font-mono: 'JetBrains Mono', monospace;
            --font-sans: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--black);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        .features > .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        /* ══════════════════════════════════════════
           HEADER
        ═══════════════════════════════════════════ */
        .features-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 48px;
            gap: 60px;
        }

        .features-label {
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 700;
            color: var(--blue);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .features-title {
            font-family: var(--font-mono);
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -2px;
            text-transform: uppercase;
            color: var(--black);
        }

        .features-desc {
            font-size: 15px;
            line-height: 1.6;
            color: var(--gray-text);
            max-width: 420px;
        }

        /* ═══════════════════════════════════════════
           GRID — DESKTOP
        ═══════════════════════════════════════════ */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 2px solid var(--black);
            border-radius: 20px;
            overflow: hidden;
            background: var(--white);
        }

        .feature-card {
            padding: 32px 28px;
            border-right: 1px solid var(--gray-light);
            border-bottom: 1px solid var(--gray-light);
            position: relative;
            transition: background 0.2s ease;
            border-top:5px solid var(--black)
        }

        .feature-card:hover {
            background: #2b4eff;
        }


        .feature-card:nth-child(n+4) {
            border-top: none;
            border-bottom: none;
        }

        .feature-number {
            position: absolute;
            top: 28px;
            right: 28px;
            font-family: var(--font-mono);
            font-size: 48px;
            font-weight: 700;
            color: var(--gray-light);
            line-height: 1;
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            background: var(--blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        /* 1. Добавляем плавность всем изменяемым элементам */
        .feature-icon,
        .feature-title,
        .feature-number,
        .feature-text {
            transition: all 0.3s ease;
        }

        /* 2. При наведении на КАРТОЧКУ меняем стили у всех детей */
        .feature-card:hover .feature-icon {
            background: rgba(255, 255, 255, 0.15);
        }

        .feature-card:hover .feature-title {
            color: #ffffff;
        }

        .feature-card:hover .feature-number {
            color: rgba(255, 255, 255, 0.15);
        }

        .feature-card:hover .feature-text {
            color: rgba(255, 255, 255, 0.8);
        }

        .feature-icon svg {
            width: 22px;
            height: 22px;
            fill: var(--white);
        }

        .feature-title {
            font-family: var(--font-mono);
            font-size: 15px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
            line-height: 1.4;
            padding-right: 60px;
        }

        .feature-text {
            font-size: 13px;
            line-height: 1.7;
            color: var(--gray-muted);
        }

        /* CTA */
        .features-cta {
            margin-top: 40px;
        }

        .btn-black {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--black);
            color: var(--white);
            padding: 16px 28px;
            border-radius: 12px;
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .btn-black:hover {
            background: #1a1a1a;
            transform: translateY(-2px);
        }

        .btn-black svg {
            width: 18px;
            height: 18px;
            fill: var(--white);
        }

        /* ═══════════════════════════════════════════
           MOBILE — < 768px
        ══════════════════════════════════════════ */
        @media (max-width: 767px) {
            .container {
                padding: 48px 16px;
            }

            .features-header {
                flex-direction: column;
                gap: 20px;
                margin-bottom: 32px;
            }

            .features-label {
                font-size: 10px;
                letter-spacing: 3px;
                margin-bottom: 8px;
            }

            .features-title {
                font-size: 28px;
                letter-spacing: -1px;
                line-height: 1.15;
            }

            .features-desc {
                font-size: 14px;
                line-height: 1.7;
                color: var(--gray-text);
                max-width: 100%;
            }

            /* 2-column grid */
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                border: 2px solid var(--black);
                border-radius: 16px;
                overflow: hidden;
                background: var(--white);
            }

            .feature-card {
                padding: 20px 16px;
                border-right: 1px solid var(--black);
                border-bottom: 2px solid var(--black);
            }
            .feature-card:nth-child(n+3) {
                border-top: none;
            }
            .feature-card:nth-child(n+4) {
                border-bottom:2px solid var(--black);
            }
            /*.feature-card:nth-child(even) {*/
            /*    border-right: none;*/
            /*}*/

            /*.feature-card:nth-last-child(-n+1) {*/
            /*    border-bottom: none;*/
            /*}*/

            .feature-number {
                position: absolute;
                top: 20px;
                right: 16px;
                font-size: 32px;
            }

            .feature-icon {
                width: 40px;
                height: 40px;
                border-radius: 12px;
                margin-bottom: 14px;
            }

            .feature-icon svg {
                width: 20px;
                height: 20px;
            }

            .feature-title {
                font-size: 13px;
                padding-right: 48px;
                margin-bottom: 8px;
                word-break: normal;
                overflow-wrap: break-word;
            }

            .feature-text {
                font-size: 12px;
                line-height: 1.6;
                color: var(--gray-muted);
                overflow-wrap: break-word;
            }

            .features-cta {
                margin-top: 24px;
            }

            .btn-black {
                width: 100%;
                justify-content: center;
                padding: 16px 20px;
                font-size: 12px;
                border-radius: 12px;
            }

            .btn-black svg {
                width: 16px;
                height: 16px;
            }
        }
        @media (max-width: 450px) {
            .feature-card {
                max-width: 180px;
            }
        }
        @media (max-width: 425px) {
            .feature-card {
                max-width: 170px;
            }
        }
        /* ═══════════════════════════════════════════
           SMALL MOBILE — < 420px
           (One column, cleaner layout)
        ═══════════════════════════════════════════ */
        @media (max-width: 419px) {
            .container {
                padding: 40px 12px;
            }

            .features-title {
                font-size: 24px;
                letter-spacing: -0.5px;
            }

            .features-desc {
                font-size: 13px;
            }

            /* Single column */
            .features-grid {
                grid-template-columns: 1fr;
                border-radius: 14px;
            }

            .feature-card {
                padding: 18px 16px;
                border-right: none !important;
                border-bottom: 2px solid var(--black);
                max-width: 100%;
            }
            .feature-card:nth-child(n+2) {
                border-top:none;
            }
            .feature-card:last-child {
                border-bottom: none;
            }

            .feature-number {
                font-size: 28px;
                top: 18px;
                right: 16px;
            }

            .feature-icon {
                width: 38px;
                height: 38px;
                border-radius: 10px;
                margin-bottom: 12px;
            }

            .feature-icon svg {
                width: 18px;
                height: 18px;
            }

            .feature-title {
                font-size: 14px;
                font-weight: 700;
                padding-right: 0;
                margin-bottom: 8px;
                line-height: 1.35;
            }

            .feature-text {
                font-size: 12px;
                line-height: 1.55;
                color: var(--gray-muted);
            }

            .btn-black {
                font-size: 11px;
                padding: 14px 16px;
                letter-spacing: 0.5px;
            }
        }

        /* ═══════════════════════════════════════════
           TINY — < 340px
        ═══════════════════════════════════════════ */
        @media (max-width: 339px) {
            .features-title {
                font-size: 20px;
            }

            .feature-title {
                font-size: 13px;
            }

            .feature-text {
                font-size: 11px;
            }

            .feature-icon {
                width: 34px;
                height: 34px;
                border-radius: 8px;
            }

            .feature-icon svg {
                width: 16px;
                height: 16px;
            }
        }

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

        :root {
            --bg-dark: #0A0A0A;
            --font-mono: 'JetBrains Mono', monospace;
        }

        .atmosphere {
            background: var(--bg-dark);
            -webkit-font-smoothing: antialiased;
        }

        .atmosphere > .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .atmosphere-label {
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 12px;
        }

        .atmosphere-title {
            font-family: var(--font-mono);
            font-size: 42px;
            font-weight: 700;
            color: #FFFFFF;
            text-transform: uppercase;
            letter-spacing: -1px;
            margin-bottom: 40px;
        }

        /* Desktop Grid */
        .atmosphere-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: repeat(2, 260px);
            gap: 10px;
        }

        .atmo-card {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .atmo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .atmo-card:hover img {
            transform: scale(1.05);
        }

        .atmo-card:first-child {
            grid-column: 1;
            grid-row: 1 / span 2;
        }

        /* Mobile Grid (< 768px) - как в Figma */
        @media (max-width: 767px) {
            .container {
                padding: 48px 16px;
            }

            .atmosphere-label {
                font-size: 10px;
                letter-spacing: 2px;
                margin-bottom: 8px;
            }

            .atmosphere-title {
                font-size: 24px;
                letter-spacing: -0.5px;
                margin-bottom: 24px;
            }

            .atmosphere-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto; /* Убираем фиксированные высоты строк */
                gap: 10px;
            }

            /* Первая картинка - большая слева */
            .atmo-card:nth-child(1) {
                grid-column: 1;
                grid-row: 1 / span 2;
                height: auto;
                aspect-ratio: 3 / 4; /* Вертикальная ориентация */
            }

            /* Вторая картинка -右上 */
            .atmo-card:nth-child(2) {
                grid-column: 2;
                grid-row: 1;
                height: auto;
                aspect-ratio: 12 / 9;
            }

            /* Третья картинка -右下 */
            .atmo-card:nth-child(3) {
                grid-column: 2;
                grid-row: 2;
                height: auto;
                aspect-ratio: 16 / 9;
            }

            /* Четвертая картинка - внизу слева */
            .atmo-card:nth-child(4) {
                grid-column: 1;
                grid-row: 3;
                height: auto;
                aspect-ratio: 16 / 9;
            }

            /* Пятая картинка - внизу справа */
            .atmo-card:nth-child(5) {
                grid-column: 2;
                grid-row: 3;
                height: auto;
                aspect-ratio: 16 / 9;
            }

            .atmo-card {
                border-radius: 10px;
                overflow: hidden;
            }

            .atmo-card img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
        }

        /* Small mobile (< 420px) */
        @media (max-width: 419px) {
            .atmosphere-title {
                font-size: 20px;
            }

            .atmosphere-grid {
                grid-template-rows: 150px 60px 56px;
                gap: 8px;
                padding-top: 16px;
            }

            .atmo-card:nth-child(1) { height: 190px; }
            .atmo-card:nth-child(2) { height: 120px; }
            .atmo-card:nth-child(3) { height: 60px;width: 160px; }
            .atmo-card:nth-child(4) { height: 80px; }
            .atmo-card:nth-child(5) { height: 80px;width: 160px; }
        }
        @media (max-width: 375px) {
            .atmosphere-grid {
                grid-template-rows: 120px 80px 90px;
                grid-template-columns: 120px 120px;
            }
            .atmo-card:nth-child(1) { grid-column: 1;height: 100%;width: 100%; }
            .atmo-card:nth-child(2) { grid-column: 2;height: 100%;width: 100%;aspect-ratio: 8 / 8; }
            .atmo-card:nth-child(3) { grid-column: 2;height: 100%;width: 100%; }
            .atmo-card:nth-child(4) { grid-column: 2;height: 100%;width: 100%; }
            .atmo-card:nth-child(5) { grid-column: 1;height: 100%;width: 100%; }

        }

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

        :root {
            --blue: #2B4EFF;
            --red: #D81233;
            --black: #0A0A0A;
            --white: #FFFFFF;
            --bg: #F5F1EC;
            --gray-light: #E4E4EC;
            --gray-text: #6B6B7A;
            --bg-blue-light: #F0F4FF;
            --font-mono: 'JetBrains Mono', monospace;
            --font-sans: 'Inter', sans-serif;
        }

        .pricing {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--black);
            line-height: 1.5;
        }
        .pricing > .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .pricing-label {
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 700;
            color: var(--blue);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .pricing-title {
            font-family: var(--font-mono);
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -2px;
            text-transform: uppercase;
            color: var(--black);
            margin-bottom: 16px;
        }

        .pricing-desc {
            font-size: 15px;
            line-height: 1.6;
            color: var(--gray-text);
            max-width: 600px;
            margin-bottom: 40px;
        }

        /* Desktop Grid (3 columns) */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .price-card {
            border-radius: 14px;
            border: 2px solid var(--gray-light);
            padding: 28px 24px;
            position: relative;
            background: var(--white);
            transition: all 0.3s ease;
            cursor: pointer;
            min-height: 264px;
            display: flex;
            flex-direction: column;
        }

        .price-card.featured {
            background: var(--bg-blue-light);
            border-color: var(--blue);
        }

        .price-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        }

        .price-card.featured:hover {
            box-shadow: 0 12px 32px rgba(43, 78, 255, 0.2);
        }

        .price-hit-badge {
            position: absolute;
            top: 0;
            right: 21px;
            background: var(--red);
            color: var(--white);
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 5px 12px;
            border-radius: 0 0 8px 8px;
        }

        .price-icon {
            font-size: 28px;
            max-width: 28px;
            margin-bottom: 12px;
        }

        .price-title {
            font-family: var(--font-mono);
            font-size: 17px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 6px;
            color: var(--black);
        }

        .price-meta {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-text);
            text-transform: uppercase;
            letter-spacing: 0.72px;
            margin-bottom: 18px;
        }

        .price-amount {
            font-family: var(--font-mono);
            font-size: 35px;
            font-weight: 700;
            color: var(--blue);
            line-height: 36px;
            margin-bottom: 2px;
        }

        .price-period {
            font-size: 13px;
            color: var(--gray-text);
            margin-bottom: 20px;
        }

        .price-arrow {
            position: absolute;
            right: 21.5px;
            bottom: 22px;
            width: 30px;
            height: 30px;
            background: var(--blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .price-card:hover .price-arrow {
            opacity: 1;
        }

        /* Mobile Grid (2 columns) - как в Figma */
        @media (max-width: 767px) {
            .container {
                padding: 48px 16px;
            }

            .pricing-label {
                font-size: 10px;
                letter-spacing: 3px;
                margin-bottom: 8px;
            }

            .pricing-title {
                font-size: 28px;
                letter-spacing: -1px;
                margin-bottom: 12px;
            }

            .pricing-desc {
                font-size: 14px;
                margin-bottom: 28px;
            }

            .pricing-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: 264px 264px 242px;
                gap: 16px;
            }

            .price-card {
                padding: 28px 24px;
                min-height: auto;
                height: 100%;
            }

            .price-hit-badge {
                font-size: 9px;
                padding: 4px 10px;
                right: 18px;
                top: 0;
            }

            .price-icon {
                font-size: 24px;
                max-width: 24px;
                margin-bottom: 10px;
            }

            .price-title {
                font-size: 16px;
                line-height: 1.3;
                margin-bottom: 5px;
            }

            .price-meta {
                font-size: 11px;
                margin-bottom: 16px;
            }

            .price-amount {
                font-size: 32px;
                line-height: 34px;
                margin-bottom: 2px;
            }

            .price-period {
                font-size: 12px;
                margin-bottom: 16px;
            }

            .price-arrow {
                width: 28px;
                height: 28px;
                right: 18px;
                bottom: 18px;
                font-size: 16px;
            }
        }

        /* Extra small mobile */
        @media (max-width: 419px) {
            .pricing-title {
                font-size: 24px;
            }

            .pricing-grid {
                grid-template-rows: 240px 240px 220px;
                gap: 12px;
            }

            .price-card {
                padding: 24px 20px;
            }

            .price-title {
                font-size: 15px;
            }

            .price-amount {
                font-size: 28px;
            }
        }
        @media (max-width: 320px) {
            .price-card {
                max-width: 120px;
            }
            .price-card h3 {
                overflow-wrap: break-word;
            }
        }

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

        :root {
            --blue: #2B4EFF;
            --blue-dark: #1e3fcc;
            --red: #D81233;
            --black: #0A0A0A;
            --white: #FFFFFF;
            --bg: #F5F1EC;
            --gray-text: #6B6B7A;
            --gray-muted: #9B9B9B;
            --font-mono: 'JetBrains Mono', monospace;
            --font-sans: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--black);
            line-height: 1.5;
        }

        /* ═══════════ SCHEDULE SECTION ═══════════ */
        .schedule {
            background: var(--blue);
            padding: 80px 40px;
            position: relative;
            overflow: hidden;
        }

        .schedule::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                    linear-gradient(135deg, rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;
        }

        .schedule .container {
            position: relative;
            z-index: 1;
        }

        .schedule-label {
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 12px;
        }

        .schedule-title {
            font-family: var(--font-mono);
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -2px;
            color: var(--white);
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .schedule-desc {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.6);
            max-width: 560px;
            margin-bottom: 48px;
        }

        .schedule-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }

        .sched-card {
            background: rgba(26, 56, 195, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .sched-card:hover {
            background: rgba(26, 56, 195, 0.8);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
        }

        .sched-time {
            font-family: var(--font-mono);
            font-size: 10px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }

        .sched-title {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            margin-bottom: 8px;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .sched-hours {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 12px;
            font-weight: 500;
        }

        .sched-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .sched-price {
            display: inline-block;
            background: var(--red);
            color: var(--white);
            font-size: 11px;
            font-weight: 700;
            padding: 6px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            color: var(--blue);
            padding: 16px 32px;
            border-radius: 12px;
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        /* Mobile Schedule (< 768px) */
        @media (max-width: 767px) {
            .schedule {
                padding: 48px 20px;
            }

            .schedule-label {
                font-size: 10px;
                letter-spacing: 2px;
                margin-bottom: 8px;
            }

            .schedule-title {
                font-size: 28px;
                letter-spacing: -1px;
                margin-bottom: 12px;
            }

            .schedule-desc {
                font-size: 14px;
                margin-bottom: 32px;
            }

            .schedule-cards {
                display: flex;
                flex-direction: column;
                gap: 12px;
                margin-bottom: 32px;
            }

            .sched-card {
                padding: 24px 20px;
            }

            .sched-title {
                font-size: 16px;
            }

            .sched-time {
                font-size: 9px;
            }

            .btn-white {
                width: 100%;
                justify-content: center;
                padding: 18px 24px;
            }
        }

        /* Extra small mobile */
        @media (max-width: 419px) {
            .schedule-title {
                font-size: 24px;
            }

            .sched-card {
                padding: 20px 16px;
            }

            .sched-title {
                font-size: 15px;
            }
        }

/* ══════════════════════════════════════════════
       RESET & BASE
    ══════════════════════════════════════════════ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --red: #E51921;
      --red-hover: #c91319;
      --blue: #2B50FF;
      --blue-dark: #1e3fcc;
      --black: #0A0A0A;
      --white: #FFFFFF;
      --bg-cream: #F2EDE7;
      --bg-dark: #111111;
      --bg-card: #FFFFFF;
      --text-primary: #0A0A0A;
      --text-secondary: #6B7280;
      --text-on-dark: #FFFFFF;
      --text-muted: #9CA3AF;
      --border: #E5E7EB;
      --font-mono: 'JetBrains Mono', 'Courier New', monospace;
      --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
      --radius: 12px;
      --radius-sm: 8px;
      --radius-lg: 16px;
      --shadow: 0 1px 3px rgba(0,0,0,.08);
      --shadow-md: 0 4px 20px rgba(0,0,0,.08);
      --max-w: 1200px;
      --transition: .25s ease;
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-sans);
      color: var(--text-primary);
      background: var(--bg-cream);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { cursor: pointer; font-family: inherit; border: none; }
    ul { list-style: none; }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }


    @keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
    /* ══════════════════════════════════════════════
       5. FEATURES (ПОЧЕМУ KING PONG)
    ══════════════════════════════════════════════ */
    .section-label {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-mono);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .feature-icon svg {
      width: 20px;
      height: 20px;
      fill: var(--white);
    }
    .feature-card h3 {
      font-family: var(--font-mono);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.4;
      padding-right: 40px;
    }
    .feature-card p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ══════════════════════════════════════════════
       6. ATMOSPHERE (АТМОСФЕРА КЛУБА)
    ══════════════════════════════════════════════ */
    .atmosphere .section-label { color: var(--text-muted); }
    .atmosphere .section-title { color: var(--white); }

    .atmo-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }
    .atmo-grid .img-card:hover img { transform: scale(1.05); }

    /* ══════════════════════════════════════════════
       7. PRICING (ПРАЙС-ЛИСТ)
    ══════════════════════════════════════════════ */

    .price-card h3 {
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    /* ══════════════════════════════════════════════
       8. SCHEDULE (РАСПИСАНИЕ)
    ══════════════════════════════════════════════ */
    .schedule .section-label { color: rgba(255,255,255,.5); }
    .schedule .section-title { color: var(--white); }

    .sched-card h3 {
      font-family: var(--font-mono);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    /* ══════════════════════════════════════════════
       9. REVIEWS (ОТЗЫВЫ)
    ══════════════════════════════════════════════ */
    .reviews {
      padding: 80px 0;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .review-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: all var(--transition);
    }
    .review-card:hover { box-shadow: var(--shadow-md); }
    .review-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 16px;
    }
    .review-stars svg {
      width: 16px;
      height: 16px;
      fill: #FBBF24;
    }
    .review-text {
      font-size: 13px;
      line-height: 1.7;
      color: var(--text-secondary);
      margin-bottom: 20px;
    }
    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .review-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: var(--white);
    }
    .review-author-info .name {
      font-size: 13px;
      font-weight: 600;
    }
    .review-author-info .date {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* ══════════════════════════════════════════════
       10. FAQ (ЧАСТО СПРАШИВАЮТ)
    ══════════════════════════════════════════════ */
    .faq .section-title { text-align: center; }
    .faq .section-label { text-align: center; }

    .faq-icon svg {
      width: 14px;
      height: 14px;
      stroke: var(--text-primary);
      transition: transform var(--transition);
    }

    .faq-item.active .faq-icon svg { transform: rotate(45deg); stroke: var(--white); }

    .faq-answer p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════════════
       11. CTA (ГОТОВ ИГРАТЬ)
    ══════════════════════════════════════════════ */

    /* ══════════════════════════════════════════════
       12. MAP (КАК НАС НАЙТИ)
    ══════════════════════════════════════════════ */
    .map-section .section-title { margin-bottom: 32px; }

    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ══════════════════════════════════════════════
       13. FOOTER
    ══════════════════════════════════════════════ */
    .footer-brand p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .footer-socials a {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      background: rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }
    .footer-socials a:hover { background: rgba(255,255,255,.15); }
    .footer-socials svg { width: 16px; height: 16px; fill: var(--white); }

    .footer-col h4 {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 13px;
      color: rgba(255,255,255,.6);
      padding: 4px 0;
      transition: color var(--transition);
    }
    .footer-col a:hover { color: var(--white); }

    .footer-bottom p {
      font-size: 11px;
      color: var(--text-muted);
    }
    .footer-bottom a {
      color: var(--text-muted);
      font-size: 11px;
      transition: color var(--transition);
    }
    .footer-bottom a:hover { color: var(--white); }
    .reviews .section-label {
        text-align: center;
    }
    .reviews .section-title {
        text-align: center;
    }
    .reviews-iframe {
        width:560px;
        width:calc(100vw - 40px);
        width: 100%;
        height:800px;
        overflow:hidden;
        position:relative;
        /*margin: auto;*/
    }
    /* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
    @media (min-width: 1000px) and (max-width: 1024px) {
        .reviews-iframe {
            padding-left: 10%;
        }
    }
    @media (min-width: 1025px) {
        .reviews-iframe {
            padding-left: 16%;
        }
    }

    @media (max-width: 768px) {
      .reviews-grid { grid-template-columns: 1fr; }

        .section-title { font-size: 28px; }
    }
    @media (max-width: 375px) {
        .reviews-iframe {
            width:335px;
            width:calc(100vw - 40px);
            height:800px;
            overflow:hidden;
            position:relative;
            /*margin: auto;*/
        }
    }
    @media (max-width: 320px) {
        .reviews-iframe {
            width:270px;
            width:calc(100vw - 40px);
            height:800px;
            overflow:hidden;
            position:relative;
            /*margin: auto;*/
        }
    }

/* ══════════════════════════════════════════════
       RESET & BASE
    ══════════════════════════════════════════════ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --red: #E51921;
      --red-hover: #c91319;
      --blue: #2B50FF;
      --blue-dark: #1e3fcc;
      --black: #0A0A0A;
      --white: #FFFFFF;
      --bg-cream: #F2EDE7;
      --bg-dark: #111111;
      --bg-card: #FFFFFF;
      --text-primary: #0A0A0A;
      --text-secondary: #6B7280;
      --text-on-dark: #FFFFFF;
      --text-muted: #9CA3AF;
      --border: #E5E7EB;
      --font-mono: 'JetBrains Mono', 'Courier New', monospace;
      --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
      --radius: 12px;
      --radius-sm: 8px;
      --radius-lg: 16px;
      --shadow: 0 1px 3px rgba(0,0,0,.08);
      --shadow-md: 0 4px 20px rgba(0,0,0,.08);
      --max-w: 1200px;
      --transition: .25s ease;
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-sans);
      color: var(--text-primary);
      background: var(--bg-cream);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { cursor: pointer; font-family: inherit; border: none; }
    ul { list-style: none; }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }


    @keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
    /* ══════════════════════════════════════════════
       5. FEATURES (ПОЧЕМУ KING PONG)
    ══════════════════════════════════════════════ */
    .section-label {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-mono);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .feature-icon svg {
      width: 20px;
      height: 20px;
      fill: var(--white);
    }
    .feature-card h3 {
      font-family: var(--font-mono);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.4;
      padding-right: 40px;
    }
    .feature-card p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ══════════════════════════════════════════════
       6. ATMOSPHERE (АТМОСФЕРА КЛУБА)
    ══════════════════════════════════════════════ */
    .atmosphere .section-label { color: var(--text-muted); }
    .atmosphere .section-title { color: var(--white); }

    .atmo-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }
    .atmo-grid .img-card:hover img { transform: scale(1.05); }

    /* ══════════════════════════════════════════════
       7. PRICING (ПРАЙС-ЛИСТ)
    ══════════════════════════════════════════════ */

    .price-card h3 {
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    /* ══════════════════════════════════════════════
       8. SCHEDULE (РАСПИСАНИЕ)
    ══════════════════════════════════════════════ */
    .schedule .section-label { color: rgba(255,255,255,.5); }
    .schedule .section-title { color: var(--white); }

    .sched-card h3 {
      font-family: var(--font-mono);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    /* ══════════════════════════════════════════════
       9. REVIEWS (ОТЗЫВЫ)
    ══════════════════════════════════════════════ */

    .review-stars svg {
      width: 16px;
      height: 16px;
      fill: #FBBF24;
    }

    /* ══════════════════════════════════════════════
       10. FAQ (ЧАСТО СПРАШИВАЮТ)
    ══════════════════════════════════════════════ */
    .faq {
      padding: 80px 0;
      background: var(--white);
    }
    .faq .section-title { text-align: center; }
    .faq .section-label { text-align: center; font-size:20px }
    .faq-list {
      max-width: 720px;
      margin: 40px auto 0;
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-question {
      width: 100%;
      background: none;
      text-align: left;
      padding: 20px 0;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      color: var(--text-primary);
      transition: color var(--transition);
    }
    .faq-question:hover { color: var(--blue); }
    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--bg-cream);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all var(--transition);
    }
    .faq-icon svg {
      width: 14px;
      height: 14px;
      stroke: var(--text-primary);
      transition: transform var(--transition);
    }
    .faq-item.active .faq-icon { background: var(--blue); }
    .faq-item.active .faq-icon svg { transform: rotate(45deg); stroke: var(--white); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
    }
    .faq-item.active .faq-answer {
      max-height: 200px;
      padding-bottom: 20px;
    }
    .faq-answer p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════════════
       11. CTA (ГОТОВ ИГРАТЬ)
    ══════════════════════════════════════════════ */

    /* ══════════════════════════════════════════════
       12. MAP (КАК НАС НАЙТИ)
    ══════════════════════════════════════════════ */
    .map-section .section-title { margin-bottom: 32px; }

    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ══════════════════════════════════════════════
       13. FOOTER
    ══════════════════════════════════════════════ */
    .footer-brand p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .footer-socials a {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      background: rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }
    .footer-socials a:hover { background: rgba(255,255,255,.15); }
    .footer-socials svg { width: 16px; height: 16px; fill: var(--white); }

    .footer-col h4 {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 13px;
      color: rgba(255,255,255,.6);
      padding: 4px 0;
      transition: color var(--transition);
    }
    .footer-col a:hover { color: var(--white); }

    .footer-bottom p {
      font-size: 11px;
      color: var(--text-muted);
    }
    .footer-bottom a {
      color: var(--text-muted);
      font-size: 11px;
      transition: color var(--transition);
    }
    .footer-bottom a:hover { color: var(--white); }

    /* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
    @media (max-width: 1024px) {
    }

    @media (max-width: 768px) {
      .hero .container { grid-template-columns: 1fr; }

        .section-title { font-size: 28px; }
    }

/* ══════════════════════════════════════════════
       RESET & BASE
    ══════════════════════════════════════════════ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --red: #E51921;
      --red-hover: #c91319;
      --blue: #2B50FF;
      --blue-dark: #1e3fcc;
      --black: #0A0A0A;
      --white: #FFFFFF;
      --bg-cream: #F2EDE7;
      --bg-dark: #111111;
      --bg-card: #FFFFFF;
      --text-primary: #0A0A0A;
      --text-secondary: #6B7280;
      --text-on-dark: #FFFFFF;
      --text-muted: #9CA3AF;
      --border: #E5E7EB;
      --font-mono: 'JetBrains Mono', 'Courier New', monospace;
      --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
      --radius: 12px;
      --radius-sm: 8px;
      --radius-lg: 16px;
      --shadow: 0 1px 3px rgba(0,0,0,.08);
      --shadow-md: 0 4px 20px rgba(0,0,0,.08);
      --max-w: 1200px;
      --transition: .25s ease;
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-sans);
      color: var(--text-primary);
      background: var(--bg-cream);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { cursor: pointer; font-family: inherit; border: none; }
    ul { list-style: none; }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }


    @keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
    /* ══════════════════════════════════════════════
       5. FEATURES (ПОЧЕМУ KING PONG)
    ══════════════════════════════════════════════ */

    .feature-icon svg {
      width: 20px;
      height: 20px;
      fill: var(--white);
    }
    .feature-card h3 {
      font-family: var(--font-mono);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.4;
      padding-right: 40px;
    }
    .feature-card p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ══════════════════════════════════════════════
       6. ATMOSPHERE (АТМОСФЕРА КЛУБА)
    ══════════════════════════════════════════════ */

    .atmo-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }
    .atmo-grid .img-card:hover img { transform: scale(1.05); }

    /* ══════════════════════════════════════════════
       7. PRICING (ПРАЙС-ЛИСТ)
    ══════════════════════════════════════════════ */

    .price-card h3 {
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    /* ══════════════════════════════════════════════
       8. SCHEDULE (РАСПИСАНИЕ)
    ══════════════════════════════════════════════ */

    .sched-card h3 {
      font-family: var(--font-mono);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    /* ══════════════════════════════════════════════
       9. REVIEWS (ОТЗЫВЫ)
    ══════════════════════════════════════════════ */

    .review-stars svg {
      width: 16px;
      height: 16px;
      fill: #FBBF24;
    }

    /* ══════════════════════════════════════════════
       10. FAQ (ЧАСТО СПРАШИВАЮТ)
    ══════════════════════════════════════════════ */
    .faq-icon svg {
      width: 14px;
      height: 14px;
      stroke: var(--text-primary);
      transition: transform var(--transition);
    }

    .faq-item.active .faq-icon svg { transform: rotate(45deg); stroke: var(--white); }

    .faq-answer p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════════════
       11. CTA (ГОТОВ ИГРАТЬ)
    ══════════════════════════════════════════════ */
    .cta-section {
      background: var(--red);
      color: var(--white);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(255,255,255,.06);
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
    }
    .cta-label {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      opacity: .7;
      margin-bottom: 16px;
      position: relative;
    }
    .cta-title {
      font-family: var(--font-mono);
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: -1px;
      margin-bottom: 16px;
      position: relative;
    }
    .cta-desc {
      font-size: 14px;
      opacity: .75;
      margin-bottom: 32px;
      position: relative;
    }
    .cta-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }
    .btn-cta-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,.35);
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      transition: all var(--transition);
    }
    .btn-cta-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
    .btn-white-solid {
      background: var(--white);
      color: var(--red);
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      transition: all var(--transition);
    }
    .btn-white-solid:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }

    /* ══════════════════════════════════════════════
       12. MAP (КАК НАС НАЙТИ)
    ══════════════════════════════════════════════ */
    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ══════════════════════════════════════════════
       13. FOOTER
    ══════════════════════════════════════════════ */
    .footer-brand p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .footer-socials a {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      background: rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }
    .footer-socials a:hover { background: rgba(255,255,255,.15); }
    .footer-socials svg { width: 16px; height: 16px; fill: var(--white); }

    .footer-col h4 {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 13px;
      color: rgba(255,255,255,.6);
      padding: 4px 0;
      transition: color var(--transition);
    }
    .footer-col a:hover { color: var(--white); }

    .footer-bottom p {
      font-size: 11px;
      color: var(--text-muted);
    }
    .footer-bottom a {
      color: var(--text-muted);
      font-size: 11px;
      transition: color var(--transition);
    }
    .footer-bottom a:hover { color: var(--white); }

    /* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
    @media (max-width: 1024px) {
    }

    @media (max-width: 768px) {
      .hero .container { grid-template-columns: 1fr; }
    }

/* ══════════════════════════════════════════════
       RESET & BASE
    ══════════════════════════════════════════════ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --red: #E51921;
      --red-hover: #c91319;
      --blue: #2B50FF;
      --blue-dark: #1e3fcc;
      --black: #0A0A0A;
      --white: #FFFFFF;
      --bg-cream: #F2EDE7;
      --bg-dark: #111111;
      --bg-card: #FFFFFF;
      --text-primary: #0A0A0A;
      --text-secondary: #6B7280;
      --text-on-dark: #FFFFFF;
      --text-muted: #9CA3AF;
      --border: #E5E7EB;
      --font-mono: 'JetBrains Mono', 'Courier New', monospace;
      --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
      --radius: 12px;
      --radius-sm: 8px;
      --radius-lg: 16px;
      --shadow: 0 1px 3px rgba(0,0,0,.08);
      --shadow-md: 0 4px 20px rgba(0,0,0,.08);
      --max-w: 1200px;
      --transition: .25s ease;
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-sans);
      color: var(--text-primary);
      background: var(--bg-cream);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { cursor: pointer; font-family: inherit; border: none; }
    ul { list-style: none; }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

    /* ══════════════════════════════════════════════
       1. TOP INFO BAR
    ═════════════════════════════════════════════ */
    .top-bar span { opacity: .7; }
    .top-bar a {
      color: var(--white);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* ══════════════════════════════════════════════
       2. MAIN NAV
    ═════════════════════════════════════════════ */
    .main-nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 56px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
      font-family: var(--font-mono);
      font-weight: 700;
      font-size: 24px;
      letter-spacing: 1px;
    }
    .nav-logo svg { width: 28px; height: 28px; }

    .nav-links a {
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 500;
      transition: color var(--transition);
    }
    .nav-links a:hover { color: var(--white); }

    .nav-burger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* ═══════════ HERO ═══════════ */

    /* LEFT SIDE */

    /* Animated balls */

    @keyframes ballFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, 30px) scale(0.9); }
  75% { transform: translate(40px, 20px) scale(1.05); }
}

@keyframes ballFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, -30px) scale(1.15); }
  66% { transform: translate(25px, 35px) scale(0.85); }
}

/* Trajectory SVG */

    /* Hours ribbon - на всю ширину внизу */

    @keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* RIGHT SIDE - с картинкой */

    /* RESPONSIVE */
@media (max-width: 1024px) {

}

@media (max-width: 640px) {

}
/* Trajectory SVG */

    @keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* RIGHT SIDE */

    @keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

    /* RESPONSIVE */
@media (max-width: 1024px) {

}

@media (max-width: 640px) {

}

    @keyframes pulse-dot {
      0%,100% { opacity: 1; }
      50% { opacity: .4; }
    }

    /* ══════════════════════════════════════════════
       4. TICKER BAR
    ══════════════════════════════════════════════ */
    @keyframes ticker-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ══════════════════════════════════════════════
       5. FEATURES (ПОЧЕМУ KING PONG)
    ══════════════════════════════════════════════ */
    .section-label {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-mono);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .feature-icon svg {
      width: 20px;
      height: 20px;
      fill: var(--white);
    }
    .feature-card h3 {
      font-family: var(--font-mono);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.4;
      padding-right: 40px;
    }
    .feature-card p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ══════════════════════════════════════════════
       6. ATMOSPHERE (АТМОСФЕРА КЛУБА)
    ══════════════════════════════════════════════ */
    .atmosphere .section-label { color: var(--text-muted); }
    .atmosphere .section-title { color: var(--white); }

    .atmo-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }
    .atmo-grid .img-card:hover img { transform: scale(1.05); }

    /* ══════════════════════════════════════════════
       7. PRICING (ПРАЙС-ЛИСТ)
    ══════════════════════════════════════════════ */

    .price-card h3 {
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    /* ══════════════════════════════════════════════
       8. SCHEDULE (РАСПИСАНИЕ)
    ══════════════════════════════════════════════ */
    .schedule .section-label { color: rgba(255,255,255,.5); }
    .schedule .section-title { color: var(--white); }

    .sched-card h3 {
      font-family: var(--font-mono);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    /* ══════════════════════════════════════════════
       9. REVIEWS (ОТЗЫВЫ)
    ══════════════════════════════════════════════ */

    .review-stars svg {
      width: 16px;
      height: 16px;
      fill: #FBBF24;
    }

    /* ══════════════════════════════════════════════
       10. FAQ (ЧАСТО СПРАШИВАЮТ)
    ══════════════════════════════════════════════ */
    .faq .section-title { text-align: center; }
    .faq .section-label { text-align: center; }

    .faq-icon svg {
      width: 14px;
      height: 14px;
      stroke: var(--text-primary);
      transition: transform var(--transition);
    }

    .faq-item.active .faq-icon svg { transform: rotate(45deg); stroke: var(--white); }

    .faq-answer p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════════════
       11. CTA (ГОТОВ ИГРАТЬ)
    ══════════════════════════════════════════════ */

    /* ══════════════════════════════════════════════
       12. MAP (КАК НАС НАЙТИ)
    ══════════════════════════════════════════════ */
    .map-section {
      padding: 80px 0 80px 0;
    }
    .map-section .section-title { margin-bottom: 32px; }
    .map-wrapper {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      height: 400px;
    }
    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ══════════════════════════════════════════════
       13. FOOTER
    ══════════════════════════════════════════════ */
    .footer {
      background: var(--black);
      color: var(--white);
      padding: 48px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 40px;
    }
    .footer-brand .nav-logo { margin-bottom: 12px; }
    .footer-brand p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .footer-socials {
      display: flex;
      gap: 8px;
    }
    .footer-socials a {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      background: rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }
    .footer-socials a:hover { background: rgba(255,255,255,.15); }
    .footer-socials svg { width: 16px; height: 16px; fill: var(--white); }

    .footer-col h4 {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 13px;
      color: rgba(255,255,255,.6);
      padding: 4px 0;
      transition: color var(--transition);
    }
    .footer-col a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.06);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-bottom p {
      font-size: 11px;
      color: var(--text-muted);
    }
    .footer-bottom a {
      color: var(--text-muted);
      font-size: 11px;
      transition: color var(--transition);
    }
    .footer-bottom a:hover { color: var(--white); }
    .footer-cta-btn {
      background: var(--blue);
      color: var(--white);
      padding: 8px 20px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      transition: background var(--transition);
    }
    .footer-cta-btn:hover { background: var(--blue-dark); }

    /* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
    @media (max-width: 1024px) {
    }

    @media (max-width: 768px) {
      .hero .container { grid-template-columns: 1fr; }

        .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .section-title { font-size: 28px; }
    }

/* ══════════════════════════════════════════════
       RESET & BASE
    ══════════════════════════════════════════════ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --red: #E51921;
      --red-hover: #c91319;
      --blue: #2B50FF;
      --blue-dark: #1e3fcc;
      --black: #0A0A0A;
      --white: #FFFFFF;
      --bg-cream: #F2EDE7;
      --bg-dark: #111111;
      --bg-card: #FFFFFF;
      --text-primary: #0A0A0A;
      --text-secondary: #6B7280;
      --text-on-dark: #FFFFFF;
      --text-muted: #9CA3AF;
      --border: #E5E7EB;
      --font-mono: 'JetBrains Mono', 'Courier New', monospace;
      --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
      --radius: 12px;
      --radius-sm: 8px;
      --radius-lg: 16px;
      --shadow: 0 1px 3px rgba(0,0,0,.08);
      --shadow-md: 0 4px 20px rgba(0,0,0,.08);
      --max-w: 1200px;
      --transition: .25s ease;
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-sans);
      color: var(--text-primary);
      background: var(--bg-cream);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { cursor: pointer; font-family: inherit; border: none; }
    ul { list-style: none; }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }


    @keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
    /* ══════════════════════════════════════════════
       5. FEATURES (ПОЧЕМУ KING PONG)
    ══════════════════════════════════════════════ */

    .feature-icon svg {
      width: 20px;
      height: 20px;
      fill: var(--white);
    }
    .feature-card h3 {
      font-family: var(--font-mono);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.4;
      padding-right: 40px;
    }
    .feature-card p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ══════════════════════════════════════════════
       6. ATMOSPHERE (АТМОСФЕРА КЛУБА)
    ══════════════════════════════════════════════ */

    .atmo-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }
    .atmo-grid .img-card:hover img { transform: scale(1.05); }

    /* ══════════════════════════════════════════════
       7. PRICING (ПРАЙС-ЛИСТ)
    ══════════════════════════════════════════════ */

    .price-card h3 {
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    /* ══════════════════════════════════════════════
       8. SCHEDULE (РАСПИСАНИЕ)
    ══════════════════════════════════════════════ */

    .sched-card h3 {
      font-family: var(--font-mono);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    /* ══════════════════════════════════════════════
       9. REVIEWS (ОТЗЫВЫ)
    ══════════════════════════════════════════════ */

    .review-stars svg {
      width: 16px;
      height: 16px;
      fill: #FBBF24;
    }

    /* ══════════════════════════════════════════════
       10. FAQ (ЧАСТО СПРАШИВАЮТ)
    ══════════════════════════════════════════════ */
    .faq-icon svg {
      width: 14px;
      height: 14px;
      stroke: var(--text-primary);
      transition: transform var(--transition);
    }

    .faq-item.active .faq-icon svg { transform: rotate(45deg); stroke: var(--white); }

    .faq-answer p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════════════
       11. CTA (ГОТОВ ИГРАТЬ)
    ══════════════════════════════════════════════ */

    /* ══════════════════════════════════════════════
       12. MAP (КАК НАС НАЙТИ)
    ══════════════════════════════════════════════ */
    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ══════════════════════════════════════════════
       13. FOOTER
    ══════════════════════════════════════════════ */
    .footer {
      background: var(--black);
      color: var(--white);
      padding: 48px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 40px;
    }
    .footer-brand .nav-logo { margin-bottom: 12px;      font-size: 28px; font-weight: 700; letter-spacing: 1.7px}
    .footer-brand p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .footer-socials {
      display: flex;
      gap: 8px;
    }
    .footer-socials a {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      background: rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }
    .footer-socials a:hover { background: rgba(255,255,255,.15); }
    .footer-socials svg { width: 16px; height: 16px; fill: var(--white); }

    .footer-col h4 {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 13px;
      color: rgba(255,255,255,.6);
      padding: 4px 0;
      transition: color var(--transition);
    }
    .footer-col a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.06);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-bottom p {
      font-size: 11px;
      color: var(--text-muted);
    }
    .footer-bottom a {
      color: var(--text-muted);
      font-size: 11px;
      transition: color var(--transition);
    }
    .footer-bottom a:hover { color: var(--white); }
    .footer-cta-btn {
      background: var(--blue);
      color: var(--white);
      padding: 8px 20px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      transition: background var(--transition);
    }
    .footer-cta-btn:hover { background: var(--blue-dark); }

    /* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
    @media (max-width: 1024px) {
    }

    @media (max-width: 768px) {
      .hero .container { grid-template-columns: 1fr; }

        .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    }