/* =============================================================
 * MAJESTIC CASINO - VIP CLUB SPECIFIC STYLES
 * ============================================================= */

/* VIP Progress Panel */
.vip-progress-panel {
    background: linear-gradient(135deg, #16191f 0%, #0d0f12 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.vip-progress-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.vip-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.vip-user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vip-crown-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #0d0f12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.vip-user-meta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.vip-user-meta p {
    color: #8a909a;
    font-size: 0.95rem;
}

.vip-user-meta p strong {
    color: #d4af37;
}

/* XP Tracker Bar */
.vip-xp-tracker {
    background: #0d0f12;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.xp-limits-row {
    display: flex;
    justify-content: space-between;
    color: #8a909a;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.xp-limits-row .current-level-name {
    color: #d4af37;
}

.xp-limits-row .next-level-name {
    color: #e5e4e2; /* Silver/Platinum color */
}

.xp-progress-bar-bg {
    height: 12px;
    background: #16191f;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.xp-progress-bar-fill {
    height: 100%;
    width: 68%; /* 3400 / 5000 XP */
    background: linear-gradient(90deg, #aa7c11, #d4af37, #f3e5ab);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: width 1s ease-out;
}

.xp-values-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.xp-values-row .xp-count {
    color: #fff;
    font-weight: 600;
}

.xp-values-row .xp-needed {
    color: #8a909a;
}

/* VIP Rewards Grid */
.vip-rewards-quick-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.vip-quick-card {
    background: rgba(13, 15, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.vip-quick-card .quick-card-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 4px;
}

.vip-quick-card .quick-card-label {
    color: #8a909a;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* VIP Levels Comparison section */
.vip-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.vip-section-subtitle {
    color: #8a909a;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1rem;
}

.vip-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

/* Base Tier Card */
.vip-tier-card {
    background: #16191f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.vip-tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.vip-tier-header {
    padding: 24px;
    text-align: center;
    position: relative;
}

.vip-tier-badge-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #0d0f12;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.vip-tier-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.vip-tier-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.vip-tier-xp-requirement {
    font-size: 0.85rem;
    font-weight: 600;
}

.vip-tier-benefits-list {
    padding: 24px;
    flex-grow: 1;
    background: #0d0f12;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vip-tier-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8a909a;
    font-size: 0.9rem;
}

.vip-tier-benefit-item i {
    color: #d4af37;
    font-size: 0.95rem;
}

.vip-tier-footer {
    padding: 20px 24px;
    background: #0d0f12;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

/* Tier specific skins */
/* BRONZE */
.tier-bronze .vip-tier-header {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.15) 0%, rgba(205, 127, 50, 0.05) 100%);
    border-bottom: 2px solid #cd7f32;
}
.tier-bronze .vip-tier-icon, .tier-bronze h3 {
    color: #cd7f32;
}
.tier-bronze .vip-tier-xp-requirement {
    color: rgba(205, 127, 50, 0.8);
}
.tier-bronze .vip-tier-benefit-item i {
    color: #cd7f32;
}

/* GOLD */
.tier-gold {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}
.tier-gold .vip-tier-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-bottom: 2px solid #d4af37;
}
.tier-gold .vip-tier-icon, .tier-gold h3 {
    color: #d4af37;
}
.tier-gold .vip-tier-xp-requirement {
    color: rgba(212, 175, 55, 0.8);
}

/* PLATINUM */
.tier-platinum .vip-tier-header {
    background: linear-gradient(135deg, rgba(229, 228, 226, 0.15) 0%, rgba(229, 228, 226, 0.05) 100%);
    border-bottom: 2px solid #e5e4e2;
}
.tier-platinum .vip-tier-icon, .tier-platinum h3 {
    color: #e5e4e2;
}
.tier-platinum .vip-tier-xp-requirement {
    color: rgba(229, 228, 226, 0.8);
}
.tier-platinum .vip-tier-benefit-item i {
    color: #e5e4e2;
}

/* DIAMOND */
.tier-diamond {
    border-color: rgba(185, 242, 255, 0.3);
}
.tier-diamond .vip-tier-header {
    background: linear-gradient(135deg, rgba(185, 242, 255, 0.2) 0%, rgba(185, 242, 255, 0.05) 100%);
    border-bottom: 2px solid #b9f2ff;
}
.tier-diamond .vip-tier-icon, .tier-diamond h3 {
    color: #b9f2ff;
    text-shadow: 0 0 10px rgba(185, 242, 255, 0.3);
}
.tier-diamond .vip-tier-xp-requirement {
    color: rgba(185, 242, 255, 0.8);
}
.tier-diamond .vip-tier-benefit-item i {
    color: #b9f2ff;
}

/* VIP Perks Showcase Grid */
.vip-perks-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.vip-perk-card {
    background: #16191f;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.vip-perk-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.vip-perk-icon-box {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.vip-perk-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.vip-perk-details p {
    color: #8a909a;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* FAQ Accordeons for VIP page */
.vip-faq-section {
    background: #16191f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}
