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

        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: var(--gradient-dark);
            padding: 8rem 0;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -5%;
            width: 60%;
            height: 120%;
            background: radial-gradient(circle, rgba(8, 217, 214, 0.15) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -5%;
            width: 60%;
            height: 120%;
            background: radial-gradient(circle, rgba(255, 46, 99, 0.15) 0%, transparent 70%);
            animation: pulse 10s ease-in-out infinite reverse;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

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

        .hero-section h1 {
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary-electric) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            animation: slideDown 1s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-section p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: var(--text-secondary);
            animation: fadeIn 1s ease-out 0.3s both;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .hero-section .cta-button {
            animation: slideUp 1s ease-out 0.6s both;
            font-size: 1.25rem;
            padding: 1.25rem 3rem;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .table-of-contents {
            background: var(--dark-surface);
            position: relative;
            overflow: hidden;
        }

        .table-of-contents::before {
            content: '';
            position: absolute;
            top: 0;
            left: -3%;
            width: 40%;
            height: 100%;
            background: linear-gradient(90deg, rgba(255, 46, 99, 0.05) 0%, transparent 100%);
        }

        .table-of-contents h2 {
            text-align: center;
            margin-bottom: 2.5rem;
            color: var(--secondary-electric);
        }

        .checklist {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            padding: 0;
        }

        .checklist li {
            background: var(--dark-card);
            padding: 1.5rem;
            border-radius: 16px;
            border-left: 4px solid var(--primary-flame);
            transition: all 0.3s ease;
            position: relative;
        }

        .checklist li::before {
            content: '→';
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary-electric);
            font-size: 1.5rem;
            font-weight: bold;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .checklist li:hover::before {
            opacity: 1;
            left: 1.5rem;
        }

        .checklist li:hover {
            transform: translateX(8px);
            border-left-width: 8px;
            box-shadow: var(--shadow-md);
        }

        .checklist a {
            color: var(--text-primary);
            font-weight: 500;
            display: block;
            padding-left: 1rem;
        }

        .login-access {
            background: var(--dark-void);
        }

        .timeline-item {
            margin-bottom: 3rem;
            padding-left: 3rem;
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            left: -6px;
            top: 0;
            width: 16px;
            height: 16px;
            background: var(--secondary-electric);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(8, 217, 214, 0.6);
        }

        .timeline-item h3 {
            color: var(--secondary-electric);
            margin-bottom: 1rem;
        }

        .timeline-item ul {
            padding-left: 1.5rem;
        }

        .timeline-item li {
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
        }

        .games {
            background: var(--dark-surface);
            position: relative;
        }

        .games::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: -3%;
            width: 40%;
            height: 60%;
            background: radial-gradient(circle, rgba(8, 217, 214, 0.08) 0%, transparent 70%);
        }

        .cards-grid-3 .container > p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .cards-grid-3 .container > h2 {
            text-align: center;
            margin-bottom: 1rem;
        }

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

        .cards-grid-3 .card {
            grid-column: 1;
        }

        .mobile-app {
            background: var(--dark-void);
        }

        .feature-block {
            margin-bottom: 3rem;
            text-align: center;
        }

        .feature-block h3 {
            color: var(--primary-flame);
            margin-bottom: 1rem;
        }

        .strategies {
            background: var(--dark-surface);
            position: relative;
        }

        .strategies::before {
            content: '';
            position: absolute;
            top: -5%;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(180deg, rgba(255, 46, 99, 0.03) 0%, transparent 100%);
        }

        .highlight-box {
            background: var(--dark-card);
            padding: 2.5rem;
            border-radius: 20px;
            margin-bottom: 2rem;
            border-top: 3px solid var(--secondary-electric);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .highlight-box:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .highlight-box h3 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .highlight-box ul {
            padding-left: 1.5rem;
        }

        .highlight-box li {
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
        }

        .providers {
            background: var(--dark-void);
        }

        .providers article {
            margin-bottom: 2.5rem;
        }

        .providers h3 {
            color: var(--secondary-electric);
            margin-bottom: 1rem;
        }

        .registration-cta {
            background: var(--gradient-dark);
            text-align: center;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .registration-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(255, 46, 99, 0.15) 0%, transparent 60%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: translateX(-50%) rotate(0deg); }
            to { transform: translateX(-50%) rotate(360deg); }
        }

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

        .registration-cta h2 {
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .registration-cta p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
        }

        .faq {
            background: var(--dark-surface);
        }

        .faq h2 {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--secondary-electric);
        }

        .accordion-item {
            background: var(--dark-card);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            border: 1px solid rgba(8, 217, 214, 0.1);
            transition: all 0.3s ease;
        }

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

        .accordion-header {
            padding: 1.5rem 2rem;
            cursor: pointer;
            position: relative;
            color: var(--text-primary);
            font-size: 1.25rem;
            user-select: none;
            transition: all 0.3s ease;
        }

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

        .accordion-item.active .accordion-header::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .accordion-item.active .accordion-header {
            background: rgba(8, 217, 214, 0.05);
        }

        .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: 2000px;
            padding: 0 2rem 1.5rem;
        }

        .accordion-body p {
            margin-bottom: 1rem;
        }

        .accordion-body ul {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .accordion-body li {
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        @media (min-width: 768px) {
            .cards-grid-3 .container {
                grid-template-columns: repeat(2, 1fr);
            }

            .cards-grid-3 .container > h2,
            .cards-grid-3 .container > p {
                grid-column: 1 / -1;
            }
        }

        @media (min-width: 1200px) {
            .cards-grid-3 .container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 767px) {
            section {
                padding: 3rem 0;
            }

            .hero-section {
                min-height: auto;
                padding: 5rem 0;
            }

            .timeline-item {
                padding-left: 2rem;
            }

            .highlight-box {
                padding: 1.5rem;
            }

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

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

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

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

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