/* 
 * LUMINOUS LOTTERY - Premium UI Design System
 * Focuses on modern glassmorphism, 3D floating animations, and high aesthetics.
 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Premium Color Palette */
    --primary: #5A32FA; /* Vivid Blue-Purple */
    --primary-light: #8E71FF;
    --primary-glow: rgba(90, 50, 250, 0.4);
    --secondary: #FF2E93; /* Hot Pink */
    --secondary-glow: rgba(255, 46, 147, 0.4);
    --tertiary: #FFB01A; /* Gold */
    --tertiary-glow: rgba(255, 176, 26, 0.4);

    --bg-main: #F4F6FB;
    --bg-surface: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.75);
    
    --text-primary: #121420;
    --text-secondary: #4B556D;
    --text-muted: #8A94A6;

    --success: #00D287;
    --error: #FF3B30;
    --warning: #FFB01A;
    
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-round: 9999px;

    --shadow-soft: 0 10px 30px rgba(0,0,0,0.03);
    --shadow-glow: 0 20px 40px var(--primary-glow);
    --glass-blur: blur(20px);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(90, 50, 250, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 46, 147, 0.05), transparent 25%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; }

/* ─── Animations & Keyframes ───────────────────────────── */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(-2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 var(--primary-glow); }
    70% { box-shadow: 0 0 0 15px rgba(90, 50, 250, 0); }
    100% { box-shadow: 0 0 0 0 rgba(90, 50, 250, 0); }
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 8s ease-in-out infinite; }
.animate-slide { animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ─── Typography ───────────────────────────────────────── */
h1, h2, h3, h4, h5 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.text-gradient-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ─── Buttons ──────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: var(--radius-round);
    font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; overflow: hidden; z-index: 1; text-decoration: none;
}

.btn::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(white, white); opacity: 0; z-index: -1; transition: opacity 0.3s;
}

.btn:hover::before { opacity: 0.1; }
.btn:active { transform: scale(0.96); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-primary:hover {
    box-shadow: 0 15px 30px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white; color: var(--text-primary);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-soft);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

.btn-glass {
    background: rgba(255,255,255,0.7); backdrop-filter: var(--glass-blur);
    color: var(--primary); border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.btn-glass:hover { background: white; }

.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-icon-only { padding: 0.75rem; border-radius: 50%; }
.btn-full { width: 100%; display: flex; }

.btn:disabled { opacity: 0.6; cursor: not-allowed; box-shadow: none; transform: none; }

/* ─── Layout & Navigation ──────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.navbar {
    position: sticky; top: 0; z-index: 100;
    background: var(--bg-glass); backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding: 1rem 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center; color: white;
    box-shadow: 0 8px 16px var(--primary-glow); transform: rotate(-5deg); transition: transform 0.3s;
}
.brand:hover .brand-icon { transform: rotate(5deg) scale(1.05); }
.brand-name { font-weight: 900; font-size: 1.35rem; color: var(--text-primary); letter-spacing: -0.5px; line-height: 1; }
.brand-tagline { font-size: 0.6rem; font-weight: 800; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-link { font-weight: 600; font-size: 0.95rem; color: var(--text-secondary); transition: color 0.2s; position: relative; }
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); }
.nav-link.active::after {
    content:''; position: absolute; bottom: -6px; left: 30%; right: 30%; height: 3px;
    background: var(--primary); border-radius: 4px; border-radius: var(--radius-round);
}

.menu-toggle { display: none; background: none; border: none; font-size: 1.75rem; color: var(--text-primary); padding: 0.5rem; cursor: pointer; }

@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg-surface); padding: 1.5rem; flex-direction: column;
        border-bottom: 1px solid rgba(0,0,0,0.05); box-shadow: var(--shadow-soft);
    }
    .nav-links.show { display: flex; }
    .menu-toggle { display: block; }
}

/* ─── Hero Section ─────────────────────────────────────── */
.hero {
    position: relative; overflow: hidden; padding: 6rem 0 8rem;
    text-align: center;
}
.hero::before {
    content:''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px; background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.3; z-index: -1; border-radius: 50%;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px;
    border-radius: var(--radius-round); background: rgba(255,46,147,0.1);
    color: var(--secondary); font-weight: 800; font-size: 0.85rem; margin-bottom: 1.5rem;
    border: 1px solid rgba(255,46,147,0.2); animation: pulse-glow 3s infinite;
}
.hero h1 { font-size: 4.5rem; letter-spacing: -2px; margin-bottom: 1.5rem; }
.hero p { font-size: 1.25rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 2.5rem; }

.hero-assets {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: -1;
}
.hero-asset { position: absolute; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15)); }

