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

        .hero-section::before {
            content: '';
            position: absolute;
            top: -5%;
            right: -3%;
            width: 40%;
            height: 120%;
            background: radial-gradient(circle, rgba(5, 191, 219, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -5%;
            left: -3%;
            width: 35%;
            height: 110%;
            background: radial-gradient(circle, rgba(255, 217, 61, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

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

        .hero-section h1 {
            color: white;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            margin-bottom: 2rem;
        }

        .hero-content p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
            max-width: 900px;
        }

        .table-of-contents {
            padding: 4rem 0;
            background: white;
        }

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

        .toc-list li a {
            display: block;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(5, 191, 219, 0.05) 0%, rgba(8, 131, 149, 0.05) 100%);
            border-radius: 16px;
            color: var(--primary);
            font-weight: 600;
            border-left: 4px solid var(--accent);
            transition: all 0.3s ease;
        }

        .toc-list li a:hover {
            transform: translateX(8px);
            background: linear-gradient(135deg, rgba(5, 191, 219, 0.1) 0%, rgba(8, 131, 149, 0.1) 100%);
            box-shadow: var(--shadow-md);
        }

        .login-access, .gaming-categories, .bonus-programs, .strategies, .software-providers, .faq {
            padding: 5rem 0;
            position: relative;
        }

        .login-access {
            background: linear-gradient(to bottom, white 0%, #F8F9FA 100%);
        }

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

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

        .timeline-item::after {
            content: '';
            position: absolute;
            left: -6px;
            top: 0;
            width: 16px;
            height: 16px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 0 4px white, 0 0 0 8px var(--accent);
        }

        .gaming-categories {
            background: white;
        }

        .game-category-card {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            margin-bottom: 2.5rem;
            border-top: 4px solid var(--accent);
        }

        .game-category-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .bonus-programs {
            background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
        }

        .bonus-section {
            background: white;
            border-radius: 24px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .bonus-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 217, 61, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .strategies {
            background: white;
        }

        .accordion-item {
            background: white;
            border-radius: 16px;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            border: 1px solid rgba(5, 191, 219, 0.1);
        }

        .accordion-header {
            padding: 1.75rem 2.5rem 1.75rem 2rem;
            cursor: pointer;
            position: relative;
            margin: 0;
            transition: all 0.3s ease;
            font-size: 1.5rem;
        }

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

        .accordion-item.active .accordion-header {
            background: linear-gradient(135deg, rgba(5, 191, 219, 0.05) 0%, rgba(8, 131, 149, 0.05) 100%);
        }

        .accordion-item.active .accordion-header::after {
            content: '−';
            transform: translateY(-50%) rotate(180deg);
        }

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

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

        .software-providers {
            background: linear-gradient(to bottom, #F8F9FA 0%, white 100%);
        }

        .provider-section {
            margin-bottom: 4rem;
        }

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

        .icon-grid li {
            background: white;
            padding: 1.25rem;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border-left: 3px solid var(--accent);
        }

        .icon-grid li:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .faq {
            background: white;
        }

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

            .login-access, .gaming-categories, .bonus-programs, .strategies, .software-providers, .faq {
                padding: 3rem 0;
            }

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

            .bonus-section {
                padding: 2rem;
            }

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

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

            h1 {
                margin-bottom: 1.5rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

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

            .login-access, .gaming-categories, .bonus-programs, .strategies, .software-providers, .faq {
                padding: 2.5rem 0;
            }

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

            .card, .game-category-card, .bonus-section {
                padding: 1.75rem;
            }

            .accordion-header {
                padding: 1.25rem 3rem 1.25rem 1.25rem;
                font-size: 1.125rem;
            }

            .accordion-body {
                padding: 0 1.25rem;
            }

            .accordion-item.active .accordion-body {
                padding: 0 1.25rem 1.5rem;
            }

            .icon-grid ul {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 479px) {
            .container {
                padding: 0 1rem;
            }

            .hero-section::before, .hero-section::after {
                display: none;
            }

            .card, .game-category-card, .bonus-section {
                padding: 1.5rem;
            }

            .highlight-box, .feature-list, .feature-block, .stats-grid, .numbered-list, .highlight-list, .promo-block, .checklist, .comparison-table {
                padding: 1.25rem;
            }
        }