/* ═══════════════════════════════════════════════════════════════
   a-ticPro — Global Stylesheet  (Eventix-inspired dark theme)
   ═══════════════════════════════════════════════════════════════ */

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

:root {
    --accent:   #C8F000;
    --accent2:  #a8cc00;
    --bg:       #080808;
    --surface:  #111111;
    --surface2: #181818;
    --surface3: #1f1f1f;
    --border:   #222222;
    --border2:  #2e2e2e;
    --text:     #f0f0f0;
    --text2:    #c0c0c0;
    --muted:    #666666;
    --glow:     rgba(200,240,0,0.18);
    --glow-lg:  rgba(200,240,0,0.08);
}

[data-theme="light"] {
    --accent:   #7aaa00;
    --accent2:  #5d8800;
    --bg:       #f4f4f4;
    --surface:  #ffffff;
    --surface2: #f0f0f0;
    --surface3: #e8e8e8;
    --border:   #e0e0e0;
    --border2:  #d0d0d0;
    --text:     #0a0a0a;
    --text2:    #333333;
    --muted:    #888888;
    --glow:     rgba(100,160,0,0.12);
    --glow-lg:  rgba(100,160,0,0.05);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text);
    min-height: 100vh;
    transition: background 0.3s, color 0.3s;
    overflow-x: hidden;
}

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
.navbar {
    position: sticky; top: 0; z-index: 200;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 48px; height: 64px;
    background: rgba(8,8,8,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
[data-theme="light"] .navbar { background: rgba(244,244,244,0.92); }

.nav-logo {
    font-weight: 800; font-size: 1.2rem;
    color: var(--text); text-decoration: none;
    letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
    color: var(--muted); text-decoration: none;
    font-size: 0.875rem; font-weight: 500;
    padding: 8px 14px; border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface2); }
.nav-links a.active {
    color: var(--text);
    border-bottom: 2px solid var(--accent);
    border-radius: 0;
    padding-bottom: 6px;
}

.btn-nav-login {
    padding: 8px 20px !important;
    border: 1.5px solid var(--border2) !important;
    border-radius: 50px !important;
    color: var(--text) !important;
    font-weight: 600 !important;
    background: transparent !important;
    transition: border-color 0.2s, color 0.2s !important;
}
.btn-nav-login:hover {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    background: transparent !important;
}
.btn-nav-register {
    padding: 8px 20px !important;
    border-radius: 50px !important;
    background: var(--accent) !important;
    color: #000 !important;
    font-weight: 700 !important;
    border: none !important;
    transition: background 0.2s, transform 0.15s !important;
}
.btn-nav-register:hover {
    background: #d4ff1a !important;
    transform: translateY(-1px) !important;
}

/* Theme toggle button removed */

/* ══════════════════════════════════════════════════════
   ORB CANVAS BACKGROUND
   ══════════════════════════════════════════════════════ */
.orb-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    animation: orbFloat linear infinite;
}
.orb-green {
    background: radial-gradient(circle at 35% 35%, #b8ff00, #4a7a00 55%, #1a2e00 100%);
    box-shadow: 0 0 60px rgba(180,255,0,0.35), inset 0 -10px 30px rgba(0,0,0,0.5);
}
.orb-black {
    background: radial-gradient(circle at 35% 30%, #3a3a3a, #111 55%, #050505 100%);
    box-shadow: 0 0 30px rgba(0,0,0,0.8), inset 0 -8px 20px rgba(0,0,0,0.6);
}
.orb-white {
    background: radial-gradient(circle at 35% 30%, #ffffff, #c0c0c0 55%, #808080 100%);
    box-shadow: 0 0 20px rgba(255,255,255,0.2), inset 0 -6px 18px rgba(0,0,0,0.3);
}
@keyframes orbFloat {
    0%   { transform: translateY(0px) rotate(0deg); }
    33%  { transform: translateY(-28px) rotate(6deg); }
    66%  { transform: translateY(14px) rotate(-4deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: calc(100vh - 64px);
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: center;
    padding: 80px 72px;
    overflow: hidden;
    z-index: 1;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200,240,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.0;
    margin-bottom: 8px;
    max-width: 640px;
}
.hero h1 .accent-line { color: var(--accent); display: block; }

.hero p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 36px;
    margin-top: 16px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
    display: flex; gap: 48px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    width: 100%;
    max-width: 600px;
}
.hero-stat .num {
    font-size: 2rem; font-weight: 800; color: var(--text);
    display: flex; align-items: center; gap: 8px;
}
.hero-stat .num svg { color: var(--accent); }
.hero-stat .lbl { font-size: 0.78rem; color: var(--muted); margin-top: 3px; }

/* ══════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════ */
.section {
    position: relative; z-index: 1;
    padding: 96px 72px;
}
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    letter-spacing: -0.03em; margin-bottom: 14px;
    line-height: 1.1;
}
.section-title em { color: var(--accent); font-style: normal; }
.section-sub {
    color: var(--muted); font-size: 1rem;
    max-width: 480px; line-height: 1.7;
    margin-bottom: 52px;
}

/* ══════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 13px 28px;
    background: var(--accent); color: #000;
    text-decoration: none; border-radius: 50px;
    font-weight: 700; font-size: 0.9rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    border: none; cursor: pointer;
    box-shadow: 0 0 0 0 rgba(200,240,0,0);
}
.btn:hover {
    background: #d4ff1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200,240,0,0.25);
}
.btn:active { transform: translateY(0); }

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 13px 28px;
    background: transparent; border: 1.5px solid var(--border2);
    color: var(--text); text-decoration: none; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
    cursor: pointer;
}
.btn-outline:hover {
    border-color: var(--accent); color: var(--accent);
    transform: translateY(-2px);
}
.btn-sm { padding: 8px 18px; font-size: 0.8rem; border-radius: 50px; }
.btn-full { width: 100%; padding: 14px; font-size: 1rem; border-radius: 12px; }
.btn-danger { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.2); border-radius: 50px; }
.btn-danger:hover { background: rgba(239,68,68,0.2); transform: translateY(-1px); }
/* Ghost accent button - accent tint, used for Edit / secondary actions */
.btn-ghost { background: rgba(200,240,0,0.1); color: var(--accent); border: 1px solid rgba(200,240,0,0.25); border-radius: 50px; }
.btn-ghost:hover { background: rgba(200,240,0,0.18); transform: translateY(-1px); }
/* Accent outline - subscribe / highlighted outline */
.btn-accent-outline { background: rgba(200,240,0,0.08); color: var(--accent); border: 1px solid var(--accent); border-radius: 50px; }
.btn-accent-outline:hover { background: rgba(200,240,0,0.18); transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════
   FEATURE CARDS
   ══════════════════════════════════════════════════════ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,240,0,0.3), transparent);
    opacity: 0; transition: opacity 0.25s;
}
.feature-card:hover {
    border-color: rgba(200,240,0,0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,240,0,0.08);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 48px; height: 48px;
    background: rgba(200,240,0,0.08);
    border: 1px solid rgba(200,240,0,0.15);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { color: var(--muted); font-size: 0.85rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   EVENT CARDS
   ══════════════════════════════════════════════════════ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
.event-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px; overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    text-decoration: none; display: block; color: inherit;
}
.event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200,240,0,0.25);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 24px rgba(200,240,0,0.06);
}
.event-thumb {
    height: 180px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}
