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

        .hero-section::before {
            content: '';
            position: absolute;
            top: -5%;
            right: -3%;
            width: 40%;
            height: 110%;
            background: radial-gradient(circle, rgba(255, 46, 99, 0.15) 0%, transparent 70%);
            filter: blur(60px);
            z-index: 0;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -5%;
            left: -3%;
            width: 40%;
            height: 110%;
            background: radial-gradient(circle, rgba(8, 217, 214, 0.15) 0%, transparent 70%);
            filter: blur(60px);
            z-index: 0;
        }

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

        .hero-button {
            margin-top: 2rem;
            display: inline-block;
        }

        .table-of-contents {
            background: rgba(26, 26, 46, 0.5);
            padding: 2rem 0;
            margin: 3rem 0;
            border-top: 2px solid var(--secondary);
            border-bottom: 2px solid var(--secondary);
        }

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

        .toc-list li a {
            display: block;
            padding: 1rem 1.5rem;
            background: rgba(8, 217, 214, 0.05);
            border-left: 3px solid var(--secondary);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .toc-list li a:hover {
            background: rgba(8, 217, 214, 0.15);
            border-left-width: 6px;
            transform: translateX(5px);
        }

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

        .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-secondary);
            border-radius: 2px;
        }

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

        .timeline-content {
            background: rgba(26, 26, 46, 0.3);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(8, 217, 214, 0.1);
        }

        .timeline-content ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .timeline-content li {
            margin-bottom: 0.75rem;
            color: rgba(248, 249, 250, 0.85);
        }

        .bonus-card, .game-category, .feature-item, .provider-card {
            background: rgba(26, 26, 46, 0.6);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 46, 99, 0.2);
            margin-bottom: 2rem;
            transition: all 0.4s ease;
        }

        .bonus-card:hover, .game-category:hover, .feature-item:hover, .provider-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(255, 46, 99, 0.3);
        }

        .bonus-details, .promo-list {
            background: rgba(15, 15, 30, 0.5);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }

        .bonus-details dt, .promo-list dt {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .bonus-details dd, .promo-list dd {
            margin-bottom: 1.5rem;
            padding-left: 1rem;
            border-left: 3px solid rgba(8, 217, 214, 0.3);
        }

        .contribution-list, .live-features, .betting-types, .training-list, .certifications-list {
            list-style: none;
            padding: 0;
        }

        .contribution-list li, .live-features li, .betting-types li, .training-list li, .certifications-list li {
            padding: 0.75rem 0 0.75rem 2rem;
            position: relative;
            color: rgba(248, 249, 250, 0.9);
        }

        .contribution-list li::before, .live-features li::before, .betting-types li::before, .training-list li::before, .certifications-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-size: 1.2rem;
        }

        .table-games-grid, .features-grid, .provider-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .features-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
            margin: 1rem 0 0 0;
            grid-column: 1 / -1;
        }

        .game-type, .channel-item {
            background: rgba(15, 15, 30, 0.4);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(8, 217, 214, 0.15);
        }

        .vip-levels, .complaint-steps {
            background: rgba(26, 26, 46, 0.4);
            padding: 1.5rem;
            border-radius: 12px;
            counter-reset: item;
            list-style: none;
        }

        .vip-levels li, .complaint-steps li {
            counter-increment: item;
            padding: 0.75rem 0 0.75rem 3rem;
            position: relative;
            margin-bottom: 0.75rem;
        }

        .vip-levels li::before, .complaint-steps li::before {
            content: counter(item);
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 35px;
            height: 35px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }

        .accordion-item {
            background: rgba(26, 26, 46, 0.5);
            border: 1px solid rgba(8, 217, 214, 0.2);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            color: var(--accent);
            font-size: 1.25rem;
        }

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

        .accordion-item.active .accordion-header::after {
            content: '−';
        }

        .accordion-header:hover {
            background: rgba(8, 217, 214, 0.1);
        }

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

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

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

        .cta-section::before {
            content: '';
            position: absolute;
            top: -3%;
            left: -3%;
            width: 40%;
            height: 106%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            filter: blur(40px);
        }

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

        .cta-content h2 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-section .btn-primary {
            background: white;
            color: var(--primary);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }

        .cta-section .btn-primary:hover {
            background: var(--accent);
            color: var(--dark);
        }

        @media (max-width: 991px) {
            .table-games-grid, .features-grid, .provider-cards {
                grid-template-columns: 1fr;
            }

            .features-row {
                grid-template-columns: 1fr;
            }
        }

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

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

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

            .bonus-card, .game-category, .feature-item, .provider-card {
                padding: 1.5rem;
            }

            .toc-list {
                grid-template-columns: 1fr;
            }

            .btn {
                padding: 0.875rem 1.75rem;
                font-size: 1rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.25rem;
            }
        }