/* ─── Dashboard App Layout ─────────────────────────────── */
.app-layout {
    display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 80px); max-width: 1400px; margin: 0 auto;
}
.app-sidebar {
    padding: 2rem 1.5rem; border-right: 1px solid rgba(0,0,0,0.05); display: flex; flex-direction: column;
}
.sidebar-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-link {
    display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem;
    border-radius: var(--radius); color: var(--text-secondary); font-weight: 600; font-size: 0.95rem;
    transition: all 0.3s; margin-bottom: 4px;
}
.sidebar-link span.material-symbols-outlined { font-size: 1.5rem; opacity: 0.7; transition: transform 0.3s; }
.sidebar-link:hover { background: rgba(90,50,250,0.04); color: var(--primary); }
.sidebar-link:hover span.material-symbols-outlined { transform: scale(1.1); opacity: 1; }
.sidebar-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; box-shadow: 0 8px 20px var(--primary-glow);
}
.sidebar-link.active span.material-symbols-outlined { opacity: 1; }
.sidebar-bottom { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.05); }

.app-main { padding: 2.5rem; overflow-x: hidden; }

@media (max-width: 1024px) {
    .app-layout { grid-template-columns: 1fr; }
    .app-sidebar { display: none; }
    .app-main { padding: 1.5rem 1rem; padding-bottom: 6rem; }
}

/* ─── Bottom Navigation (Mobile) ───────────────────────── */
.bottom-nav {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.9); backdrop-filter: var(--glass-blur); border-top: 1px solid rgba(0,0,0,0.05);
    padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
}
.bottom-nav-links { display: flex; justify-content: space-around; align-items: center; }
.bottom-nav-link {
    display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0.5rem;
    color: var(--text-muted); text-decoration: none; font-size: 0.65rem; font-weight: 700; transition: color 0.2s;
}
.bottom-nav-link span { font-size: 1.5rem; margin-bottom: 2px; }
.bottom-nav-link.active { color: var(--primary); }

@media (max-width: 1024px) { .bottom-nav { display: block; } }

/* ─── Cards & Containers ───────────────────────────────── */
.card {
    background: var(--bg-surface); border-radius: var(--radius-lg); padding: 1.5rem;
    box-shadow: var(--shadow-soft); border: 1px solid rgba(255,255,255,0.8);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Glassmorphic Premium Draw Card */
.draw-card {
    background: rgba(255, 255, 255, 0.6); backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg); border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 1.5rem; box-shadow: var(--shadow-soft);
    display: flex; flex-direction: column; position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.draw-card::before {
    content:''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%); z-index: 0; pointer-events: none;
}
.draw-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: white; }

