.hero-section {
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 30% 50%, rgba(255, 22, 84, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
                        var(--gradient-dark);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -5%;
            right: -5%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 22, 84, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
            animation: float 8s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -5%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
            animation: float 10s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            text-align: center;
        }

        .hero-section h1 {
            margin-bottom: 2rem;
            text-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
        }

        .hero-section p {
            font-size: 1.15rem;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto 3rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .navigation-menu {
            padding: 3rem 0;
            background: rgba(26, 11, 46, 0.5);
            backdrop-filter: blur(10px);
        }

        .navigation-menu nav {
            display: block;
        }

        .navigation-menu h2 {
            text-align: center;
            margin-bottom: 2rem;
        }

        .content-nav {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
            list-style: none;
            padding: 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content-nav li {
            background: linear-gradient(135deg, rgba(255, 22, 84, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
            border: 1px solid rgba(0, 217, 255, 0.3);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .content-nav li:hover {
            background: linear-gradient(135deg, rgba(255, 22, 84, 0.2) 0%, rgba(0, 217, 255, 0.2) 100%);
            transform: translateX(8px);
            border-color: var(--secondary);
            box-shadow: var(--shadow-glow);
        }

        .content-nav a {
            display: block;
            padding: 1.2rem 1.5rem;
            color: var(--light);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.95rem;
        }

        .content-nav a:hover {
            color: var(--accent);
        }

        section {
            padding: 5rem 0;
            position: relative;
        }

        section:nth-child(even) {
            background: rgba(26, 11, 46, 0.3);
        }

        .registration .container,
        .game-sections .container,
        .mobile-app .container,
        .platform-benefits .container,
        .software-providers .container,
        .faq .container {
            max-width: 1200px;
        }

        .timeline-item, .game-category, .feature-block, .benefit-card, .providers-section, .certifications-section, .innovation-section {
            margin-bottom: 3rem;
        }

        .timeline-item h3, .game-category h3, .feature-block h3, .benefit-card h3 {
            margin-top: 2rem;
        }

        .cards-grid-2 .container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .benefit-card {
            background: linear-gradient(135deg, rgba(26, 11, 46, 0.9) 0%, rgba(45, 27, 78, 0.8) 100%);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.4s ease;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-glow);
            border-color: var(--secondary);
        }

        .provider-info p {
            margin-bottom: 1.5rem;
            padding-left: 1rem;
            border-left: 3px solid var(--primary);
        }

        .accordion-item {
            background: rgba(26, 11, 46, 0.6);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--secondary);
            box-shadow: var(--shadow-sm);
        }

        .accordion-header {
            padding: 1.8rem 2rem;
            cursor: pointer;
            position: relative;
            font-size: 1.3rem;
            color: var(--light);
            margin: 0;
            transition: all 0.3s ease;
            user-select: none;
        }

        .accordion-header::after {
            content: '+';
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: var(--secondary);
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-header {
            background: rgba(0, 217, 255, 0.1);
            color: var(--secondary);
        }

        .accordion-item.active .accordion-header::after {
            content: '−';
            transform: translateY(-50%) rotate(180deg);
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 2rem;
        }

        .accordion-item.active .accordion-body {
            max-height: 1000px;
            padding: 0 2rem 2rem;
        }

        .cta-section {
            padding: 6rem 0;
            text-align: center;
            background: radial-gradient(circle at center, rgba(255, 22, 84, 0.2) 0%, transparent 70%),
                        var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(100px);
            animation: pulse 4s ease-in-out infinite;
        }

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

        .cta-section .container {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .cta-section .btn-primary {
            font-size: 1.3rem;
            padding: 20px 60px;
            min-width: 300px;
            box-shadow: 0 10px 40px rgba(255, 22, 84, 0.4);
        }

        .cta-section .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(255, 22, 84, 0.6);
        }

        @media (max-width: 767px) {
            .hero-section {
                padding: 5rem 0 4rem;
            }

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

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

            .hero-section::before,
            .hero-section::after {
                width: 300px;
                height: 300px;
            }

            section {
                padding: 3rem 0;
            }

            h2 {
                font-size: 1.8rem;
            }

            h3 {
                font-size: 1.4rem;
            }

            .content-nav {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.6rem;
            }

            .content-nav a {
                padding: 0.85rem 0.75rem;
                font-size: 0.78rem;
            }

            .card, .benefit-card {
                padding: 1.5rem;
            }

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

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

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

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

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

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

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

            .cta-section .btn-primary {
                font-size: 1rem;
                padding: 16px 40px;
                min-width: 250px;
            }

            .btn {
                padding: 14px 32px;
                font-size: 1rem;
                min-width: 180px;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .content-nav {
                grid-template-columns: repeat(2, 1fr);
            }

            .cards-grid-2 .container {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 1024px) {
            .content-nav {
                grid-template-columns: repeat(3, 1fr);
            }
        }