        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Poppins:wght@400;500;600;700&display=swap');
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
        .heading-font {
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.02em;
        }

        .hero-bg {
            background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(249, 194, 13, 0.1) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) translateX(0px); }
            50% { transform: translateY(-30px) translateX(20px); }
        }

        .card-hover {
            transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
        }
        
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px -12px rgba(249, 194, 13, 0.2);
        }

        .game-card {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s;
        }

        .game-card:hover::before {
            left: 100%;
        }

        .game-card:hover {
            transform: scale(1.08);
            box-shadow: 0 20px 40px rgba(249, 194, 13, 0.3);
        }

        .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 16px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60%;
            height: 4px;
            background: linear-gradient(90deg, #f9c20d, #fcd34d);
            border-radius: 2px;
        }

        .gradient-text {
            background: linear-gradient(135deg, #f9c20d 0%, #fcd34d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .promotion-table tr:nth-child(odd) {
            background-color: rgba(249, 194, 13, 0.05);
        }

        .promotion-table tr:hover {
            background-color: rgba(249, 194, 13, 0.1);
            transition: 0.2s;
        }

        .review-card {
            background: linear-gradient(135deg, rgba(249, 194, 13, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
            border: 1px solid rgba(249, 194, 13, 0.2);
        }

        .feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(249, 194, 13, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
            border: 2px solid rgba(249, 194, 13, 0.3);
            font-size: 32px;
        }

        .step-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f9c20d 0%, #fcd34d 100%);
            color: #000;
            font-weight: 700;
            font-size: 24px;
        }

        .winner-badge {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 4px;
            background: linear-gradient(90deg, #10b981, #34d399);
            font-size: 11px;
            font-weight: 600;
        }

        .payment-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(249, 194, 13, 0.3);
            font-size: 24px;
        }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 12px;
        }

        .provider-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(249, 194, 13, 0.2);
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .provider-badge:hover {
            background: rgba(249, 194, 13, 0.15);
            border-color: rgba(249, 194, 13, 0.5);
            transform: translateY(-4px);
        }

        .faq-item {
            border: 1px solid rgba(249, 194, 13, 0.2);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(249, 194, 13, 0.5);
            background: rgba(249, 194, 13, 0.05);
        }

        .faq-answer {
            display: none;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(249, 194, 13, 0.2);
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-icon {
            transition: transform 0.3s ease;
            float: right;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .btn-primary {
            background: linear-gradient(135deg, #f9c20d 0%, #fcd34d 100%);
            color: #000;
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(249, 194, 13, 0.3);
        }

        .btn-primary:active {
            transform: translateY(0);
        }
       .winner-row-enter {
    opacity: 0;
    transform: translateY(-10px);
}

.winner-row-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.winner-row-highlight {
    background: rgba(250, 204, 21, 0.12);
    box-shadow: inset 0 0 0 1px rgba(250, 204, 21, 0.2);
    transition: background 0.6s ease, box-shadow 0.6s ease;
}

        @media (max-width: 640px) {
            .hero-bg::before {
                width: 300px;
                height: 300px;
                top: -40%;
                right: -20%;
            }

            .section-title {
                font-size: 24px;
            }

            .section-title::after {
                width: 40%;
            }

            .provider-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }
        }

        .vip-tier {
            position: relative;
            padding: 24px;
            border: 2px solid rgba(249, 194, 13, 0.2);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .vip-tier:hover {
            border-color: rgba(249, 194, 13, 0.6);
            background: rgba(249, 194, 13, 0.05);
            transform: translateY(-8px);
        }

        .vip-icon {
            font-size: 40px;
            margin-bottom: 12px;
        }