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

        .hero-section {
            background: var(--gradient-dark);
            padding: 8rem 0 6rem;
            position: relative;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -5%;
            right: -3%;
            width: 60%;
            height: 120%;
            background: radial-gradient(circle, rgba(255, 51, 102, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -5%;
            left: -3%;
            width: 60%;
            height: 120%;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
        }

        .hero-section h1 {
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }

        .hero-section p {
            font-size: clamp(16px, 2vw, 20px);
            max-width: 900px;
            color: var(--text);
            animation: fadeInUp 1s ease 0.2s backwards;
            margin-bottom: 2rem;
        }

        .hero-section .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--primary);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s backwards;
            box-shadow: 0 4px 20px rgba(255, 51, 102, 0.3);
        }

        .hero-section .cta-button:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 30px rgba(0, 217, 255, 0.4);
        }

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

        .table-of-contents {
            background: var(--dark-alt);
            padding: 3rem 0;
        }

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

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

        .table-of-contents nav li {
            background: var(--dark);
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 51, 102, 0.2);
        }

        .table-of-contents nav li:hover {
            transform: translateX(8px);
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(255, 51, 102, 0.3);
        }

        .table-of-contents nav a {
            display: block;
            padding: 1rem 1.5rem;
            color: var(--text);
            font-weight: 500;
        }

        .table-of-contents nav a:hover {
            color: var(--primary);
        }

        .registration {
            background: var(--dark);
        }

        .timeline-item {
            background: var(--dark-alt);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
        }

        .timeline-item:hover {
            transform: translateX(10px);
            border-left-width: 8px;
            box-shadow: 0 12px 40px rgba(255, 51, 102, 0.3);
        }

        .timeline-item h3 {
            color: var(--secondary);
            margin-top: 0;
        }

        .games {
            background: linear-gradient(180deg, var(--dark) 0%, var(--dark-alt) 100%);
        }

        .games article {
            margin-bottom: 4rem;
        }

        .feature-blocks {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .feature-block {
            background: var(--dark);
            border-radius: 16px;
            padding: 2rem;
            border: 2px solid rgba(0, 217, 255, 0.2);
            transition: all 0.4s ease;
        }

        .feature-block:hover {
            border-color: var(--secondary);
            box-shadow: 0 12px 40px rgba(0, 217, 255, 0.2);
            transform: translateY(-5px);
        }

        .feature-block h4 {
            color: var(--accent);
            margin-bottom: 1rem;
        }

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

        .checklist {
            list-style: none;
            padding: 0;
        }

        .checklist li {
            padding-left: 2rem;
            position: relative;
            margin-bottom: 1rem;
        }

        .checklist li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
            font-size: 20px;
        }

        .security {
            background: var(--dark);
        }

        .cards-grid-2 article.card {
            margin-bottom: 2rem;
        }

        .comparison-table {
            margin: 2rem 0;
        }

        .providers {
            background: linear-gradient(180deg, var(--dark-alt) 0%, var(--dark) 100%);
        }

        .highlight-box {
            background: var(--dark-alt);
            border-left: 4px solid var(--secondary);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            transition: all 0.3s ease;
        }

        .highlight-box:hover {
            border-left-width: 8px;
            box-shadow: 0 8px 30px rgba(0, 217, 255, 0.2);
        }

        .highlight-box h4 {
            color: var(--accent);
            margin-bottom: 0.75rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list strong {
            color: var(--secondary);
        }

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

        .accordion-item {
            background: var(--dark);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            border: 1px solid rgba(255, 51, 102, 0.2);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--primary);
        }

        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 20px;
            color: var(--text);
            transition: all 0.3s ease;
            margin: 0;
        }

        .accordion-header::after {
            content: '+';
            font-size: 28px;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-header::after {
            transform: rotate(45deg);
            color: var(--secondary);
        }

        .accordion-item:hover .accordion-header {
            color: var(--secondary);
        }

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

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

        .cta-section {
            background: var(--gradient-primary);
            text-align: center;
            padding: 6rem 0;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            opacity: 0.3;
            pointer-events: none;
        }

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

        .cta-section h2 {
            color: #fff;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

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

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

            .hero-section::before,
            .hero-section::after {
                width: 80%;
            }

            .feature-blocks {
                grid-template-columns: 1fr;
            }

            .table-of-contents nav ul {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

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