/* ==========================================================================
   TikNovel - VIP Module Styles (TikTok & FeelAI Luxury Gold Style)
   ========================================================================== */

/* VIP Package Card */
.gdwp-vip-card {
    background: rgba(12, 16, 28, 0.85);
    border-radius: var(--gdwp-radius-xl, 24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    color: #ffffff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.gdwp-vip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    border-color: rgba(245, 158, 11, 0.5);
}

/* Highlight Card (Recommended) */
.gdwp-vip-card.featured {
    border: 2px solid #f59e0b !important;
    box-shadow: var(--gold-glow) !important;
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.15) 0%, rgba(12, 16, 28, 0.95) 100%) !important;
    transform: scale(1.03);
}

.gdwp-vip-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.gdwp-vip-card.featured::before {
    content: attr(data-badge-text);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000000;
    padding: 4px 16px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--gold-glow);
}

/* Price */
.gdwp-vip-price {
    margin: 20px 0;
    padding: 10px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    background: none !important;
    border: none !important;
}

.gdwp-vip-price .price-num {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 3rem;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
}

.gdwp-vip-card.featured .gdwp-vip-price .price-num {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.gdwp-vip-price .price-unit {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}

/* Features List */
.gdwp-vip-features {
    list-style: none;
    padding: 0;
    margin: 20px auto 30px auto;
    text-align: left;
    display: inline-block;
}

.gdwp-vip-features li {
    padding: 8px 0;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.gdwp-vip-features li i {
    color: var(--tik-cyan, #25f4ee);
    margin-right: 10px;
    font-size: 1.05rem;
}

/* Button */
.btn-vip-action {
    background: var(--gold-gradient);
    border: none;
    color: #000000 !important;
    border-radius: 9999px;
    padding: 12px 28px;
    font-weight: 800;
    width: 100%;
    transition: all 0.25s ease;
    box-shadow: var(--gold-glow);
    font-family: var(--font-display, 'Outfit', sans-serif);
}

.btn-vip-action:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.8);
    color: #000000 !important;
}

/* VIP Icon Animation in Header */
.fa-crown.vip-animate {
    animation: vipPulse 2s infinite;
}

@keyframes vipPulse {
    0% { transform: scale(1); color: #f59e0b; }
    50% { transform: scale(1.2); color: #fbbf24; text-shadow: 0 0 10px rgba(251, 191, 36, 0.8); }
    100% { transform: scale(1); color: #f59e0b; }
}


