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

        .hero-section {
            padding: 6rem 0 4rem;
            background: radial-gradient(ellipse at top, rgba(0, 217, 255, 0.15) 0%, transparent 60%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 0, 107, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-30px) scale(1.1); }
        }

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

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

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

        .quick-links {
            background: var(--dark-alt);
            padding: 3rem 0;
        }

        .quick-links .container {
            padding: 0 20px;
        }

        .anchor-nav ul {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            list-style: none;
            padding: 0;
            width: 100%;
        }

        .anchor-nav a {
            display: block;
            padding: 1.25rem 1.5rem;
            background: var(--dark);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 12px;
            color: var(--light);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .anchor-nav a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-1);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .anchor-nav a:hover {
            background: rgba(0, 217, 255, 0.05);
            border-color: var(--primary);
            transform: translateX(8px);
        }

        .anchor-nav a:hover::before {
            transform: scaleY(1);
        }

        .steps-list {
            counter-reset: step-counter;
            list-style: none;
            padding: 0;
        }

        .steps-list li {
            counter-increment: step-counter;
            position: relative;
            padding-left: 4rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
        }

        .steps-list li:last-child {
            border-bottom: none;
        }

        .steps-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            box-shadow: var(--shadow-neon);
        }

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

        .cards-grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .game-card {
            background: var(--dark-alt);
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.4s ease;
            border: 1px solid rgba(0, 217, 255, 0.1);
        }

        .game-card .content-image img {
            max-width: 60%;
            width: auto;
            margin: 0 auto;
        }

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

        .advantage-card {
            background: var(--dark-alt);
            border: 1px solid rgba(0, 217, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .advantage-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-2);
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(255, 0, 107, 0.05) 100%);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-1);
            border-radius: 16px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .highlight-box:hover::before {
            opacity: 0.2;
        }

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

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

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

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

        .accordion-header:hover {
            background: rgba(0, 217, 255, 0.05);
        }

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

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

        .cta-section {
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 0, 107, 0.1) 100%);
            text-align: center;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(100px);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.2); }
        }

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

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

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

        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
            margin: 3rem 0;
            width: 100%;
        }

        .trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1.5rem;
            background: var(--dark-alt);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 12px;
            flex: 1;
            min-width: 200px;
            transition: all 0.3s ease;
        }

        .trust-badge:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
        }

        .trust-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--dark);
            font-weight: 700;
        }

        @media (max-width: 767px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.35rem;
            }

            section {
                padding: 3rem 0;
            }

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

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

            .btn {
                padding: 14px 28px;
                font-size: 0.95rem;
            }

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

            .steps-list li::before {
                width: 40px;
                height: 40px;
                font-size: 1.25rem;
            }

            table {
                font-size: 0.85rem;
            }

            table th,
            table td {
                padding: 0.75rem 0.5rem;
            }

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

            .advantage-card,
            .highlight-box {
                padding: 1.5rem;
            }
        }

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

            .anchor-nav ul {
                grid-template-columns: repeat(2, 1fr);
            }
        }