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

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

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

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -5%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 0, 107, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite 2s;
        }

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

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

        .hero-section h1 {
            background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .hero-section p {
            font-size: 1.25rem;
            color: var(--text);
            max-width: 800px;
            margin-bottom: 2.5rem;
        }

        .hero-section .cta-button {
        }

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

        .table-of-contents {
            background: var(--dark-secondary);
            padding: 3rem 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .table-of-contents h2 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
        }

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

        .table-of-contents a {
            display: block;
            padding: 1rem 1.5rem;
            background: var(--dark);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .table-of-contents a:hover {
            background: rgba(0, 217, 255, 0.1);
            border-color: var(--primary);
            color: var(--primary);
            transform: translateX(8px);
        }

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

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

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 16px;
            height: 16px;
            background: var(--gradient-primary);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            left: 7px;
            top: 24px;
            width: 2px;
            height: calc(100% + 2rem);
            background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
        }

        .timeline-item:last-child::after {
            display: none;
        }

        .timeline-item p {
            background: var(--dark-secondary);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 3px solid var(--primary);
        }

        .text-block {
            background: var(--dark-secondary);
            padding: 2rem;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid var(--border);
        }

        .text-block p {
            color: var(--text);
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 0, 107, 0.1) 100%);
            border: 1px solid var(--primary);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
        }

        .mobile-app {
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }

        .mobile-app::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 214, 0, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .feature-block {
            background: var(--dark-secondary);
            padding: 2rem;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .feature-block:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

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

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

        .advantages {
            background: var(--gradient-dark);
        }

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

        .highlight-item:hover {
            border-left-color: var(--accent);
            box-shadow: var(--shadow-md);
            transform: translateX(8px);
        }

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

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

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

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

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

        .accordion-header {
            margin: 0;
        }

        .accordion-header button {
            width: 100%;
            background: none;
            border: none;
            padding: 1.5rem 2rem;
            text-align: left;
            font-size: 1.125rem;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Space Grotesk', sans-serif;
            transition: all 0.3s ease;
        }

        .accordion-header button:hover {
            color: var(--primary);
        }

        .accordion-header .icon {
            width: 24px;
            height: 24px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .accordion-header .icon::before,
        .accordion-header .icon::after {
            content: '';
            position: absolute;
            background: var(--primary);
            transition: all 0.3s ease;
        }

        .accordion-header .icon::before {
            width: 24px;
            height: 3px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .accordion-header .icon::after {
            width: 3px;
            height: 24px;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }

        .accordion-header button[aria-expanded="true"] .icon {
            transform: rotate(45deg);
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
            padding: 0 1.5rem 0.3rem 1.5rem !important;
        }

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

        .accordion-body p {
            color: var(--text);
            line-height: 1.8;
        }

        .cta-section {
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 0, 107, 0.1) 100%);
            text-align: center;
            padding: 6rem 0;
            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.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

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

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

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

        .cta-section p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }

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

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

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

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

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

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

            .text-block,
            .feature-block,
            .highlight-box,
            .highlight-item {
                padding: 1.5rem;
            }

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

            .cta-section::before {
                width: 400px;
                height: 400px;
            }

            .btn,
            .cta-button {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }
        }