/* Premium Ticket Colors */
.ticket-premium {
    background: linear-gradient(135deg, #FF2E93 0%, #FF8C00 100%);
    border: none; box-shadow: 0 15px 35px rgba(255,46,147,0.3);
}
.ticket-premium::before {
    content:''; position: absolute; top:0; left:0; right:0; bottom:0;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.draw-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; position: relative; z-index: 1; }
.draw-card-body { flex: 1; position: relative; z-index: 1; }
.draw-card-body h4 { font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.draw-card-body p { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 1.25rem; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.draw-card-prize {
    background: linear-gradient(135deg, var(--bg-surface), #f9fafc);
    border-radius: var(--radius); padding: 1rem; text-align: center; border: 1px solid rgba(0,0,0,0.03); margin-bottom: 1rem;
}
.prize-label { font-size: 0.75rem; font-weight: 800; color: var(--tertiary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.prize-amount { font-size: 2rem; font-weight: 900; color: var(--text-primary); letter-spacing: -1px; }

.draw-card-meta { display: flex; justify-content: space-between; font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.draw-card-footer { margin-top: auto; position: relative; z-index: 1; }

.draws-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }

/* ─── Stats & Wallet Cards ─────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.stat-card {
    background: var(--bg-surface); border-radius: var(--radius-lg); padding: 1.5rem;
    box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 1.25rem; position: relative; overflow: hidden;
}
.stat-card::after { content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4)); transform: skewX(-20deg) translateX(150px); transition: 0.5s; }
.stat-card:hover::after { transform: skewX(-20deg) translateX(-150px); }

.stat-icon {
    width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.stat-icon.blue { background: rgba(90,50,250,0.1); color: var(--primary); }
.stat-icon.pink { background: rgba(255,46,147,0.1); color: var(--secondary); }
.stat-icon.gold { background: rgba(255,176,26,0.1); color: var(--tertiary); }
.stat-info h5 { letter-spacing: 0.5px; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 0.25rem; }
.stat-info h3 { font-size: 1.75rem; color: var(--text-primary); letter-spacing: -0.5px; }

.wallet-card {
    background: linear-gradient(135deg, var(--primary) 0%, #3010b0 100%);
    border-radius: var(--radius-lg); padding: 2rem; color: white; position: relative; overflow: hidden;
    box-shadow: 0 15px 35px var(--primary-glow);
}
.wallet-card::before {
    content:''; position: absolute; top:-50px; right:-50px; width:150px; height:150px;
    background: rgba(255,255,255,0.1); border-radius: 50%;
}
.wallet-label { font-size: 0.875rem; font-weight: 600; opacity: 0.8; margin-bottom: 0.5rem; }
.wallet-balance { font-size: 3rem; font-weight: 900; letter-spacing: -1px; margin-bottom: 2rem; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.wallet-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Tables ───────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.data-table th { padding: 1rem; text-align: left; font-size: 0.75rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.data-table td { padding: 1rem; font-size: 0.9rem; border-bottom: 1px solid rgba(0,0,0,0.03); vertical-align: middle; }
.data-table tr:hover td { background: rgba(0,0,0,0.01); }
.data-table tr:last-child td { border-bottom: none; }
.empty-state { text-align: center; color: var(--text-muted); padding: 3rem !important; font-weight: 600; }

/* ─── Forms ────────────────────────────────────────────── */
.input-group { margin-bottom: 1.25rem; text-align: left; }
.input-group label { display: block; font-size: 0.8125rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 0.5rem; }
.input-field {
    width: 100%; padding: 0.875rem 1.25rem; background: var(--bg-surface);
    border: 2px solid rgba(0,0,0,0.08); border-radius: var(--radius);
    font-size: 1rem; font-weight: 500; color: var(--text-primary); transition: all 0.3s;
}
.input-field:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); }
.input-field::placeholder { color: var(--text-muted); font-weight: 400; }

/* ─── Badges ───────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: var(--radius-round); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-active { background: rgba(0, 210, 135, 0.1); color: var(--success); }
.badge-upcoming { background: rgba(90, 50, 250, 0.1); color: var(--primary); }
.badge-locked { background: rgba(255, 176, 26, 0.1); color: var(--warning); }
.badge-completed { background: rgba(138, 148, 166, 0.1); color: var(--text-muted); }

/* ─── Toasts & Loaders ─────────────────────────────────── */
.toast {
    position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--text-primary); color: white; padding: 1rem 1.5rem; border-radius: var(--radius-round);
    font-weight: 600; font-size: 0.9rem; z-index: 9999; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    opacity: 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }
.toast.info { background: var(--primary); }

.loader {
    width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3); border-radius: 50%;
    border-top-color: white; animation: spin 1s ease-in-out infinite; display: inline-block; vertical-align: middle;
}

/* Skeleton Loading */
.skeleton { background: linear-gradient(90deg, #f0f2f5 25%, #f8f9fa 50%, #f0f2f5 75%); background-size: 200% 100%; animation: loading 1.5s infinite; border-radius: var(--radius); }
@keyframes loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ─── Slider for Dashboard & Index ─────────────────────── */
.slider-container {
    width: 100%; position: relative; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 2rem;
    box-shadow: var(--shadow-glow);
}
.slider { display: flex; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); height: 100%; }
.slide { 
    min-width: 100%; position: relative; display: flex; align-items: center; justify-content: space-between; 
    padding: 3.5rem 4rem; color: white; overflow: hidden; height: 100%; 
}
.slide-content { position: relative; z-index: 2; max-width: 55%; }
.slide-content h2 { font-size: 3rem; margin-bottom: 1rem; line-height: 1.1; }
.slide-content p { font-size: 1.125rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 90%; }
.slide-image { 
    position: absolute; right: 5%; top: 50%; transform: translateY(-50%); 
    width: 45%; max-width: 420px; z-index: 1; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
}
.slide-bg-shape {
    position: absolute; inset: 0; background: radial-gradient(circle at right, var(--primary-glow), transparent); 
    opacity: 0.6; pointer-events: none;
}

/* Slide Gradients */
.slide-1 { background: linear-gradient(135deg, #121420 0%, #1e2235 100%); }
.slide-2 { background: linear-gradient(135deg, #5A32FA 0%, #FF2E93 100%); }
.slide-3 { background: linear-gradient(135deg, #FFB01A 0%, #FF2E93 100%); }

.slider-nav { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: all 0.3s; padding: 0; }
.slider-dot.active { background: white; width: 24px; border-radius: 12px; }

@media (max-width: 768px) {
    .slide { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; justify-content: flex-start; }
    .slide-content { max-width: 100%; z-index: 3; }
    .slide-content h2 { font-size: 2.25rem; }
    .slide-image { right: auto; left: 50%; top: auto; bottom: -20px; transform: translateX(-50%); width: 260px; z-index: 1; }
}

/* User Settings Area */
.user-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; }

/* ─── Celebration Popup ─────────────────────────────────── */
.celebration-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center; z-index: 99999;
    animation: fadeIn 0.3s forwards;
}
.celebration-modal {
    background: white; border-radius: var(--radius-lg); padding: 3rem 2rem;
    text-align: center; max-width: 400px; width: 90%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2); position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f4f6fb 100%);
}
.celeb-icon { font-size: 5rem; margin-bottom: 1rem; animation: bounce 2s infinite; }
.celebration-modal h2 { font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; letter-spacing: -1px; }
.celeb-ticket {
    background: linear-gradient(135deg, var(--tertiary), #FF8C00);
    color: white; padding: 1rem; border-radius: var(--radius); margin: 1.5rem auto 0;
    max-width: 250px; font-weight: 800; font-size: 1.25rem; font-family: monospace;
    box-shadow: 0 10px 20px rgba(255,176,26,0.3); border: 2px dashed rgba(255,255,255,0.5);
}
.celeb-ticket span { display: block; font-size: 1.75rem; letter-spacing: 2px; }

/* Confetti */
.confetti {
    position: fixed; top: -10px; width: 10px; height: 20px; z-index: 100000;
    animation: fall linear forwards;
}
@keyframes fall {
    to { transform: translateY(110vh) rotate(720deg); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes bounce { 
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
