/* === BASE STYLES === */:root {
            --primary: #FF3366;
            --secondary: #00E5FF;
            --accent: #FFD700;
            --dark: #0A0E27;
            --darker: #060918;
            --light: #F8F9FA;
            --gray: #6C757D;
            --gradient-primary: linear-gradient(135deg, #FF3366 0%, #FF6B9D 100%);
            --gradient-secondary: linear-gradient(135deg, #00E5FF 0%, #0099CC 100%);
            --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #1a1f3a 100%);
            --shadow-sm: 0 4px 12px rgba(255, 51, 102, 0.15);
            --shadow-md: 0 8px 24px rgba(255, 51, 102, 0.2);
            --shadow-lg: 0 16px 48px rgba(255, 51, 102, 0.3);
            --shadow-cyan: 0 8px 32px rgba(0, 229, 255, 0.3);
        }

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

        html {
            overflow-x: hidden;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--darker);
            color: var(--light);
            line-height: 1.7;
            overflow-x: hidden;
            max-width: 100%;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
            overflow-x: hidden;
        }

        section,
        main,
        header,
        footer {
            max-width: 100%;
            overflow-x: hidden;
        }

        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            width: 100%;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 900;
            line-height: 1.2;
        }

        h1 {
            font-size: clamp(36px, 5vw, 72px);
            margin-bottom: 24px;
            background: linear-gradient(135deg, #FF3366 0%, #00E5FF 50%, #FFD700 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(32px, 4vw, 56px);
            margin-bottom: 20px;
            color: var(--light);
        }

        h3 {
            font-size: clamp(24px, 3vw, 36px);
            margin-bottom: 16px;
            color: var(--secondary);
        }

        h4 {
            font-size: clamp(20px, 2.5vw, 28px);
            margin-bottom: 12px;
            color: var(--light);
        }

        p {
            font-size: 17px;
            color: rgba(248, 249, 250, 0.85);
            margin-bottom: 16px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            padding: 18px 42px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-block;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .card {
            background: linear-gradient(145deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 39, 0.9));
            border-radius: 24px;
            padding: 32px;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 51, 102, 0.2);
            backdrop-filter: blur(10px);
        }

        .card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        /* === LAYOUT STYLES === */
        .site-header {
            background: rgba(6, 9, 24, 0.95);
            backdrop-filter: blur(20px);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid rgba(255, 51, 102, 0.3);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 32px;
        }

        .logo {
            text-decoration: none;
            display: inline-block;
        }

        .logo:hover {
            opacity: 0.9;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 900;
            background: linear-gradient(135deg, #FF3366 0%, #00E5FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .main-nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 32px;
            margin: 0;
            padding: 0;
        }

        .nav-list a {
            color: var(--light);
            font-weight: 600;
            font-size: 16px;
            position: relative;
            padding: 8px 0;
        }

        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-list a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        .site-footer {
            background: var(--darker);
            padding: 60px 0 32px;
            border-top: 2px solid rgba(255, 51, 102, 0.3);
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h4,
        .footer-nav h4 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 20px;
        }

        .footer-nav ul {
            list-style: none;
            padding: 0;
        }

        .footer-nav li {
            margin-bottom: 12px;
        }

        .footer-nav a {
            color: rgba(248, 249, 250, 0.7);
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 51, 102, 0.2);
            color: rgba(248, 249, 250, 0.5);
        }

        @media (max-width: 767px) {
            .site-header {
                padding: 16px 0 0;
            }

            .header-content {
                flex-wrap: wrap;
            }

            .logo {
                flex: 1;
            }

            .logo-text {
                font-size: 24px;
            }

            .hamburger {
                display: flex;
            }

            .main-nav {
                order: 3;
                width: 100%;
                flex: none;
            }

            .nav-list {
                flex-direction: column;
                width: 100%;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }

            .main-nav.active .nav-list {
                max-height: 400px;
                padding: 20px 0;
            }

            .nav-list li {
                width: 100%;
            }

            .nav-list a {
                display: block;
                padding: 16px 20px;
                border-bottom: 1px solid rgba(255, 51, 102, 0.1);
            }

            .header-content .btn-primary {
                width: 100%;
                order: 4;
                margin-top: 16px;
                margin-bottom: 16px;
                padding: 16px;
                font-size: 16px;
            }

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

@media (max-width: 767px) {
            .site-header {
                padding: 16px 0 0;
            }

            .header-content {
                flex-wrap: wrap;
            }

            .logo {
                flex: 1;
            }

            .logo-text {
                font-size: 24px;
            }

            .hamburger {
                display: flex;
            }

            .main-nav {
                order: 3;
                width: 100%;
                flex: none;
            }

            .nav-list {
                flex-direction: column;
                width: 100%;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }

            .main-nav.active .nav-list {
                max-height: 400px;
                padding: 20px 0;
            }

            .nav-list li {
                width: 100%;
            }

            .nav-list a {
                display: block;
                padding: 16px 20px;
                border-bottom: 1px solid rgba(255, 51, 102, 0.1);
            }

            .header-content .btn-primary {
                width: 100%;
                order: 4;
                margin-top: 16px;
                margin-bottom: 16px;
                padding: 16px;
                font-size: 16px;
            }

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

@media (max-width: 767px) {
            .hero-section {
                padding: 80px 0 60px;
            }

            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 32px;
            }

            h3 {
                font-size: 24px;
            }

            .overview-section,
            .registration-section,
            .bonuses-section,
            .games-section,
            .advantages-section,
            .payments-section,
            .security-section,
            .faq-section,
            .cta-section {
                padding: 60px 0;
            }

            .cards-grid-3,
            .cards-grid-4,
            .advantages-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .tabs-nav {
                flex-direction: column;
            }

            .tab-button {
                width: 100%;
            }

            .info-table,
            .payment-table {
                font-size: 14px;
            }

            .info-table td,
            .payment-table th,
            .payment-table td {
                padding: 12px 16px;
            }

            .highlight-box {
                padding: 24px;
            }

            .accordion-header {
                padding: 20px 16px;
            }

            .accordion-header h3 {
                font-size: 18px;
            }

            .accordion-body.active {
                padding: 0 16px 20px;
            }

            .btn-primary {
                padding: 16px 32px;
                font-size: 16px;
            }

            .cta-section {
                padding: 80px 0;
            }

            .cta-content p {
                font-size: 18px;
            }
        }