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

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(255, 45, 85, 0.15), transparent 70%);
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50%;
            height: 80%;
            background: radial-gradient(circle at bottom left, rgba(0, 200, 255, 0.1), transparent 70%);
            pointer-events: none;
        }

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

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

        .hero-section p {
            font-size: clamp(1.125rem, 2vw, 1.375rem);
            color: var(--text);
            max-width: 900px;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-section .cta-button {
            font-size: 1.25rem;
            padding: 20px 48px;
        }

        .table-of-contents {
            background: var(--dark-light);
            padding: 3rem 0;
            border-top: 1px solid rgba(255, 45, 85, 0.2);
            border-bottom: 1px solid rgba(255, 45, 85, 0.2);
        }

        .table-of-contents h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--primary);
        }

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

        .table-of-contents li {
            background: rgba(255, 45, 85, 0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .table-of-contents li:hover {
            background: rgba(255, 45, 85, 0.1);
            transform: translateX(8px);
        }

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

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

        section {
            padding: 6rem 0;
        }

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

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

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

        .timeline-content h3 {
            color: var(--secondary);
        }

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

        .bonuses::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -5%;
            width: 40%;
            height: 120%;
            background: radial-gradient(circle, rgba(255, 214, 10, 0.08), transparent 60%);
            pointer-events: none;
        }

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

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

        .tabs-nav {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 14px 28px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            color: var(--text);
            font-weight: 600;
            font-size: 1rem;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 44px;
        }

        .tab-btn:hover {
            background: rgba(255, 45, 85, 0.1);
            border-color: var(--primary);
            color: var(--primary);
        }

        .tab-btn.active {
            background: var(--gradient-primary);
            border-color: var(--primary);
            color: #fff;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

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

        .feature-item {
            background: var(--dark-light);
            padding: 2.5rem;
            border-radius: 16px;
            margin-bottom: 2rem;
            border: 1px solid rgba(0, 200, 255, 0.2);
            transition: all 0.4s ease;
        }

        .feature-item:hover {
            border-color: var(--secondary);
            box-shadow: 0 8px 32px rgba(0, 200, 255, 0.2);
            transform: translateX(8px);
        }

        .feature-item h3 {
            color: var(--secondary);
        }

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

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

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

        .comparison-table th {
            padding: 1.25rem 1rem;
            text-align: left;
            font-weight: 600;
            color: #fff;
            font-size: 0.95rem;
        }

        .comparison-table td {
            padding: 1.25rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text);
        }

        .comparison-table tbody tr:hover {
            background: rgba(255, 45, 85, 0.05);
        }

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

        .highlight-box {
            background: var(--dark);
            padding: 2.5rem;
            border-radius: 16px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        }

        .highlight-box h3 {
            color: var(--accent);
        }

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

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

        .accordion-item:hover {
            border-color: rgba(255, 45, 85, 0.3);
        }

        .accordion-header button {
            width: 100%;
            padding: 1.5rem;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.125rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            min-height: 44px;
        }

        .accordion-header .icon::after {
            content: '+';
            font-size: 1.75rem;
            color: var(--primary);
            font-weight: 300;
            transition: transform 0.3s ease;
        }

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

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

        .accordion-body p {
            padding: 0;
            margin: 0;
        }

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

        .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="2" cy="2" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: 50px 50px;
            opacity: 0.3;
            pointer-events: none;
        }

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

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

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.25rem;
            margin-bottom: 2rem;
        }

        .cta-section .cta-button {
            background: #fff;
            color: var(--primary);
            font-size: 1.25rem;
            padding: 20px 48px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .cta-section .cta-button:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-4px);
        }

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

            section {
                padding: 3rem 0;
            }

            .tabs-nav {
                flex-direction: column;
            }

            .tab-btn {
                width: 100%;
            }

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

            .comparison-table {
                font-size: 0.85rem;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 0.75rem 0.5rem;
            }

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

        @media (min-width: 768px) and (max-width: 1023px) {
            .hero-section {
                padding: 6rem 0 4rem;
            }

            .tabs-nav {
                justify-content: center;
            }
        }