@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

.heading-font {
    font-family: 'Exo 2', sans-serif;
    letter-spacing: -0.01em;
}

.hero-bg {
    background: linear-gradient(135deg, #060B2D 0%, #0D1450 55%, #1A0F5C 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(123, 77, 255, 0.22) 0%, rgba(79, 107, 255, 0.12) 35%, 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(91, 57, 246, 0.35);
}

.game-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #12194A 0%, #0E143D 100%);
    border: 1px solid rgba(123, 77, 255, 0.35);
    border-radius: 12px;
}

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

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

.game-card:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(91, 57, 246, 0.32);
    border-color: rgba(169, 140, 255, 0.8);
}

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

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

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

.promotion-table tr:nth-child(odd) {
    background-color: rgba(123, 77, 255, 0.06);
}

.promotion-table tr:hover {
    background-color: rgba(79, 107, 255, 0.12);
    transition: 0.2s;
}

.review-card {
    background: linear-gradient(135deg, rgba(123, 77, 255, 0.08) 0%, rgba(79, 107, 255, 0.08) 100%);
    border: 1px solid rgba(123, 77, 255, 0.28);
    border-radius: 12px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(123, 77, 255, 0.18) 0%, rgba(79, 107, 255, 0.16) 100%);
    border: 2px solid rgba(123, 77, 255, 0.35);
    font-size: 32px;
    color: #C2B1FF;
    box-shadow: 0 0 20px rgba(91, 57, 246, 0.15);
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5B39F6 0%, #8B63FF 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(91, 57, 246, 0.35);
}

.winner-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, #4F6BFF, #7B4DFF);
    color: #FFFFFF;
    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.06);
    border: 1px solid rgba(123, 77, 255, 0.35);
    font-size: 24px;
    color: #C2B1FF;
}

.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.04);
    border: 1px solid rgba(123, 77, 255, 0.24);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #E8ECFF;
    transition: all 0.3s ease;
}

.provider-badge:hover {
    background: rgba(123, 77, 255, 0.14);
    border-color: rgba(123, 77, 255, 0.55);
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(91, 57, 246, 0.18);
}

.faq-item {
    border: 1px solid rgba(123, 77, 255, 0.25);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(18, 25, 74, 0.65);
}

.faq-item:hover {
    border-color: rgba(123, 77, 255, 0.55);
    background: rgba(123, 77, 255, 0.08);
}

.faq-answer {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(123, 77, 255, 0.22);
    color: rgba(232, 236, 255, 0.75);
    line-height: 1.6;
}

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

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

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

.btn-primary {
    background: linear-gradient(135deg, #5B39F6 0%, #7B4DFF 55%, #4F6BFF 100%);
    color: #FFFFFF;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    border: 1px solid rgba(169, 140, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 12px 24px rgba(91, 57, 246, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(91, 57, 246, 0.38);
    border-color: rgba(194, 177, 255, 0.6);
}

.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(91, 57, 246, 0.14);
    box-shadow: inset 0 0 0 1px rgba(123, 77, 255, 0.25);
    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(123, 77, 255, 0.22);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, rgba(18, 25, 74, 0.78) 0%, rgba(10, 16, 54, 0.88) 100%);
}

.vip-tier:hover {
    border-color: rgba(123, 77, 255, 0.65);
    background: rgba(123, 77, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(91, 57, 246, 0.22);
}

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