/* ============================================
   BTS CELEBRITY HUB - Premium Design System
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables - Design Tokens */
:root {
    /* Cinematic Monochrome Theme */
    --primary: #ffffff;
    --primary-light: #e2e8f0;
    --primary-dark: #94a3b8;
    --primary-glow: rgba(255, 255, 255, 0.15);

    /* Accent Colors */
    --accent-pink: #EC4899;
    --accent-cyan: #06B6D4;
    --accent-gold: #F59E0B;
    --accent-emerald: #10B981;
    --accent-rose: #F43F5E;

    /* Dark Mode Palette */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --bg-card: rgba(20, 20, 20, 0.8);
    --bg-card-hover: rgba(30, 30, 30, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --text-accent: #ffffff;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
    --border-accent: rgba(255, 255, 255, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ffffff 0%, #d4d4d8 100%);
    --gradient-dark: linear-gradient(135deg, #18181b 0%, #000000 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-emerald: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 30px rgba(255, 255, 255, 0.1);
    --shadow-glow-pink: 0 0 30px rgba(255, 255, 255, 0.1);

    /* Spacing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* SVG Icons */
.inline-icon {
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    vertical-align: -0.2em;
    margin-right: 0.25em;
    flex-shrink: 0;
}
/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Ambient Effects */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    z-index: -1;
    animation: ambientFloat 20s ease-in-out infinite;
}

@keyframes ambientFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-2%, -1%) rotate(1deg); }
    66% { transform: translate(1%, 2%) rotate(-1deg); }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-pink);
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 32px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    margin: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.navbar-brand span {
    opacity: 0.4;
    font-weight: 400;
    font-size: 1rem;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition-base);
    border: 1px solid transparent;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.nav-link.active {
    color: #000;
    background: #fff;
}

.nav-link.logout-link {
    color: var(--accent-rose);
}

.nav-link.logout-link:hover {
    background: rgba(244, 63, 94, 0.1);
    border-color: rgba(244, 63, 94, 0.3);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
    color: #000;
    background: rgba(255,255,255,0.9);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-accent);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.btn-gold {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255,255,255,0.4);
    color: #000;
}

.btn-emerald {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: none;
}

.btn-emerald:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
    color: var(--primary-light);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background: rgba(255, 255, 255, 0.05);
}

.form-error {
    color: var(--accent-rose);
    font-size: 0.8rem;
    margin-top: 6px;
}

.form-helptext {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.card:hover {
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.card-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.card-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
    pointer-events: none;
}

.card-body {
    padding: 24px;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.card-price .currency {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

.card-price .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.card-price .period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.badge-subscribed {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.badge-premium {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

/* ============================================
   LANDING PAGE
   ============================================ */
.landing-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 40px;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    100% { opacity: 0.8; transform: translateX(-50%) scale(1.2); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-accent);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-members {
    display: flex;
    gap: -12px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-member-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-primary);
    margin-left: -12px;
    transition: all var(--transition-base);
    cursor: pointer;
}

.hero-member-avatar:first-child {
    margin-left: 0;
}

.hero-member-avatar:hover {
    transform: scale(1.2) translateY(-4px);
    border-color: var(--primary);
    z-index: 10;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   AUTH PAGES (Login/Signup)
   ============================================ */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 40px;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    border-radius: var(--radius-full);
}

.auth-header {
    text-align: center;
    margin-bottom: 36px;
}

.auth-header .logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-footer a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-container {
    padding: 100px 32px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-header {
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out;
}

.dashboard-header h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.dashboard-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ============================================
   CELEBRITY DETAIL PAGE
   ============================================ */
.celebrity-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin: -40px -32px 40px;
}

.celebrity-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.celebrity-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 32px;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
}

.celebrity-hero-content {
    max-width: 1400px;
    margin: 0 auto;
}

.celebrity-hero h1 {
    font-size: 3rem;
    margin-bottom: 8px;
}

.celebrity-hero .role-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-accent);
}

/* Experience Cards */
.experiences-section {
    max-width: 1400px;
    margin: 0 auto;
}

.experiences-section h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.experiences-section .section-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.experience-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.experience-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.experience-card:hover::before {
    opacity: 1;
}

.experience-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.experience-icon.meet-greet {
    background: rgba(236, 72, 153, 0.15);
    color: var(--accent-pink);
}

.experience-icon.main-meet {
    background: rgba(124, 58, 237, 0.15);
    color: var(--primary-light);
}

.experience-icon.vacation {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
}

.experience-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.experience-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.experience-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.experience-price .currency {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.experience-price .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.experience-paid-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-emerald);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   SECURITY PASS
   ============================================ */
.security-pass-section {
    margin-top: 48px;
}

.security-pass-section h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.passes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.pass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.pass-card-header {
    padding: 24px 24px 16px;
    background: var(--gradient-card);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pass-event-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-accent);
}

