/* ============================================================
   VERIZONA LOUNGE — Mobile App Styles
   Theme: Deep Blue, White, Black with Gold accents
   ============================================================ */

/* ========== CSS VARIABLES ========== */
:root {
    --blue-deep: #0b1a30;
    --blue-primary: #1a3c6e;
    --blue-accent: #2563eb;
    --blue-light: #3b82f6;
    --blue-surface: #e8f0fe;
    --white: #ffffff;
    --black: #0a0a0a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --red: #ef4444;
    --red-light: #fef2f2;
    --green: #10b981;
    --green-light: #ecfdf5;
    --gold: #c9a54b;
    --gold-light: #fdf8ed;
    --orange: #f59e0b;
    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 18px;
    --radius-xl: 22px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow: 0 4px 14px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
    --shadow-lg: 0 12px 32px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.06);
    --shadow-xl: 0 20px 48px rgba(0,0,0,.18), 0 8px 16px rgba(0,0,0,.08);
    --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --transition: .2s cubic-bezier(.4,0,.2,1);
    --transition-slow: .35s cubic-bezier(.4,0,.2,1);
}

/* ========== RESET ========== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }
html { font-size:16px; scroll-behavior:smooth; overscroll-behavior:none; }
body {
    font-family: var(--font);
    background: var(--gray-100);
    color: var(--gray-900);
    line-height: 1.5;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
input, textarea, select, button { font-family: var(--font); }
input, textarea, select { user-select: text; -webkit-user-select: text; }

/* ========== DESKTOP BLOCKER ========== */
#desktop-blocker {
    display: none;
    position: fixed; inset:0; z-index:99999;
    background: linear-gradient(145deg, #050d1a 0%, var(--blue-deep) 40%, #0f2847 100%);
    flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 40px 24px; color: var(--white);
}
#desktop-blocker .blocker-logo {
    width:70px; height:70px; background:var(--gold); border-radius:16px;
    transform:rotate(45deg); display:flex; align-items:center; justify-content:center;
    margin-bottom:28px; box-shadow:0 8px 32px rgba(201,165,75,.4);
}
#desktop-blocker .blocker-logo span { transform:rotate(-45deg); font-size:32px; font-weight:900; color:var(--blue-deep); }
#desktop-blocker h2 { font-size:2rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
#desktop-blocker h3 { font-size:1.1rem; font-weight:400; color:#94a3b8; margin-bottom:24px; }
#desktop-blocker .phone-mockup {
    width:120px; height:220px; border:3px solid rgba(255,255,255,.2);
    border-radius:24px; margin:20px auto; position:relative;
    background:linear-gradient(180deg,#0f2847 0%,var(--blue-deep) 100%);
    display:flex; align-items:center; justify-content:center; flex-direction:column; gap:8px;
}
#desktop-blocker .phone-mockup i { font-size:36px; color:var(--gold); }
#desktop-blocker .phone-mockup::before {
    content:''; position:absolute; top:8px; left:50%; transform:translateX(-50%);
    width:40px; height:4px; border-radius:2px; background:rgba(255,255,255,.15);
}
#desktop-blocker p { font-size:.9rem; color:#64748b; max-width:340px; line-height:1.6; margin-top:16px; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
#desktop-blocker .blocker-logo { animation: float 3s ease-in-out infinite; }
@media(min-width:769px) { #desktop-blocker { display:flex; } #app { display:none !important; } }

/* ========== APP SHELL ========== */
#app {
    width:100%; max-width:480px; min-height:100dvh;
    background:var(--white); position:relative;
    display:flex; flex-direction:column;
    box-shadow:var(--shadow-xl); overflow:hidden;
}

/* ========== STATUS BAR ========== */
.status-bar {
    background:var(--blue-deep); color:var(--white);
    padding:6px 16px; font-size:.68rem;
    display:flex; justify-content:space-between; align-items:center;
    font-weight:500; letter-spacing:.03em;
}

