/* VIP Club Premium Styles */

.vip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.vip-hero {
    background: linear-gradient(135deg, #15171e 0%, #1c1f28 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vip-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.vip-hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.vip-current-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--color-accent-gold);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.vip-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #7a8194);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vip-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 500px;
}

.vip-progress-section {
    margin-top: 2rem;
}

.vip-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.vip-next-tier {
    color: var(--color-accent-gold);
}

.vip-progress-bar-container {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.vip-progress-bar-fill {
    height: 100%;
    background: var(--gradient-gold);
    width: 0%;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(245, 166, 35, 0.5);
}

.vip-image-container {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.vip-hero-image {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(245, 166, 35, 0.2));
}

/* Tier Cards */
.vip-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tier-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.tier-card.active {
    border-color: var(--color-accent-gold);
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.05) 0%, rgba(21, 23, 30, 1) 100%);
}

.tier-card.locked {
    opacity: 0.7;
}

.tier-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.tier-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.tier-requirement {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tier-benefit-item {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tier-benefit-item::before {
    content: '✓';
    color: var(--color-accent-green);
    font-weight: 900;
}

/* Specific Tier Colors */
.tier-bronze .tier-name { color: #cd7f32; }
.tier-silver .tier-name { color: #c0c0c0; }
.tier-gold .tier-name { color: #ffd700; }
.tier-platinum .tier-name { color: #e5e4e2; }
.tier-diamond .tier-name { color: #b9f2ff; }

/* Rewards Section */
.vip-rewards-section {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.rewards-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.reward-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reward-icon-box {
    width: 64px;
    height: 64px;
    background: var(--color-surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.reward-info h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.reward-info p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .vip-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .vip-hero-image {
        width: 180px;
        margin-top: 2rem;
    }
    
    .vip-title {
        font-size: 2rem;
    }
}
