/* === BASE STYLES === */:root {
            --primary: #FF1F8D;
            --primary-dark: #D91A74;
            --secondary: #00D9FF;
            --secondary-dark: #00B8D4;
            --accent: #FFD700;
            --dark: #0A0E27;
            --dark-light: #1A1F3A;
            --text: #E8E9F3;
            --text-muted: #9BA3C7;
            --success: #00FF88;
            --gradient-primary: linear-gradient(135deg, #FF1F8D 0%, #FF6B35 100%);
            --gradient-secondary: linear-gradient(135deg, #00D9FF 0%, #7B61FF 100%);
            --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
        }

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

        html, body {
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 900;
        }

        h2 {
            font-size: 2.75rem;
            font-weight: 800;
        }

        h3 {
            font-size: 1.75rem;
            font-weight: 700;
        }

        .container {
            max-width: 1280px;
        }

        .btn {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: none;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-height: 44px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 8px 25px rgba(255, 31, 141, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 31, 141, 0.6);
            color: white;
        }

        .btn-secondary {
            background: var(--gradient-secondary);
            color: white;
            box-shadow: 0 8px 25px rgba(0, 217, 255, 0.4);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 217, 255, 0.6);
            color: white;
        }

        .card {
            background: var(--dark-light);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(255, 31, 141, 0.3);
            border-color: rgba(255, 31, 141, 0.5);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .content-image {
            max-width: 100%;
            margin: 1.5rem auto;
            text-align: center;
        }

        .content-image img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            border-radius: 16px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
        }

        .content-image.portrait img {
            max-height: 350px;
            max-width: 300px;
        }

        .content-image.wide img {
            max-height: 300px;
            max-width: 100%;
        }

        .content-image figcaption {
            margin-top: 0.5rem;
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 2rem 0;
        }

        table {
            width: 100%;
            background: var(--dark-light);
            border-radius: 12px;
            overflow: hidden;
        }

        table thead {
            background: var(--gradient-primary);
        }

        table th, table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        table th {
            font-weight: 700;
            color: white;
        }

        /* === LAYOUT STYLES === */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 0;
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.1rem;
        }

        .logo img {
            max-height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

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

        .accordion-body {
            padding: 0 1.5rem 0.3rem 1.5rem !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            min-width: 44px;
            min-height: 44px;
            justify-content: center;
            align-items: center;
        }

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

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

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

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

        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .nav-list a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
        }

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

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

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

        .site-header .cta-button {
            white-space: nowrap;
            max-width: 200px;
            padding: 0.75rem 2rem !important;
            font-weight: 600;
            transition: all 0.3s ease;
            background: var(--gradient-primary) !important;
            border: none !important;
            border-radius: 0.375rem !important;
            text-decoration: none !important;
            color: white !important;
            font-size: 1rem;
            display: inline-block;
            position: relative;
            box-shadow: none;
            overflow: visible;
            text-transform: none !important;
            letter-spacing: normal !important;
        }

        .site-header .cta-button::before {
            display: none !important;
        }

        .site-header .cta-button:hover {
            transform: scale(1.05) !important;
            box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4) !important;
            color: white !important;
            text-decoration: none !important;
        }

        .site-header .cta-button:hover::before {
            display: none !important;
        }

        .site-footer {
            background: var(--dark-light);
            padding: 3rem 0 2rem;
            margin-top: 5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .footer-logo img {
            height: 42px;
            width: auto;
            opacity: 0.8;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

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

        .footer-info {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        @media (max-width: 767px) {
            .site-header .container {
                flex-wrap: wrap;
            }

            .site-header .hamburger {
                display: flex;
            }

            .site-header .main-nav {
                width: 100%;
                flex: 0 0 100%;
            }

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

            .site-header .main-nav .nav-list.active {
                max-height: 500px;
            }

            .site-header .main-nav .nav-list li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .site-header .main-nav .nav-list a {
                display: block;
                padding: 1rem;
            }

            .site-header .cta-button {
                max-width: 150px;
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
                text-overflow: ellipsis;
                overflow: hidden;
            }
        }

@media (max-width: 767px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.35rem;
            }

            .hero-section {
                padding: 3rem 0 2rem;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .hero-section .cta-button {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .btn {
                padding: 0.875rem 2rem;
                font-size: 0.95rem;
            }

            .registration,
            .live-games,
            .mobile,
            .strategies,
            .providers,
            .faq {
                padding: 3rem 0;
            }

            .navigation-menu {
                padding: 2.5rem 0;
            }

            .nav-links {
                grid-template-columns: 1fr;
            }

            .timeline-item,
            .game-card,
            .feature-block,
            .provider-card {
                padding: 1.75rem;
            }

            .cta-section {
                padding: 4rem 0;
            }

            .cta-section h2 {
                font-size: 1.85rem;
            }

            .cta-section p {
                font-size: 1rem;
            }

            .cta-section .cta-button {
                padding: 1rem 2.5rem;
                font-size: 1rem;
            }

            .page-nav {
                padding: 1.5rem;
            }

            .accordion-header {
                padding: 1.25rem 1.5rem;
                font-size: 1.1rem;
            }

            .accordion-header::after {
                right: 1.5rem;
            }

            .accordion-body p {
                padding: 0 1.5rem 1.5rem;
            }
        }