/* ========================================
   VIP PROFILE PAGE
   ======================================== */

.vip-profile { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }

/* Hero */
.vip-hero { 
    display: flex; gap: 40px; align-items: center; margin-bottom: 48px;
    background: linear-gradient(135deg, #1a1a2e, #16213e); 
    border-radius: 24px; padding: 48px; color: #fff; position: relative; overflow: hidden;
}
.vip-hero::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 60%);
}
.vip-hero__photo-wrap { flex-shrink: 0; position: relative; z-index: 1; }
.vip-hero__photo {
    width: 180px; height: 180px; border-radius: 50%; object-fit: cover;
    border: 4px solid #FFD700; box-shadow: 0 8px 30px rgba(255,215,0,0.3);
}
.vip-hero__photo-placeholder {
    width: 180px; height: 180px; border-radius: 50%; 
    background: linear-gradient(135deg, #FFD700, #FFA000);
    display: flex; align-items: center; justify-content: center;
    font-size: 72px; color: #fff; border: 4px solid #FFD700;
}
.vip-hero__info { position: relative; z-index: 1; }
.vip-hero__badge { 
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,215,0,0.15); border: 1px solid rgba(255,215,0,0.3);
    border-radius: 20px; padding: 4px 14px; font-size: 12px; font-weight: 600;
    color: #FFD700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.vip-hero__name { 
    font-family: var(--heading-font, 'Jockey One', sans-serif) !important;
    font-size: 42px; font-weight: 800; margin: 0 0 8px; line-height: 1.1;
}
.vip-hero__subtitle { font-size: 18px; color: rgba(255,255,255,0.7); margin: 0 0 16px; }
.vip-hero__bio { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 500px; }
.vip-hero__social { display: flex; gap: 12px; margin-top: 20px; }
.vip-hero__social a {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: #fff; text-decoration: none;
    transition: all 0.3s; font-size: 18px;
}
.vip-hero__social a:hover { background: #FFD700; color: #1a1a2e; transform: translateY(-2px); }

/* Lists Section */
.vip-lists__header { margin-bottom: 24px; }
.vip-lists__title {
    font-family: var(--heading-font, 'Jockey One', sans-serif) !important;
    font-size: 28px; color: #1a1a2e; margin: 0 0 4px;
}
.vip-lists__count { color: #6b7280; font-size: 15px; }

.vip-lists__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

.vip-list-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    border: 1px solid #e5e7eb; transition: all 0.3s; text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
}
.vip-list-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); border-color: #FFD700; }
.vip-list-card__image { width: 100%; height: 180px; object-fit: cover; }
.vip-list-card__image-placeholder {
    width: 100%; height: 180px; background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex; align-items: center; justify-content: center; font-size: 36px;
}
.vip-list-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.vip-list-card__vip-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; font-weight: 600; color: #F57F17;
    background: #FFF8E1; border-radius: 12px; padding: 2px 10px; margin-bottom: 8px; align-self: flex-start;
}
.vip-list-card__title { font-size: 18px; font-weight: 700; color: #1a1a2e; margin: 0 0 8px; line-height: 1.3; }
.vip-list-card__desc { font-size: 13px; color: #6b7280; line-height: 1.5; flex: 1; }
.vip-list-card__stats { display: flex; gap: 16px; margin-top: 12px; padding-top: 12px; border-top: 1px solid #f3f4f6; }
.vip-list-card__stat { font-size: 12px; color: #9ca3af; }
.vip-list-card__stat strong { color: #374151; }

/* Empty state */
.vip-empty { text-align: center; padding: 60px 20px; color: #9ca3af; }
.vip-empty__icon { font-size: 48px; margin-bottom: 12px; }
.vip-empty__text { font-size: 16px; }

@media (max-width: 768px) {
    .vip-hero { flex-direction: column; text-align: center; padding: 32px 24px; }
    .vip-hero__photo { width: 120px; height: 120px; }
    .vip-hero__photo-placeholder { width: 120px; height: 120px; font-size: 48px; }
    .vip-hero__name { font-size: 32px; }
    .vip-hero__bio { max-width: 100%; }
    .vip-hero__social { justify-content: center; }
    .vip-lists__grid { grid-template-columns: 1fr; }
}
