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

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

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

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 60%;
            height: 80%;
            background: radial-gradient(circle, rgba(8, 217, 214, 0.1) 0%, transparent 70%);
            animation: pulse 10s ease-in-out infinite reverse;
        }

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

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

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

        .hero-section p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-section .cta-button {
            animation: fadeInUp 1s ease 0.4s backwards;
            font-size: 1.25rem;
            padding: 18px 50px;
        }

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

        .table-of-contents {
            background: var(--dark-navy);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
        }

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

        .toc-list li {
            background: rgba(255, 46, 99, 0.05);
            border-left: 3px solid var(--primary);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .toc-list li:hover {
            background: rgba(255, 46, 99, 0.1);
            transform: translateX(5px);
        }

        .toc-list a {
            color: #E8E8E8;
            font-weight: 500;
        }

        .timeline {
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--gradient-primary);
        }

        .timeline-item {
            position: relative;
            padding-left: 100px;
            margin-bottom: 4rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 41px;
            top: 0;
            width: 20px;
            height: 20px;
            background: var(--primary);
            border-radius: 50%;
            border: 4px solid var(--dark);
            box-shadow: var(--shadow-glow);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--dark-navy);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            border: 1px solid rgba(8, 217, 214, 0.2);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-secondary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .game-category {
            margin-bottom: 4rem;
            padding: 3rem;
            background: rgba(21, 27, 59, 0.5);
            border-radius: 20px;
            border: 1px solid rgba(255, 46, 99, 0.1);
        }

        .cards-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .advantage-card {
            background: var(--dark-navy);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 46, 99, 0.1);
            position: relative;
        }

        .advantage-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 46, 99, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .advantage-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .advantage-card:hover::after {
            opacity: 1;
        }

        .support-block {
            margin-bottom: 3rem;
            padding: 2.5rem;
            background: rgba(21, 27, 59, 0.5);
            border-radius: 16px;
            border-left: 4px solid var(--secondary);
        }

        .provider-info {
            margin-bottom: 3rem;
            padding: 2.5rem;
            background: var(--dark-navy);
            border-radius: 16px;
        }

        .accordion-item {
            margin-bottom: 1.5rem;
            background: var(--dark-navy);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 46, 99, 0.1);
        }

        .accordion-header {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            background: rgba(255, 46, 99, 0.05);
        }

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

        .accordion-header:hover {
            background: rgba(255, 46, 99, 0.1);
        }

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

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

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

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

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(8, 217, 214, 0.15) 0%, transparent 70%);
        }

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

        .cta-section h2 {
            margin-bottom: 1.5rem;
        }

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

        .cta-section .btn-primary {
            font-size: 1.25rem;
            padding: 20px 60px;
        }

        @media (max-width: 1200px) {
            .feature-grid, .cards-wrapper {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

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

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            h3 {
                font-size: 1.5rem;
            }

            p {
                font-size: 1rem;
            }

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

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

            .btn {
                padding: 14px 30px;
                font-size: 1rem;
                min-width: unset;
            }

            .card {
                padding: 1.5rem;
            }

            .table-of-contents {
                padding: 2rem 1.5rem;
            }

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

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                padding-left: 60px;
            }

            .timeline-item::before {
                left: 11px;
            }

            .feature-grid, .cards-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .game-category, .support-block, .provider-info {
                padding: 1.5rem;
            }

            .advantage-card {
                padding: 1.5rem;
            }

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

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

            .accordion-item.active .accordion-body {
                padding: 0 1.5rem 0.5rem 1.5rem !important;
            }

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

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

            .cta-section .btn-primary {
                font-size: 1.125rem;
                padding: 16px 40px;
            }
        }

    @media screen and (max-width: 768px) {
        table {
            display: block !important;
            overflow: scroll !important;
        }
    }