/* ========== APP HEADER ========== */
.app-header {
    background: linear-gradient(135deg, var(--blue-deep) 0%, #0f2444 100%);
    color:var(--white); padding:12px 16px;
    display:flex; align-items:center; justify-content:space-between;
    position:sticky; top:0; z-index:100;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.logo-area { display:flex; align-items:center; gap:10px; }
.logo-diamond {
    width:36px; height:36px; background:var(--gold); border-radius:8px;
    transform:rotate(45deg); display:flex; align-items:center; justify-content:center; flex-shrink:0;
    box-shadow:0 4px 12px rgba(201,165,75,.3);
}
.logo-diamond span { transform:rotate(-45deg); font-size:16px; font-weight:900; color:var(--blue-deep); }
.brand-name { font-weight:700; font-size:.95rem; letter-spacing:.03em; text-transform:uppercase; }
.brand-sub { font-size:.58rem; font-weight:400; letter-spacing:.06em; color:var(--gold); text-transform:uppercase; }
.header-actions { display:flex; gap:6px; align-items:center; }
.header-user-btn {
    display:flex; align-items:center; gap:5px;
    background:rgba(255,255,255,.1); border:none; color:white;
    padding:6px 10px; border-radius:20px; font-size:.72rem; font-weight:600;
    cursor:pointer; transition:var(--transition);
}
.header-user-btn:active { background:rgba(255,255,255,.2); transform:scale(.95); }
.header-user-btn i { font-size:.85rem; }
.live-dot {
    width:7px; height:7px; border-radius:50%; background:#10b981;
    display:inline-block; animation:pulse 2s infinite; margin-right:3px;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ========== MAIN CONTENT ========== */
.main-content {
    flex:1; overflow-y:auto; overflow-x:hidden;
    padding:14px 14px 100px; -webkit-overflow-scrolling:touch;
}
.main-content::-webkit-scrollbar { display:none; }

/* ========== BOTTOM NAV ========== */
.bottom-nav {
    position:fixed; bottom:0; left:50%; transform:translateX(-50%);
    width:100%; max-width:480px;
    background:rgba(255,255,255,.95); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
    border-top:1px solid var(--gray-200);
    display:flex; justify-content:space-around; align-items:center;
    padding:6px 4px 20px; z-index:200;
}
.nav-item {
    display:flex; flex-direction:column; align-items:center; gap:2px;
    cursor:pointer; padding:6px 10px; border-radius:12px;
    transition:var(--transition); color:var(--gray-400);
    font-size:.62rem; font-weight:600; letter-spacing:.02em;
    border:none; background:none; min-width:56px; position:relative;
}
.nav-item .nav-icon { font-size:1.25rem; transition:var(--transition); }
.nav-item.active { color:var(--blue-accent); }
.nav-item.active::before {
    content:''; position:absolute; top:-6px;
    width:20px; height:3px; border-radius:0 0 3px 3px;
    background:var(--blue-accent);
}
.nav-item:active { transform:scale(.92); }

/* ========== CARDS ========== */
.card {
    background:var(--white); border-radius:var(--radius-lg);
    padding:16px; margin-bottom:12px;
    box-shadow:var(--shadow); border:1px solid var(--gray-100);
    transition:var(--transition);
}
.card-accent { border-left:4px solid var(--blue-accent); }
.card-gold { border-left:4px solid var(--gold); }
.card-glass {
    background:rgba(255,255,255,.7); backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.5);
}

/* ========== BUTTONS ========== */
.btn {
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:12px 22px; border-radius:50px; font-weight:600; font-size:.88rem;
    cursor:pointer; border:none; transition:var(--transition);
    text-decoration:none; white-space:nowrap; min-height:46px; font-family:var(--font);
    letter-spacing:.01em;
}
.btn:active { transform:scale(.95); }
.btn-primary {
    background:linear-gradient(135deg, var(--blue-accent), #1d4ed8);
    color:var(--white); box-shadow:0 4px 14px rgba(37,99,235,.35);
}
.btn-outline { background:var(--white); color:var(--blue-accent); border:2px solid var(--blue-accent); }
.btn-gold {
    background:linear-gradient(135deg, var(--gold), #d4af37);
    color:var(--blue-deep); font-weight:700;
    box-shadow:0 4px 14px rgba(201,165,75,.35);
}
.btn-block { width:100%; }
.btn-sm { padding:8px 16px; font-size:.78rem; min-height:36px; }
.btn-danger { background:var(--red); color:var(--white); }
.btn-success { background:var(--green); color:var(--white); }
.btn:disabled { opacity:.4; pointer-events:none; }
.btn-ghost { background:transparent; color:var(--gray-600); padding:8px 12px; }

/* ========== FORM ELEMENTS ========== */
.form-group { margin-bottom:14px; }
.form-label { display:block; font-weight:600; font-size:.8rem; color:var(--gray-700); margin-bottom:5px; }
.form-input, .form-select, .form-textarea {
    width:100%; padding:12px 14px; border:2px solid var(--gray-200);
    border-radius:var(--radius); font-size:.88rem;
    background:var(--gray-50); color:var(--gray-900);
    transition:var(--transition); min-height:46px;
}
.form-textarea { min-height:80px; resize:vertical; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline:none; border-color:var(--blue-accent);
    box-shadow:0 0 0 3px rgba(37,99,235,.08); background:var(--white);
}
.form-select {
    -webkit-appearance:none; appearance:none; cursor:pointer;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat:no-repeat; background-position:right 12px center; padding-right:36px;
}
.form-hint { font-size:.72rem; color:var(--gray-500); margin-top:3px; }
.form-error { font-size:.72rem; color:var(--red); margin-top:3px; }

/* ========== STEP INDICATOR ========== */
.step-indicator { display:flex; align-items:center; justify-content:center; gap:4px; margin-bottom:18px; }
.step-dot {
    width:30px; height:30px; border-radius:50%; background:var(--gray-200);
    color:var(--gray-500); display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:.72rem; transition:var(--transition); flex-shrink:0;
}
.step-dot.active {
    background:var(--blue-accent); color:var(--white);
    box-shadow:0 4px 12px rgba(37,99,235,.4); transform:scale(1.1);
}
.step-dot.done { background:var(--green); color:var(--white); }
.step-line { width:24px; height:2px; background:var(--gray-200); border-radius:1px; flex-shrink:0; }
.step-line.done { background:var(--green); }

/* ========== CALENDAR ========== */
.calendar-widget { background:var(--white); border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--gray-200); }
.calendar-header {
    display:flex; align-items:center; justify-content:space-between;
    padding:12px 14px; background:var(--blue-deep); color:var(--white); font-weight:700; font-size:.88rem;
}
.calendar-header button {
    background:rgba(255,255,255,.12); border:none; color:white;
    width:32px; height:32px; border-radius:50%; cursor:pointer; font-size:.9rem;
    transition:var(--transition); display:flex; align-items:center; justify-content:center;
}
.calendar-header button:active { background:rgba(255,255,255,.25); }
.calendar-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:2px; padding:8px; }
.calendar-day-header {
    text-align:center; font-size:.6rem; font-weight:700; color:var(--gray-500);
    padding:6px 0; text-transform:uppercase; letter-spacing:.04em;
}
.calendar-day {
    aspect-ratio:1; display:flex; align-items:center; justify-content:center;
    border-radius:50%; font-size:.8rem; font-weight:500; cursor:pointer;
    transition:var(--transition); color:var(--gray-800); position:relative;
}
.calendar-day:not(.empty):not(.past):not(.booked):hover { background:var(--blue-surface); }
.calendar-day.today { font-weight:800; color:var(--blue-accent); border:2px solid var(--blue-accent); }
.calendar-day.booked {
    background:#fef2f2; color:#dc2626; cursor:not-allowed;
    text-decoration:line-through; font-weight:600; pointer-events:none;
}
.calendar-day.partial { background:#fdf8ed; color:#92400e; font-weight:600; }
.calendar-day.past { color:var(--gray-300); cursor:not-allowed; pointer-events:none; }
.calendar-day.selected {
    background:var(--blue-accent); color:var(--white); font-weight:700;
    box-shadow:0 4px 12px rgba(37,99,235,.4); transform:scale(1.08);
}
.calendar-day.empty { cursor:default; pointer-events:none; }
.calendar-day.blocked {
    background:var(--gray-100); color:var(--gray-400);
    cursor:not-allowed; pointer-events:none;
}

/* ========== TIME SLOTS ========== */
.time-slot-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.time-slot {
    padding:12px 8px; border:2px solid var(--gray-200); border-radius:var(--radius);
    text-align:center; cursor:pointer; font-weight:600; font-size:.78rem;
    transition:var(--transition); background:var(--white); color:var(--gray-700);
}
.time-slot .slot-label { font-size:.72rem; color:var(--gray-500); margin-top:2px; font-weight:400; }
.time-slot:not(.unavailable):hover { border-color:var(--blue-accent); background:var(--blue-surface); }
.time-slot.selected {
    border-color:var(--blue-accent); background:#eff6ff; color:var(--blue-accent);
    box-shadow:0 0 0 3px rgba(37,99,235,.1);
}
.time-slot.unavailable {
    background:#fef2f2; border-color:#fecaca; color:#dc2626;
    cursor:not-allowed; opacity:.6; pointer-events:none;
}

/* ========== SELECTION ITEMS (Drinks, Catering) ========== */
.selection-item {
    display:flex; align-items:center; gap:10px;
    padding:12px; border:2px solid var(--gray-200); border-radius:var(--radius);
    margin-bottom:8px; cursor:pointer; transition:var(--transition); background:var(--white);
}
.selection-item:active { transform:scale(.98); }
.selection-item.selected { border-color:var(--blue-accent); background:#eff6ff; }
.selection-item .item-emoji { font-size:1.5rem; flex-shrink:0; }
.selection-item .item-info { flex:1; min-width:0; }
.selection-item .item-name { font-weight:600; font-size:.82rem; color:var(--gray-900); }
.selection-item .item-desc { font-size:.68rem; color:var(--gray-500); margin-top:1px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.selection-item .item-price { font-size:.75rem; color:var(--blue-accent); font-weight:700; }
.selection-item .item-serves { font-size:.65rem; color:var(--gray-400); }

/* Quantity controls */
.qty-control {
    display:flex; align-items:center; gap:0; border:1px solid var(--gray-300);
    border-radius:8px; overflow:hidden; flex-shrink:0;
}
.qty-control button {
    width:28px; height:28px; border:none; background:var(--gray-100);
    color:var(--gray-700); font-size:.85rem; font-weight:700; cursor:pointer;
    display:flex; align-items:center; justify-content:center; transition:var(--transition);
}
.qty-control button:active { background:var(--gray-200); }
.qty-control .qty-val {
    width:28px; text-align:center; font-size:.78rem; font-weight:700;
    color:var(--gray-900); background:var(--white);
}

/* ========== CATEGORY TABS ========== */
.tab-group {
    display:flex; gap:6px; overflow-x:auto; padding:4px 0 10px;
    -webkit-overflow-scrolling:touch; scrollbar-width:none;
}
.tab-group::-webkit-scrollbar { display:none; }
.tab-btn {
    padding:7px 14px; border-radius:20px; font-size:.72rem; font-weight:600;
    border:1.5px solid var(--gray-200); background:var(--white); color:var(--gray-600);
    white-space:nowrap; cursor:pointer; transition:var(--transition); flex-shrink:0;
}
.tab-btn.active { background:var(--blue-accent); color:var(--white); border-color:var(--blue-accent); }
.tab-btn:active { transform:scale(.95); }

/* ========== BUDGET BAR ========== */
.budget-bar-wrap { margin:8px 0; }
.budget-bar-container { background:var(--gray-200); border-radius:20px; height:8px; overflow:hidden; }
.budget-bar-fill { height:100%; border-radius:20px; transition:var(--transition-slow); background:var(--green); }
.budget-bar-fill.warning { background:var(--orange); }
.budget-bar-fill.danger { background:var(--red); }
.budget-label { display:flex; justify-content:space-between; font-size:.7rem; color:var(--gray-500); margin-top:4px; }

/* ========== HERO BANNER ========== */
.hero-banner {
    background:linear-gradient(135deg, var(--blue-deep) 0%, #1a3c6e 50%, #1e4d8c 100%);
    border-radius:var(--radius-xl); padding:22px 18px; color:var(--white);
    margin-bottom:14px; position:relative; overflow:hidden;
}
.hero-banner::before {
    content:''; position:absolute; top:-40px; right:-40px;
    width:140px; height:140px; background:rgba(255,255,255,.03); border-radius:50%;
}
.hero-banner::after {
    content:''; position:absolute; bottom:-30px; left:-20px;
    width:100px; height:100px; background:rgba(201,165,75,.06); border-radius:50%;
}
.hero-banner h3 { font-size:1.4rem; font-weight:800; letter-spacing:-.02em; position:relative; z-index:1; line-height:1.3; }
.hero-banner .hero-sub { font-size:.8rem; opacity:.8; margin-top:4px; position:relative; z-index:1; }
.hero-banner .hero-emoji { font-size:44px; position:absolute; right:14px; top:50%; transform:translateY(-50%); opacity:.85; z-index:1; }

/* ========== EVENT TYPE CARDS ========== */
.event-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:14px; }
.event-card {
    background:var(--white); border-radius:var(--radius); padding:14px 10px;
    text-align:center; border:1px solid var(--gray-100); box-shadow:var(--shadow-sm);
    cursor:pointer; transition:var(--transition);
}
.event-card:active { transform:scale(.96); box-shadow:var(--shadow); }
.event-card .ec-emoji { font-size:1.8rem; margin-bottom:4px; }
.event-card .ec-name { font-weight:700; font-size:.78rem; color:var(--gray-800); }
.event-card .ec-price { font-size:.68rem; color:var(--blue-accent); font-weight:600; margin-top:2px; }
.event-card.selected { border-color:var(--blue-accent); background:#eff6ff; box-shadow:0 0 0 3px rgba(37,99,235,.08); }

/* ========== SUMMARY ROWS ========== */
.summary-row { display:flex; justify-content:space-between; padding:7px 0; border-bottom:1px solid var(--gray-100); font-size:.82rem; }
.summary-row:last-child { border-bottom:none; }
.summary-row .sr-label { color:var(--gray-600); }
.summary-row .sr-value { font-weight:600; color:var(--gray-900); }
.summary-row.total { font-weight:800; font-size:1.05rem; border-top:2px solid var(--gray-200); border-bottom:none; padding-top:10px; margin-top:4px; }
.summary-row.total .sr-label { color:var(--blue-deep); }
.summary-row.total .sr-value { color:var(--blue-accent); }

/* ========== BADGES ========== */
.badge {
    display:inline-flex; align-items:center; gap:4px;
    padding:3px 10px; border-radius:20px; font-size:.65rem;
    font-weight:700; letter-spacing:.02em; text-transform:uppercase;
}
.badge-blue { background:var(--blue-surface); color:var(--blue-accent); }
.badge-gold { background:var(--gold-light); color:#8b6914; }
.badge-green { background:var(--green-light); color:#059669; }
.badge-red { background:var(--red-light); color:#dc2626; }
.badge-orange { background:#fff7ed; color:#c2410c; }
.badge-gray { background:var(--gray-100); color:var(--gray-600); }

/* ========== MODAL / BOTTOM SHEET ========== */
.modal-overlay {
    position:fixed; inset:0; background:rgba(0,0,0,.55);
    z-index:500; display:flex; align-items:flex-end; justify-content:center;
    animation:fadeIn .2s ease; backdrop-filter:blur(4px);
}
.modal-overlay.center { align-items:center; }
.modal-sheet {
    background:var(--white); width:100%; max-width:480px;
    border-radius:20px 20px 0 0; padding:16px 16px 30px;
    max-height:90vh; overflow-y:auto; animation:slideUp .3s ease;
}
.modal-overlay.center .modal-sheet { border-radius:var(--radius-xl); margin:16px; }
.modal-handle { width:36px; height:4px; background:var(--gray-300); border-radius:2px; margin:0 auto 14px; }
.modal-title { font-size:1.1rem; font-weight:700; color:var(--blue-deep); margin-bottom:12px; }
.modal-close {
    position:absolute; top:12px; right:12px; width:32px; height:32px;
    border-radius:50%; border:none; background:var(--gray-100); color:var(--gray-600);
    font-size:1rem; cursor:pointer; display:flex; align-items:center; justify-content:center;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes slideUp { from{transform:translateY(100%)} to{transform:translateY(0)} }
@keyframes slideDown { from{transform:translateY(0)} to{transform:translateY(100%)} }

/* ========== TOAST ========== */
.toast {
    position:fixed; top:16px; left:50%; transform:translateX(-50%);
    z-index:9999; padding:10px 18px; border-radius:50px;
    font-weight:600; font-size:.8rem; box-shadow:var(--shadow-lg);
    max-width:88%; text-align:center; display:flex; align-items:center; gap:8px;
    animation:toastIn .4s ease;
}
.toast.hide { animation:toastOut .3s ease forwards; }
.toast-success { background:#059669; color:white; }
.toast-error { background:#dc2626; color:white; }
.toast-info { background:var(--blue-accent); color:white; }
@keyframes toastIn { from{opacity:0;transform:translateX(-50%) translateY(-30px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }
@keyframes toastOut { from{opacity:1;transform:translateX(-50%) translateY(0)} to{opacity:0;transform:translateX(-50%) translateY(-30px)} }

/* ========== PAGE SECTIONS ========== */
.page-section { display:none; animation:pageIn .3s ease; }
.page-section.active { display:block; }
@keyframes pageIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.section-title { font-size:1.25rem; font-weight:800; color:var(--blue-deep); margin-bottom:4px; letter-spacing:-.01em; }
.section-subtitle { font-size:.78rem; color:var(--gray-500); margin-bottom:14px; }

/* ========== AUTH PAGES ========== */
.auth-container { padding:8px 0; }
.auth-tabs { display:flex; gap:0; margin-bottom:18px; border-radius:var(--radius); overflow:hidden; border:2px solid var(--gray-200); }
.auth-tab {
    flex:1; padding:10px; text-align:center; font-weight:700; font-size:.82rem;
    cursor:pointer; transition:var(--transition); background:var(--gray-50); color:var(--gray-500);
    border:none;
}
.auth-tab.active { background:var(--blue-accent); color:var(--white); }
.auth-form { display:none; }
.auth-form.active { display:block; }
.auth-divider {
    display:flex; align-items:center; gap:12px; margin:16px 0; font-size:.72rem; color:var(--gray-400);
}
.auth-divider::before, .auth-divider::after { content:''; flex:1; height:1px; background:var(--gray-200); }

/* ========== PAYMENT PAGE ========== */
.payment-card {
    background:linear-gradient(135deg, #0f2444, var(--blue-deep));
    border-radius:var(--radius-xl); padding:20px 16px; color:var(--white); margin-bottom:14px;
}
.payment-card .pc-label { font-size:.68rem; color:#64748b; text-transform:uppercase; letter-spacing:.06em; margin-bottom:2px; }
.payment-card .pc-value { font-size:1rem; font-weight:700; margin-bottom:10px; }
.payment-card .pc-amount { font-size:1.6rem; font-weight:800; color:var(--gold); }
.copy-btn {
    display:inline-flex; align-items:center; gap:4px;
    padding:4px 10px; border-radius:6px; font-size:.68rem; font-weight:600;
    background:rgba(255,255,255,.15); color:var(--white); border:none;
    cursor:pointer; transition:var(--transition);
}
.copy-btn:active { background:rgba(255,255,255,.3); }
.copy-btn.copied { background:var(--green); }

/* ========== BOOKING CARDS (My Bookings) ========== */
.booking-card {
    background:var(--white); border-radius:var(--radius-lg); padding:14px;
    border:1px solid var(--gray-100); box-shadow:var(--shadow-sm);
    margin-bottom:10px; cursor:pointer; transition:var(--transition);
}
.booking-card:active { transform:scale(.98); box-shadow:var(--shadow); }
.booking-card .bc-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.booking-card .bc-ref { font-weight:700; font-size:.82rem; color:var(--blue-deep); }
.booking-card .bc-info { display:flex; flex-direction:column; gap:3px; font-size:.75rem; color:var(--gray-600); }
.booking-card .bc-info i { width:16px; color:var(--gray-400); }
.booking-card .bc-footer { display:flex; justify-content:space-between; align-items:center; margin-top:8px; padding-top:8px; border-top:1px solid var(--gray-100); }
.booking-card .bc-amount { font-weight:800; font-size:.95rem; color:var(--blue-accent); }

/* ========== EMPTY STATE ========== */
.empty-state { text-align:center; padding:40px 20px; color:var(--gray-500); }
.empty-state .empty-icon { font-size:48px; margin-bottom:12px; opacity:.5; }
.empty-state h4 { font-weight:700; color:var(--gray-700); margin-bottom:4px; font-size:.95rem; }
.empty-state p { font-size:.8rem; }

/* ========== LOADING ========== */
.spinner {
    width:36px; height:36px; border:3px solid var(--gray-200);
    border-top-color:var(--blue-accent); border-radius:50%;
    animation:spin .7s linear infinite; margin:20px auto;
}
@keyframes spin { to{transform:rotate(360deg)} }
.loading-overlay {
    position:fixed; inset:0; z-index:9998;
    background:rgba(255,255,255,.7); backdrop-filter:blur(4px);
    display:flex; align-items:center; justify-content:center; flex-direction:column; gap:10px;
}
.loading-overlay .spinner { width:44px; height:44px; border-width:4px; }
.loading-text { font-size:.82rem; font-weight:600; color:var(--gray-600); }

/* ========== SKELETON ========== */
.skeleton {
    background:linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size:200% 100%; animation:shimmer 1.5s infinite;
    border-radius:var(--radius-sm); min-height:16px;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ========== SUCCESS ANIMATION ========== */
.success-check {
    width:80px; height:80px; border-radius:50%; background:var(--green);
    display:flex; align-items:center; justify-content:center;
    margin:20px auto; animation:popIn .5s ease;
    box-shadow:0 8px 24px rgba(16,185,129,.3);
}
.success-check i { font-size:36px; color:white; }
@keyframes popIn { 0%{transform:scale(0)} 60%{transform:scale(1.15)} 100%{transform:scale(1)} }

/* ========== STEP CONTENT VISIBILITY ========== */
.booking-step { display:none; }
.booking-step.active { display:block; animation:pageIn .3s ease; }

/* ========== FEATURE LIST ========== */
.feature-list { display:flex; flex-direction:column; gap:8px; }
.feature-item {
    display:flex; align-items:center; gap:10px; padding:10px 12px;
    background:var(--gray-50); border-radius:var(--radius); font-size:.82rem;
}
.feature-item i { font-size:1rem; color:var(--blue-accent); width:20px; text-align:center; }

/* ========== MENU PAGE ========== */
.menu-section-title {
    font-size:.88rem; font-weight:700; color:var(--blue-deep);
    margin:14px 0 8px; display:flex; align-items:center; gap:6px;
}

/* ========== CTA GLOW ========== */
.glow-btn {
    animation:glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
    0%,100% { box-shadow:0 4px 14px rgba(37,99,235,.35); }
    50% { box-shadow:0 4px 24px rgba(37,99,235,.55), 0 0 40px rgba(37,99,235,.15); }
}

/* ========== DJ OPTIONS ========== */
.dj-option {
    display:flex; align-items:flex-start; gap:12px; padding:14px;
    border:2px solid var(--gray-200); border-radius:var(--radius);
    margin-bottom:8px; cursor:pointer; transition:var(--transition);
}
.dj-option.selected { border-color:var(--blue-accent); background:#eff6ff; }
.dj-option .dj-radio {
    width:20px; height:20px; border-radius:50%; border:2px solid var(--gray-300);
    flex-shrink:0; margin-top:2px; transition:var(--transition); position:relative;
}
.dj-option.selected .dj-radio {
    border-color:var(--blue-accent); background:var(--blue-accent);
}
.dj-option.selected .dj-radio::after {
    content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:6px; height:6px; border-radius:50%; background:white;
}
.dj-option .dj-info { flex:1; }
.dj-option .dj-name { font-weight:700; font-size:.85rem; }
.dj-option .dj-desc { font-size:.72rem; color:var(--gray-500); margin-top:2px; }
.dj-option .dj-price { font-size:.78rem; font-weight:700; color:var(--blue-accent); margin-top:4px; }

/* ========== INSTRUCTION STEPS ========== */
.instruction-steps { display:flex; flex-direction:column; gap:10px; margin:12px 0; }
.instruction-step {
    display:flex; gap:10px; font-size:.78rem; color:var(--gray-700); align-items:flex-start;
}
.instruction-step .step-num {
    width:22px; height:22px; border-radius:50%; background:var(--blue-accent);
    color:white; font-size:.65rem; font-weight:700; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
}

/* ========== MISC ========== */
.divider { height:1px; background:var(--gray-200); margin:12px 0; }
.text-center { text-align:center; }
.text-gold { color:var(--gold); }
.text-blue { color:var(--blue-accent); }
.text-green { color:var(--green); }
.text-red { color:var(--red); }
.text-sm { font-size:.78rem; }
.text-xs { font-size:.68rem; }
.fw-700 { font-weight:700; }
.fw-800 { font-weight:800; }
.mt-8 { margin-top:8px; }
.mt-12 { margin-top:12px; }
.mt-16 { margin-top:16px; }
.mb-8 { margin-bottom:8px; }
.mb-12 { margin-bottom:12px; }
.mb-16 { margin-bottom:16px; }
.gap-8 { gap:8px; }
.d-flex { display:flex; }
.flex-between { display:flex; justify-content:space-between; align-items:center; }
.hidden { display:none !important; }

/* ========== GALLERY PAGE ========== */
.gallery-masonry {
    columns:2; column-gap:8px;
}
.gallery-masonry .gal-item {
    break-inside:avoid; margin-bottom:8px;
    border-radius:var(--radius); overflow:hidden;
    position:relative; cursor:pointer; transition:var(--transition);
    background:var(--gray-100);
}
.gallery-masonry .gal-item:active { transform:scale(.97); }
.gallery-masonry .gal-item img {
    width:100%; display:block; object-fit:cover;
    transition:var(--transition);
}
.gallery-masonry .gal-item:hover img { transform:scale(1.04); }
.gal-item .gal-play {
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:40px; height:40px; border-radius:50%;
    background:rgba(0,0,0,.55); backdrop-filter:blur(4px);
    display:flex; align-items:center; justify-content:center;
    color:white; font-size:1rem; transition:var(--transition);
}
.gal-item:hover .gal-play { background:rgba(37,99,235,.85); transform:translate(-50%,-50%) scale(1.1); }
.gal-item .gal-badge {
    position:absolute; top:6px; left:6px;
    padding:2px 8px; border-radius:6px; font-size:.55rem;
    font-weight:700; text-transform:uppercase;
}
.gal-badge.vid { background:rgba(220,38,38,.85); color:#fff; }
.gal-badge.feat { background:rgba(201,165,75,.9); color:#fff; }
.gal-item .gal-overlay {
    position:absolute; bottom:0; left:0; right:0;
    background:linear-gradient(transparent, rgba(0,0,0,.65));
    padding:24px 8px 8px; opacity:0; transition:var(--transition);
}
.gal-item:hover .gal-overlay, .gal-item:active .gal-overlay { opacity:1; }
.gal-overlay .gal-title {
    color:#fff; font-weight:600; font-size:.72rem;
    text-shadow:0 1px 3px rgba(0,0,0,.3);
}
.gal-overlay .gal-meta {
    color:rgba(255,255,255,.7); font-size:.6rem; margin-top:1px;
}

/* Gallery Lightbox */
.lightbox {
    position:fixed; inset:0; z-index:9000;
    background:rgba(0,0,0,.92); backdrop-filter:blur(8px);
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    animation:fadeIn .2s ease; padding:16px;
}
.lightbox-close {
    position:absolute; top:14px; right:14px; z-index:9001;
    width:36px; height:36px; border-radius:50%; border:none;
    background:rgba(255,255,255,.15); color:white; font-size:1.1rem;
    cursor:pointer; display:flex; align-items:center; justify-content:center;
    transition:var(--transition);
}
.lightbox-close:hover { background:rgba(255,255,255,.3); }
.lightbox img {
    max-width:100%; max-height:75vh; object-fit:contain;
    border-radius:var(--radius); box-shadow:0 8px 32px rgba(0,0,0,.4);
    animation:popIn .3s ease;
}
.lightbox video {
    max-width:100%; max-height:75vh; border-radius:var(--radius);
    box-shadow:0 8px 32px rgba(0,0,0,.4); background:#000;
}
.lightbox iframe {
    width:100%; max-width:460px; aspect-ratio:16/9;
    border:none; border-radius:var(--radius);
    box-shadow:0 8px 32px rgba(0,0,0,.4);
}
.lightbox-info {
    text-align:center; margin-top:12px; max-width:400px;
}
.lightbox-info .lb-title { color:white; font-weight:700; font-size:.9rem; }
.lightbox-info .lb-desc { color:rgba(255,255,255,.6); font-size:.75rem; margin-top:4px; }
.lightbox-info .lb-meta { color:rgba(255,255,255,.4); font-size:.65rem; margin-top:6px; display:flex; align-items:center; justify-content:center; gap:10px; }
.lightbox-nav {
    position:absolute; top:50%; width:100%; display:flex;
    justify-content:space-between; padding:0 8px; transform:translateY(-50%);
}
.lightbox-nav button {
    width:36px; height:36px; border-radius:50%; border:none;
    background:rgba(255,255,255,.1); color:white; font-size:1rem;
    cursor:pointer; transition:var(--transition);
    display:flex; align-items:center; justify-content:center;
}
.lightbox-nav button:hover { background:rgba(255,255,255,.25); }
.lightbox-nav button:disabled { opacity:.2; pointer-events:none; }

/* ============================================================
   HOMEPAGE ANIMATIONS & ENHANCED COMPONENTS
   ============================================================ */

/* ========== ENTRANCE ANIMATIONS ========== */
.anim-fadeUp {
    opacity: 0; transform: translateY(24px);
    animation: animFadeUp .7s cubic-bezier(.4,0,.2,1) forwards;
}
.anim-delay-1 { animation-delay: .15s; }
.anim-delay-2 { animation-delay: .3s; }
.anim-delay-3 { animation-delay: .45s; }
.anim-delay-4 { animation-delay: .6s; }
.anim-delay-5 { animation-delay: .75s; }
@keyframes animFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Staggered grid children */
.anim-stagger > * {
    opacity: 0; transform: translateY(16px) scale(.95);
    animation: animStaggerIn .5s cubic-bezier(.4,0,.2,1) forwards;
}
.anim-stagger > *:nth-child(1) { animation-delay: .2s; }
.anim-stagger > *:nth-child(2) { animation-delay: .35s; }
.anim-stagger > *:nth-child(3) { animation-delay: .5s; }
.anim-stagger > *:nth-child(4) { animation-delay: .65s; }
@keyframes animStaggerIn {
    from { opacity: 0; transform: translateY(16px) scale(.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Bounce-in for emojis */
.anim-bounce-in {
    animation: animBounceIn .6s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes animBounceIn {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Float animation */
.anim-float {
    animation: animFloat 3s ease-in-out infinite;
}
@keyframes animFloat {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 8px)); }
}

/* Spin once */
.anim-spin-once { animation: animSpinOnce 1s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes animSpinOnce { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Pulse badge */
.anim-pulse-badge { animation: animPulseBadge 2s ease-in-out infinite; }
@keyframes animPulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

/* ========== HERO PARTICLES ========== */
.hero-animated { position: relative; }
.hero-particles {
    position: absolute; inset: 0; overflow: hidden; z-index: 1; pointer-events: none;
}
.particle {
    position: absolute; border-radius: 50%; background: rgba(201,165,75,.3);
    animation: particleDrift linear infinite;
}
.particle:nth-child(1) { width: 4px; height: 4px; left: 15%; top: 20%; animation-duration: 6s; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 70%; top: 60%; animation-duration: 8s; animation-delay: 1s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 40%; top: 80%; animation-duration: 7s; animation-delay: 2s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 85%; top: 30%; animation-duration: 9s; animation-delay: .5s; background: rgba(37,99,235,.25); }
.particle:nth-child(5) { width: 3px; height: 3px; left: 25%; top: 50%; animation-duration: 5s; animation-delay: 3s; background: rgba(255,255,255,.15); }
.particle:nth-child(6) { width: 7px; height: 7px; left: 55%; top: 15%; animation-duration: 10s; animation-delay: 1.5s; background: rgba(201,165,75,.15); }
@keyframes particleDrift {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(-30px, -60px) scale(.3); opacity: 0; }
}

/* Hero Title Glow */
.hero-title-glow {
    background: linear-gradient(135deg, #ffffff 0%, #e8d5a3 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 4s linear infinite;
}
@keyframes titleShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ========== STATS COUNTERS ========== */
.home-stats {
    display: flex; align-items: center; justify-content: center; gap: 0;
    background: var(--white); border-radius: var(--radius-lg); padding: 14px 6px;
    box-shadow: var(--shadow); margin-bottom: 14px; border: 1px solid var(--gray-100);
}
.home-stat { flex: 1; text-align: center; }
.hs-value { font-size: 1.4rem; font-weight: 900; color: var(--blue-deep); }
.hs-value.hs-star { color: var(--gold); }
.hs-label { font-size: .62rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-top: 2px; }
.hs-divider { width: 1px; height: 30px; background: var(--gray-200); flex-shrink: 0; }

/* ========== ENHANCED EVENT CARDS ========== */
.event-card-v2 {
    position: relative; overflow: hidden; padding: 18px 10px 12px;
    border: 1px solid rgba(37,99,235,.08);
    transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease;
}
.event-card-v2:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card-v2:active { transform: scale(.95) translateY(0); }
.ec-glow {
    position: absolute; top: -20px; right: -20px; width: 60px; height: 60px;
    border-radius: 50%; filter: blur(20px); opacity: .35; pointer-events: none;
    transition: opacity .3s, transform .3s;
}
.event-card-v2:hover .ec-glow { opacity: .55; transform: scale(1.3); }
.ec-glow-pink { background: #ec4899; }
.ec-glow-gold { background: #d4af37; }
.ec-glow-blue { background: #3b82f6; }
.ec-glow-green { background: #10b981; }
.ec-tag {
    font-size: .55rem; font-weight: 700; color: var(--blue-accent); text-transform: uppercase;
    letter-spacing: .06em; margin-top: 4px; opacity: .7;
}

/* ========== DJ SHOWCASE ========== */
.dj-showcase { border-radius: var(--radius-xl); }
.dj-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent 0%, rgba(11,26,48,0.95) 100%);
    padding: 40px 16px 14px; color: white;
}

/* DJ Equalizer Bars */
.dj-equalizer {
    display: flex; align-items: flex-end; gap: 3px; height: 20px; margin-bottom: 8px;
}
.dj-equalizer span {
    display: block; width: 3px; background: var(--gold); border-radius: 2px;
    animation: eqBar .8s ease-in-out infinite alternate;
}
.dj-equalizer span:nth-child(1) { height: 30%; animation-delay: 0s; }
.dj-equalizer span:nth-child(2) { height: 60%; animation-delay: .15s; }
.dj-equalizer span:nth-child(3) { height: 100%; animation-delay: .3s; }
.dj-equalizer span:nth-child(4) { height: 50%; animation-delay: .45s; }
.dj-equalizer span:nth-child(5) { height: 80%; animation-delay: .6s; }
@keyframes eqBar {
    0% { height: 20%; }
    100% { height: 100%; }
}

/* ========== FEATURE LIST V2 ========== */
.feature-list-v2 { display: flex; flex-direction: column; gap: 10px; }
.feature-item-v2 {
    display: flex; align-items: center; gap: 12px; padding: 10px 12px;
    background: rgba(255,255,255,.7); border-radius: var(--radius); transition: .25s;
}
.feature-item-v2:hover { background: rgba(255,255,255,.95); transform: translateX(4px); }
.fi-icon {
    width: 36px; height: 36px; border-radius: 10px; display: flex;
    align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0;
}
.fi-icon-purple { background: #f3e8ff; color: #7c3aed; }
.fi-icon-blue { background: #dbeafe; color: #2563eb; }
.fi-icon-pink { background: #fce7f3; color: #db2777; }
.fi-icon-green { background: #d1fae5; color: #059669; }
.fi-title { font-weight: 700; font-size: .82rem; color: var(--gray-800); }
.fi-desc { font-size: .68rem; color: var(--gray-500); }

/* ========== CTA CARD ========== */
.cta-card {
    background: linear-gradient(135deg, var(--blue-deep) 0%, #1a3c6e 50%, #0f2847 100%);
    border: none; position: relative; overflow: hidden;
    border-radius: var(--radius-xl); padding: 28px 16px;
}
.cta-shimmer {
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
    animation: ctaShimmer 3s ease-in-out infinite;
}
@keyframes ctaShimmer {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}


/* ========== ONBOARDING ========== */
.onboarding-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--blue-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.onboarding-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.onboard-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.onboard-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.onboard-img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    object-position: center top;
}
.onboard-content {
    background: var(--blue-deep);
    height: 40%;
    width: 100%;
    border-radius: 30px 30px 0 0;
    padding: 30px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    margin-top: -30px;
    z-index: 2;
}
.onboard-content h2 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.onboard-content p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 24px;
    flex: 1;
}
.onboard-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}
.onboard-dots .dot {
    width: 8px; height: 8px;
    border-radius: 4px;
    background: #334155;
    transition: all 0.3s ease;
}
.onboard-dots .dot.active {
    width: 24px;
    background: var(--gold);
}


/* ========== EVENT COUNTDOWN ========== */
.event-countdown {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 26, 48, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 165, 75, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 10;
}
.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.cd-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(201,165,75,0.4);
}
.cd-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

