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

        :root {
            --blue: #2B4EFF;
            --blue-dark: #1e3fcc;
            --red: #D81233;
            --black: #0A0A0A;
            --white: #FFFFFF;
            --bg: #F5F5F7;
            --gray: #6B6B7A;
            --max-w: 1200px;
            --text-muted: #9CA3AF;
            --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;
        }

        a { color: inherit; text-decoration: none; }

        /* Mobile Styles */
        @media (max-width: 768px) {
            /* Top bar - red */
            .top-bar a {
                color: var(--white);
                text-decoration: none;
                font-weight: 600;
            }
            .modal-box {
                padding: 32px 20px;
                margin: 20px;
            }
        }
        /*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;
            }
        }
        /* ══════════════════════════════════════════════
           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;
        }
        .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

        /* ══════════════════════════════════════════════
           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);
            }

                .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 */

            }

        /* Мобильное меню */
        @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;
            }
        }

        /* ═══════════ SCHEDULE HEADER ═══════════ */
        .schedule-page-header {
            background: var(--black);
            padding: 60px 24px 40px;
            border-bottom: 3px solid;
            border-image: linear-gradient(to right, var(--blue), var(--red)) 1;
        }
        .schedule-page-header .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .schedule-page-title {
            font-family: var(--font-mono);
            font-size: clamp(36px, 5vw, 64px);
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: -2px;
            margin-bottom: 20px;
        }

        .week-nav {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            background: rgba(255,255,255,.08);
            border-radius: 10px;
            padding: 10px 16px;
            margin-bottom: 24px;
        }
        .week-nav-btn {
            background: rgba(255,255,255,.1);
            border: none;
            color: var(--white);
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
            transition: background .25s ease;
        }
        .week-nav-btn:hover { background: rgba(255,255,255,.2); }
        .week-label {
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            min-width: 140px;
            text-align: center;
        }

        .schedule-filters {
            display: flex;
            gap: 8px;
        }
        .filter-btn {
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all .25s ease;
            border: 2px solid rgba(255,255,255,.15);
            background: transparent;
            color: rgba(255,255,255,.5);
            text-transform: uppercase;
            letter-spacing: .5px;
        }
        .filter-btn.active {
            background: var(--white);
            color: var(--black);
            border-color: var(--white);
        }
        .filter-btn:hover:not(.active) {
            border-color: rgba(255,255,255,.3);
            color: var(--white);
        }

        /* ═══════════ SCHEDULE GRID ═══════════ */
        .schedule-page-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 32px 24px 60px;
        }

        .schedule-week {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid var(--black);
            box-shadow: 0 8px 32px rgba(0,0,0,.08);
        }

        .day-header {
            background: var(--black);
            color: var(--white);
            text-align: center;
            padding: 16px 8px 12px;
            border-bottom: 2px solid #2a2a2a;
        }

        .day-name {
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2px;
        }
        .day-date {
            font-size: 11px;
            opacity: .6;
        }

        .day-events {
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-height: 200px;
        }

        .event-card {
            border-radius: 10px;
            padding: 14px 12px;
            cursor: pointer;
            transition: all .25s ease;
            position: relative;
            border: 2px solid;
        }
        .event-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,.1);
        }

        .event-card.group {
            background: rgba(43, 78, 255, .04);
            border-color: var(--blue);
        }
        .event-card.group:hover {
            background: rgba(43, 78, 255, .08);
        }

        .event-card.tournament {
            background: rgba(216, 18, 51, .04);
            border-color: var(--red);
        }
        .event-card.tournament:hover {
            background: rgba(216, 18, 51, .08);
        }

        .event-type {
            display: inline-block;
            font-family: var(--font-mono);
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 3px 8px;
            border-radius: 4px;
            margin-bottom: 8px;
        }
        .event-type.group { background: var(--blue); color: var(--white); }
        .event-type.tournament { background: var(--red); color: var(--white); }

        .event-time {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 4px;
        }

        .event-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--black);
            line-height: 1.3;
            margin-bottom: 4px;
        }

        .event-coach {
            font-size: 11px;
            color: var(--gray);
        }

        .event-arrow {
            position: absolute;
            top: 12px;
            right: 12px;
            font-size: 12px;
            color: var(--gray);
            opacity: 0;
            transition: opacity .25s ease;
        }
        .event-card:hover .event-arrow { opacity: 1; }

        /* ═══════════ LEGEND ═══════════ */
        .schedule-legend {
            display: flex;
            gap: 32px;
            margin-top: 32px;
            padding-bottom: 20px;
            border-bottom: 1px solid #E5E7EB;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: .5px;
        }
        .legend-dot {
            width: 12px;
            height: 12px;
            border-radius: 3px;
        }
        .legend-dot.group { background: var(--blue); }
        .legend-dot.tournament { background: var(--red); }

        .schedule-note {
            margin-top: 16px;
            font-size: 12px;
            color: var(--gray);
            line-height: 1.6;
        }
        .schedule-note a {
            color: var(--blue);
            text-decoration: none;
        }

        /* ═══════════ MOBILE ══════════ */
        @media (max-width: 1024px) {
            .schedule-week {
                grid-template-columns: repeat(4, 1fr);
                grid-template-rows: auto;
            }
        }

        @media (max-width: 768px) {
            .schedule-page-header {
                padding: 40px 16px 32px;
            }
            .schedule-page-content {
                padding: 24px 16px 40px;
            }

            .schedule-week {
                display: flex;
                flex-direction: column;
                border-radius: 14px;
            }

            .day-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 12px 16px;
                border-bottom: 1px solid #2a2a2a;
            }

            .day-events {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 8px;
                padding: 12px 16px;
                min-height: auto;
            }

            .event-card {
                flex: 1;
                min-width: calc(50% - 4px);
            }

            .schedule-filters {
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 4px;
            }
            .filter-btn {
                white-space: nowrap;
                flex-shrink: 0;
                padding: 8px 16px;
                font-size: 11px;
            }

            .schedule-legend {
                flex-direction: column;
                gap: 12px;
            }

        }

        @media (max-width: 480px) {
            .event-card {
                min-width: 100%;
            }
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        /* === СТИЛИ БАННЕРА === */
        .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__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__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;
            }
        }

/* ══════════════════════════════════════════════
       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; }
    }