.event-thumb img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.event-thumb.tech     { background: linear-gradient(135deg,#0a1628,#0d1a33); }
.event-thumb.food     { background: linear-gradient(135deg,#1a0f00,#2d1a00); }
.event-thumb.music    { background: linear-gradient(135deg,#0d0519,#1a082a); }
.event-thumb.business { background: linear-gradient(135deg,#001a0f,#002918); }
.event-thumb.art      { background: linear-gradient(135deg,#18050d,#0d0209); }
.event-thumb.sports   { background: linear-gradient(135deg,#00101a,#001a28); }

.sold-out-badge {
    position: absolute; top: 12px; right: 12px;
    background: #ef4444; color: #fff;
    font-size: 0.65rem; font-weight: 700;
    padding: 4px 10px; border-radius: 6px;
    letter-spacing: 0.06em; text-transform: uppercase;
    z-index: 2;
}
.event-body { padding: 20px; }
.event-cat { font-size: 0.68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.event-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.event-meta { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.event-meta span { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.event-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.event-price { font-weight: 800; font-size: 1rem; }
.event-price.free { color: var(--accent); }

/* ══════════════════════════════════════════════════════
   TABLE CARD
   ══════════════════════════════════════════════════════ */
.table-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px; overflow: hidden;
}
.table-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.table-header h3 { font-size: 1rem; font-weight: 700; }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
th {
    text-align: left; padding: 12px 24px;
    font-size: 0.7rem; font-weight: 700; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
}
td { padding: 16px 24px; border-bottom: 1px solid var(--border); color: var(--text); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }

/* ══════════════════════════════════════════════════════
   FORM (login / register / general)
   ══════════════════════════════════════════════════════ */
.form-box {
    min-height: 100vh; display: flex;
    align-items: center; justify-content: center;
    padding: 24px; position: relative; z-index: 1;
    background: radial-gradient(ellipse 55% 55% at 50% 0%, rgba(200,240,0,0.06) 0%, transparent 70%),
                var(--bg);
}
[data-theme="light"] .form-box {
    background: radial-gradient(ellipse 55% 55% at 50% 0%, rgba(180,240,0,0.08) 0%, transparent 70%),
                var(--bg);
}
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 48px 40px;
    width: 100%; max-width: 460px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    position: relative;
}
.form-card::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,240,0,0.4), transparent);
}
.form-brand { font-weight: 800; color: var(--accent); display: block; margin-bottom: 28px; font-size: 1rem; }
.form-brand span { color: var(--muted); font-weight: 400; }
.form-card h2 { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 6px; }
.form-card .subtitle { color: var(--muted); font-size: 0.875rem; margin-bottom: 32px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 0.72rem; font-weight: 700;
    color: var(--muted); margin-bottom: 7px;
    text-transform: uppercase; letter-spacing: 0.07em;
}
input, textarea, select {
    width: 100%; padding: 12px 16px;
    background: var(--surface2);
    border: 1px solid var(--border2);
    border-radius: 12px; color: var(--text);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem; transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 0.6; }
input:focus, textarea:focus, select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,240,0,0.1);
}
input[readonly], input[disabled] { opacity: 0.5; cursor: not-allowed; }
select option { background: var(--surface2); }
.form-footer { text-align: center; margin-top: 20px; font-size: 0.875rem; color: var(--muted); }
.form-footer a { color: var(--accent); text-decoration: none; font-weight: 600; }
.form-footer a:hover { text-decoration: underline; }
.input-hint { font-size: 0.72rem; color: var(--muted); margin-top: 5px; }

/* Alert */
.alert { padding: 12px 16px; border-radius: 12px; font-size: 0.875rem; margin-bottom: 16px; }
.alert-error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #f87171; }
.alert-success { background: rgba(200,240,0,0.08); border: 1px solid rgba(200,240,0,0.25); color: var(--accent); }

/* ══════════════════════════════════════════════════════
   SIDEBAR LAYOUT (admin / vendor / user dashboards)
   ══════════════════════════════════════════════════════ */
.app-layout { display: flex; min-height: 100vh; }
.sidebar {
    width: 260px; min-height: 100vh;
    background: var(--surface); border-right: 1px solid var(--border);
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; bottom: 0;
    z-index: 100;
}
.sidebar-brand {
    padding: 22px 20px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.sidebar-brand-left { display: flex; flex-direction: column; }
.sidebar-brand .logo { font-weight: 800; font-size: 1.1rem; color: var(--text); letter-spacing: -0.02em; }
.sidebar-brand .logo span { color: var(--accent); }
.sidebar-brand .role-tag { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
.sidebar-nav { flex: 1; padding: 14px 10px; overflow-y: auto; }
.nav-section { margin-bottom: 22px; }
.nav-section-label { font-size: 0.63rem; font-weight: 700; color: #444; text-transform: uppercase; letter-spacing: 0.1em; padding: 0 10px; margin-bottom: 6px; }
.nav-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px; border-radius: 10px;
    color: var(--muted); text-decoration: none;
    font-size: 0.875rem; font-weight: 500;
    transition: background 0.15s, color 0.15s;
    margin-bottom: 2px;
}
.nav-item:hover { background: var(--surface2); color: var(--text); }
.nav-item.active { background: rgba(200,240,0,0.08); color: var(--accent); }
.nav-item .icon { width: 20px; text-align: center; flex-shrink: 0; }
.nav-badge {
    margin-left: auto; background: var(--accent); color: #000;
    font-size: 0.65rem; font-weight: 800; padding: 2px 7px; border-radius: 10px;
}
.sidebar-user {
    padding: 16px 20px; border-top: 1px solid var(--border);
    display: flex; align-items: center; gap: 12px;
}
.user-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent); color: #000;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
}
.user-info .name  { font-size: 0.875rem; font-weight: 600; }
.user-info .email { font-size: 0.72rem; color: var(--muted); }
.logout-btn { margin-left: auto; color: var(--muted); text-decoration: none; font-size: 1rem; transition: color 0.2s; }
.logout-btn:hover { color: #f87171; }
.main-content { margin-left: 260px; flex: 1; padding: 32px; }
.page-header { margin-bottom: 28px; }
.page-header h1 { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }
.page-header p  { color: var(--muted); font-size: 0.875rem; margin-top: 4px; }

/* ══════════════════════════════════════════════════════
   STAT CARDS
   ══════════════════════════════════════════════════════ */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 14px; margin-bottom: 28px; }
.stat-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; padding: 22px;
    transition: border-color 0.2s;
}
.stat-card:hover { border-color: rgba(200,240,0,0.2); }
.stat-card .s-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.stat-card .s-value { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-card .s-sub   { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }

/* ══════════════════════════════════════════════════════
   BADGES & TAGS
   ══════════════════════════════════════════════════════ */
.badge { display: inline-block; padding: 4px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; }
.badge-green  { background: rgba(200,240,0,0.1); color: var(--accent); border: 1px solid rgba(200,240,0,0.2); }
.badge-yellow { background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }
.badge-red    { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.badge-gray   { background: var(--surface2); color: var(--muted); border: 1px solid var(--border); }
.badge-blue   { background: rgba(99,102,241,0.1); color: #818cf8; border: 1px solid rgba(99,102,241,0.2); }
.tag { display: inline-block; padding: 4px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; }
.tag-passport { background: rgba(99,102,241,0.12); color: #818cf8; border: 1px solid rgba(99,102,241,0.2); }
.tag-nolimit  { background: rgba(200,240,0,0.08); color: var(--accent); border: 1px solid rgba(200,240,0,0.18); }
.tag-unavail  { background: rgba(239,68,68,0.08); color: #f87171; border: 1px solid rgba(239,68,68,0.18); }

/* ══════════════════════════════════════════════════════
   FILTER CHIPS
   ══════════════════════════════════════════════════════ */
.events-filter { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-chip {
    padding: 7px 16px; border-radius: 50px;
    border: 1.5px solid var(--border);
    background: transparent; color: var(--muted);
    font-size: 0.8rem; font-weight: 600;
    cursor: pointer; transition: all 0.15s;
    text-decoration: none; display: inline-block;
}
.filter-chip:hover { border-color: var(--accent); color: var(--text); }
.filter-chip.active { background: var(--accent); border-color: var(--accent); color: #000; font-weight: 700; }

/* ══════════════════════════════════════════════════════
   TICKET CARD
   ══════════════════════════════════════════════════════ */
.ticket-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 18px; padding: 24px;
    display: flex; gap: 20px; align-items: flex-start; margin-bottom: 16px;
}
.ticket-qr {
    width: 80px; height: 80px; background: white;
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; font-size: 2rem; flex-shrink: 0;
}
.ticket-info h3      { font-weight: 700; margin-bottom: 6px; }
.ticket-info .ticket-meta { font-size: 0.8rem; color: var(--muted); display: flex; flex-direction: column; gap: 3px; }
.ticket-code {
    font-family: 'Courier New', monospace; font-size: 0.85rem;
    color: var(--accent); background: rgba(200,240,0,0.08);
    padding: 4px 10px; border-radius: 6px; display: inline-block; margin-top: 8px;
}

/* ══════════════════════════════════════════════════════
   PASSPORT STAMPS
   ══════════════════════════════════════════════════════ */
.passport-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.stamp-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 14px; padding: 20px; text-align: center; transition: all 0.2s;
}
.stamp-card.done { border-color: var(--accent); background: rgba(200,240,0,0.04); }
.stamp-icon { font-size: 2rem; margin-bottom: 10px; }
.stamp-card p { font-size: 0.8rem; color: var(--muted); }
.stamp-card.done p { color: var(--accent); }

/* ══════════════════════════════════════════════════════
   VENDOR CARD
   ══════════════════════════════════════════════════════ */
.vendor-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; padding: 22px;
    display: flex; gap: 16px; align-items: center;
}
.vendor-logo {
    width: 52px; height: 52px; background: var(--surface2);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.4rem; flex-shrink: 0;
}
.vendor-info h3 { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.vendor-info p  { font-size: 0.8rem; color: var(--muted); }
.vendor-actions { margin-left: auto; display: flex; gap: 8px; }

/* ══════════════════════════════════════════════════════
   NEWS GRID
   ══════════════════════════════════════════════════════ */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.news-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 18px; overflow: hidden; transition: border-color 0.2s, transform 0.2s;
}
.news-card:hover { border-color: rgba(200,240,0,0.2); transform: translateY(-3px); }
.news-thumb {
    height: 160px; display: flex; align-items: center;
    justify-content: center; font-size: 3rem;
    position: relative; overflow: hidden;
}
.news-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 20px; }
.news-meta { font-size: 0.72rem; color: var(--muted); margin-bottom: 8px; display: flex; gap: 12px; }
.news-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.news-body p  { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.contact-info p  { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.contact-icon {
    width: 40px; height: 40px; background: rgba(200,240,0,0.08);
    border: 1px solid rgba(200,240,0,0.15);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item .label { font-size: 0.7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-item .value { font-size: 0.9rem; color: var(--text); }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 36px; }
.contact-form h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; }

/* ══════════════════════════════════════════════════════
   PROFILE
   ══════════════════════════════════════════════════════ */
.profile-layout { display: grid; grid-template-columns: 300px 1fr; gap: 24px; align-items: start; }
.profile-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 18px; padding: 32px 24px; text-align: center;
}
.profile-avatar-wrap { position: relative; display: inline-block; margin-bottom: 16px; }
.profile-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    background: rgba(200,240,0,0.1); border: 2px solid rgba(200,240,0,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem; font-weight: 800; color: var(--accent); margin: 0 auto;
}
.profile-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.profile-role-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700;
    background: rgba(200,240,0,0.08); border: 1px solid rgba(200,240,0,0.2);
    color: var(--accent); margin-bottom: 20px;
}
.edit-panel {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 18px; padding: 32px;
}
.form-section-title {
    font-size: 0.7rem; font-weight: 800; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.12em;
    margin-bottom: 20px; padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ══════════════════════════════════════════════════════
   INTEREST CHIPS
   ══════════════════════════════════════════════════════ */
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; background: var(--surface2);
    border: 1.5px solid var(--border); border-radius: 50px;
    font-size: 0.8rem; color: var(--muted);
    cursor: pointer; transition: all 0.18s; user-select: none;
}
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip.selected { background: rgba(200,240,0,0.1); border-color: var(--accent); color: var(--accent); }
.chip input[type="checkbox"] { display: none; }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
footer {
    position: relative; z-index: 1;
    border-top: 1px solid var(--border);
    padding: 32px 72px;
    display: flex; justify-content: space-between; align-items: center;
    background: var(--bg);
}
.footer-logo { font-weight: 800; font-size: 1rem; letter-spacing: -0.02em; }
.footer-logo span { color: var(--accent); }
footer p { font-size: 0.8rem; color: var(--muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════
   MISC UTILITIES
   ══════════════════════════════════════════════════════ */
.divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--muted); font-size: 0.75rem; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.empty-state { text-align: center; padding: 64px 24px; color: var(--muted); }
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state p { font-size: 0.9rem; }
.card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 18px; padding: 28px; margin-bottom: 20px;
}
h1, h2, h3 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
a { color: inherit; }
.btn-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    border: 1px solid var(--border); background: transparent;
    color: var(--muted); cursor: pointer; transition: all 0.15s;
    text-decoration: none;
}
.btn-icon:hover { background: var(--surface2); color: var(--text); }
.btn-icon.danger:hover { background: rgba(239,68,68,0.1); color: #f87171; border-color: rgba(239,68,68,0.3); }
.btn-icon.success:hover { background: rgba(200,240,0,0.1); color: var(--accent); border-color: rgba(200,240,0,0.3); }
.btn-warn { background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }
.btn-warn:hover { background: rgba(251,191,36,0.18); transform: translateY(-1px); }

/* Admin quick actions */
.actions-strip { display: flex; gap: 10px; flex-wrap: wrap; padding: 20px 24px; }
.actions-strip .btn,
.actions-strip .btn-outline { font-size: 0.82rem; padding: 9px 18px; border-radius: 50px; gap: 7px; }

/* Event picker cards in admin */
.event-pick-card {
    border: 1px solid var(--border); border-radius: 14px;
    padding: 16px 20px; cursor: pointer; text-decoration: none;
    color: inherit; transition: all 0.2s; display: block;
}
.event-pick-card:hover, .event-pick-card.active {
    border-color: rgba(200,240,0,0.35);
    background: rgba(200,240,0,0.04);
}
.event-pick-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.event-pick-card p  { font-size: 0.75rem; color: var(--muted); }
.event-pick-card .q-count { margin-top: 6px; color: var(--accent); font-weight: 700; font-size: 0.8rem; }
.event-pick-card .q-count.none { color: var(--muted); }
.event-picker { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; padding: 20px 24px; }
.event-icon-small { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
.event-icon-placeholder {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--surface2); border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Light mode overrides */
[data-theme="light"] .btn { color: #000; }
[data-theme="light"] .nav-item.active { background: rgba(100,160,0,0.1); }
[data-theme="light"] .badge-green { background: rgba(100,160,0,0.12); color: #4a7800; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .navbar { padding: 0 24px; }
    .hero { padding: 60px 32px; }
    .section { padding: 64px 32px; }
    .hero-stats { gap: 28px; }
    .contact-grid { grid-template-columns: 1fr; }
    .profile-layout { grid-template-columns: 1fr; }
    footer { padding: 24px 32px; flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 640px) {
    .main-content { margin-left: 0; padding: 20px 16px; }
    .hero h1 { font-size: clamp(2.4rem, 10vw, 3rem); }
    .nav-links a:not(.btn-nav-login):not(.btn-nav-register) { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
}