.pass-status {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pass-status.active {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
}

.pass-status.used {
    background: rgba(100, 116, 139, 0.15);
    color: var(--text-muted);
}

.pass-card-body {
    padding: 24px;
}

.pass-code {
    font-family: 'Outfit', monospace;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pass-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pass-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pass-detail-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pass-detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pass-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pass-qr-placeholder {
    width: 100%;
    padding: 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px dashed var(--border-light);
}

.pass-qr-box {
    width: 120px;
    height: 120px;
    margin: 0 auto 12px;
    background: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #333;
    padding: 8px;
    word-break: break-all;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-container {
    padding: 100px 24px 40px;
    max-width: 560px;
    margin: 0 auto;
}

.checkout-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.checkout-header {
    padding: 32px;
    background: #111;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}

.checkout-header h2 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.checkout-header p {
    color: var(--text-secondary);
}

.checkout-body {
    padding: 32px;
}

.checkout-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.checkout-celeb-img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.checkout-celeb-info h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.checkout-celeb-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.checkout-total .label {
    font-size: 1.1rem;
    font-weight: 600;
}

.checkout-total .total-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.checkout-features {
    list-style: none;
    margin-bottom: 28px;
}

.checkout-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.checkout-features li::before {
    content: '✓';
    color: var(--accent-emerald);
    font-weight: 700;
}

/* ============================================
   PAYMENT HISTORY
   ============================================ */
.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

.payment-table th {
    text-align: left;
    padding: 16px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: var(--bg-glass);
    border-bottom: 1px solid var(--border-light);
}

.payment-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.payment-table tr:hover td {
    background: var(--bg-glass);
    color: var(--text-primary);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.status-completed {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
}

.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
}

.status-failed {
    background: rgba(244, 63, 94, 0.15);
    color: var(--accent-rose);
}

/* ============================================
   MESSAGES / TOASTS
   ============================================ */
.messages-container {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.message-toast {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    font-size: 0.9rem;
    animation: slideIn 0.4s ease-out, fadeOut 0.4s ease-in 4s forwards;
    cursor: pointer;
}

.message-success {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.message-error {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(244, 63, 94, 0.3);
    border-left: 3px solid var(--accent-rose);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.message-warning {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(245, 158, 11, 0.3);
    border-left: 3px solid var(--accent-gold);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.message-info {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #d4d4d8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; pointer-events: none; }
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-muted);
}

.empty-state .icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.empty-state h3 {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .members-grid,
    .experiences-grid,
    .passes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .dashboard-container {
        padding: 90px 32px 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .navbar-brand {
        font-size: 1.3rem;
        white-space: nowrap;
        text-align: left;
        width: auto;
        display: block;
    }

    .navbar-brand span {
        display: inline-block;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 16px;
        gap: 8px;
    }

    .navbar-links.show-menu {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 16px;
        font-size: 1rem;
    }

    .dashboard-container {
        padding: 110px 16px 24px;
    }

    .members-grid,
    .experiences-grid,
    .passes-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .hero-stats {
        gap: 16px;
        flex-direction: column;
        align-items: center;
        background: rgba(255, 255, 255, 0.03);
        padding: 24px;
        border-radius: var(--radius-lg);
    }
    
    .stat-item {
        width: 100%;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 16px;
        padding-right: 0;
    }
    
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .auth-card {
        padding: 32px 20px;
        margin: 16px;
        width: calc(100% - 32px);
    }

    .celebrity-hero {
        height: 320px;
    }

    .celebrity-hero h1 {
        font-size: 2.2rem;
    }

    .payment-table, .payment-table thead, .payment-table tbody, .payment-table th, .payment-table td, .payment-table tr { 
        display: block; 
    }
    
    .payment-table thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .payment-table tr { border: 1px solid rgba(255,255,255,0.1); margin-bottom: 16px; border-radius: 8px; overflow: hidden; }
    
    .payment-table td { 
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.05); 
        position: relative;
        padding-left: 50% !important; 
        text-align: right !important;
    }
    
    .payment-table td:before { 
        position: absolute;
        top: 16px;
        left: 16px;
        width: 45%; 
        padding-right: 10px; 
        white-space: nowrap;
        text-align: left;
        font-weight: 600;
        color: var(--text-secondary);
        content: attr(data-label);
    }

    .checkout-container {
        padding: 120px 16px 24px;
        flex-direction: column;
    }
    
    .checkout-sidebar {
        position: relative;
        top: 0;
        margin-top: 24px;
        width: 100%;
    }
    
    .tour-section > div {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-left: 0 !important;
    }

    .pass-details {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gradient {
    color: #fff;
}
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
