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

        .hero-section {
            padding: 4rem 0 6rem;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -5%;
            right: -5%;
            width: 40%;
            height: 60%;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -5%;
            left: -5%;
            width: 40%;
            height: 60%;
            background: radial-gradient(circle, rgba(255, 0, 107, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
        }

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

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

        .navigation-menu {
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            padding: 3rem 0;
        }

        .navigation-menu h2 {
            text-align: center;
            margin-bottom: 2.5rem;
            font-size: 2rem;
        }

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

        .page-nav .nav-links a {
            display: block;
            padding: 1.25rem 1.75rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 217, 255, 0.1);
            border-radius: 12px;
            color: var(--light);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .page-nav .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0.1;
            transition: left 0.4s ease;
        }

        .page-nav .nav-links a:hover {
            border-color: var(--primary);
            transform: translateX(5px);
        }

        .page-nav .nav-links a:hover::before {
            left: 0;
        }

        .timeline-item,
        .game-category,
        .feature-block,
        .strategy-item,
        .providers-section,
        .technology-section,
        .certification-section,
        .innovation-section {
            margin-bottom: 4rem;
        }

        .timeline-item h3,
        .game-category h3,
        .feature-block h3,
        .strategy-item h3 {
            position: relative;
            padding-left: 2rem;
        }

        .timeline-item h3::before,
        .game-category h3::before,
        .feature-block h3::before,
        .strategy-item h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--gradient-2);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--secondary);
        }

        .steps-list,
        .checklist,
        .feature-list,
        .icon-grid,
        .highlight-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .steps-list li,
        .checklist li,
        .feature-list li,
        .icon-grid li,
        .highlight-list li {
            padding: 1rem 1.5rem;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-left: 3px solid var(--primary);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .steps-list li:hover,
        .checklist li:hover,
        .feature-list li:hover,
        .icon-grid li:hover,
        .highlight-list li:hover {
            background: rgba(0, 217, 255, 0.05);
            transform: translateX(8px);
        }

        .steps-list {
            counter-reset: step-counter;
        }

        .steps-list li {
            counter-increment: step-counter;
            position: relative;
            padding-left: 4rem;
        }

        .steps-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.125rem;
            color: white;
        }

        .cards-grid {
            display: grid;
            gap: 2rem;
            margin: 3rem 0;
        }

        .cards-grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .cards-grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .game-card,
        .provider-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 217, 255, 0.1);
            border-radius: 20px;
            padding: 1.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

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

        .game-card:hover,
        .provider-card:hover {
            transform: translateY(-12px);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .game-card:hover::before,
        .provider-card:hover::before {
            opacity: 1;
        }

        .game-card h4,
        .provider-card h4 {
            margin: 1.5rem 0 1rem;
            color: var(--accent);
        }

        .accordion-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 217, 255, 0.1);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

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

        .accordion-header {
            padding: 1.75rem 3rem 1.75rem 2rem;
            cursor: pointer;
            position: relative;
            margin: 0;
            font-size: 1.5rem;
            color: var(--light);
            transition: all 0.3s ease;
        }

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

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

        .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: 1000px;
            padding: 0 2rem 2rem;
        }

        .cta-section {
            background: var(--gradient-1);
            border-radius: 24px;
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 0 20px;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -2%;
            left: -2%;
            width: 30%;
            height: 30%;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(40px);
        }

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

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-section .btn-primary {
            background: white;
            color: #0066FF;
            font-size: 1.25rem;
            padding: 18px 48px;
        }

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

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

            .hero-section {
                padding: 5rem 0 4rem;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            h3 {
                font-size: 1.5rem;
            }

            .cards-grid-2,
            .cards-grid-3 {
                grid-template-columns: 1fr;
            }

            .page-nav .nav-links {
                grid-template-columns: 1fr;
            }

            .cta-section {
                padding: 3rem 1.5rem;
                margin: 0 10px;
            }

            .steps-list li {
                padding-left: 3.5rem;
            }

            .steps-list li::before {
                left: 0.75rem;
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .cards-grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }