.hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 100px;
            background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.15), transparent 70%),
                        radial-gradient(ellipse at bottom right, rgba(255, 0, 107, 0.1), transparent 60%);
            position: relative;
            overflow: hidden;
        }

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

        .hero-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0);
            }
            50% {
                transform: translate(-100px, 100px);
            }
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            text-align: center;
        }

        .hero-section h1 {
            margin-bottom: 32px;
        }

        .hero-section p {
            font-size: 20px;
            max-width: 900px;
            margin: 0 auto 48px;
            color: rgba(248, 249, 255, 0.8);
        }

        .overview {
            background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.03));
        }

        .comparison-table table {
            margin-top: 40px;
        }

        .steps-list article {
            margin-bottom: 48px;
        }

        .steps-list h3 {
            margin-top: 40px;
        }

        .feature-blocks article {
            margin-bottom: 56px;
        }

        .cards-grid-3 {
            background: radial-gradient(ellipse at center, rgba(255, 0, 107, 0.05), transparent 70%);
        }

        .cards-grid-3 .container > p {
            margin-bottom: 64px;
        }

        .cards-grid-3 > .container > article:not(.game-card) {
            margin-top: 64px;
        }

        .game-card,
        .provider-card {
            margin-bottom: 32px;
        }

        .highlight-boxes {
            background: linear-gradient(180deg, rgba(0, 212, 255, 0.03), transparent);
        }

        .highlight-box {
            background: var(--dark-blue);
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 32px;
            border: 1px solid rgba(0, 212, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-2);
            transform: scaleY(0);
            transition: transform 0.4s ease;
            transform-origin: top;
        }

        .highlight-box:hover {
            transform: translateX(8px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .highlight-box:hover::before {
            transform: scaleY(1);
        }

        .feature-list article {
            margin-bottom: 48px;
        }

        .cta-section {
            background: var(--gradient-1);
            text-align: center;
            padding: 120px 20px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            display: none;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 50%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

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

        .cta-section h2 {
            color: white;
            margin-bottom: 24px;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 22px;
            margin-bottom: 48px;
        }

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

        .cta-section .btn-primary:hover {
            background: var(--light);
            color: var(--dark);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
        }

        @media (min-width: 768px) {
            .game-card,
            .provider-card {
                display: flex;
                flex-direction: column;
            }
        }

        @media (min-width: 992px) {
            .cards-grid-3 .container {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
                align-items: start;
            }

            .cards-grid-3 .container > h2,
            .cards-grid-3 .container > p,
            .cards-grid-3 .container > article:not(.game-card) {
                grid-column: 1 / -1;
            }

            .cards-grid-2 .container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
                align-items: start;
            }

            .cards-grid-2 .container > h2,
            .cards-grid-2 .container > p,
            .cards-grid-2 .container > article:not(.provider-card) {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 991px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 110px;
                left: 0;
                width: 100%;
                flex-direction: column;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                padding: 32px 20px;
                gap: 24px;
                transform: translateX(-100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: var(--shadow-lg);
            }

            .nav-menu.active {
                transform: translateX(0);
            }

            header .container {
                flex-wrap: wrap;
            }

            header .cta-button {
                width: 100%;
                text-align: center;
                order: 3;
            }

            nav {
                order: 2;
            }

            .logo {
                order: 1;
            }
        }

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

            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 32px;
            }

            h3 {
                font-size: 24px;
            }

            p {
                font-size: 16px;
            }

            .btn-primary {
                padding: 16px 36px;
                font-size: 16px;
            }

            .card {
                padding: 24px;
            }

            th, td {
                padding: 12px;
                font-size: 14px;
            }

            .accordion-header {
                padding: 20px;
                font-size: 18px;
            }

            .accordion-body p {
                padding: 0 20px 20px;
                font-size: 16px;
            }

            .hero-section {
                min-height: auto;
                padding: 120px 0 60px;
            }

            .footer-nav ul {
                flex-direction: column;
                gap: 16px;
            }

            .highlight-box {
                padding: 28px;
            }

            .cta-section {
                padding: 80px 20px;
            }
        }