/* ═══════════════════════════════════════════════════════════
   NASS LASU Awards 2025 — Production Stylesheet
   Premium dark/gold aesthetic with glassmorphism
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --ink:        #080708;
  --ink-2:      #101010;
  --ink-3:      #181818;
  --ink-4:      #222222;
  --ink-5:      #2e2e2e;
  --dust:       #b0a898;
  --fog:        #6a6460;
  --gold:       #c8a84b;
  --gold-hi:    #e8c96a;
  --gold-lo:    #7a6220;
  --gold-glow:  rgba(200,168,75,0.18);
  --cream:      #f0ebe0;
  --white:      #faf8f4;
  --red:        #b83030;
  --green-dim:  rgba(74,190,120,0.15);
  --green-hi:   #4abe78;
  --radius:     0px;
  --ease:       cubic-bezier(0.16,1,0.3,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NOISE GRAIN ─────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.045'/%3E%3C/svg%3E");
  opacity: 1;
}

/* ─── VIEWS ───────────────────────────────────────── */
.view { display: none; min-height: 100vh; }
.view.active { display: block; }

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  background: rgba(8,7,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,168,75,0.12);
}
.nav-brand { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo { height: 32px; width: auto; object-fit: contain; border-radius: 50%; }
.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-edition {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.2em;
  color: var(--fog);
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fog);
  background: none; border: none; cursor: pointer;
  padding: 0.4rem 0.85rem;
  transition: color 0.2s;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}
.nav-link:hover { color: var(--cream); }
.nav-link-gold {
  color: var(--gold);
  border: 1px solid rgba(200,168,75,0.3);
  margin-left: 0.5rem;
}
.nav-link-gold:hover { background: var(--gold-glow); color: var(--gold-hi); }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 5rem 2rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse at center, rgba(200,168,75,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-scanlines {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.06) 3px, rgba(0,0,0,0.06) 4px
  );
}
.hero-rule-left, .hero-rule-right {
  position: absolute; top: 10%; bottom: 10%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(200,168,75,0.25), transparent);
}
.hero-rule-left { left: 5rem; }
.hero-rule-right { right: 5rem; }
.hero-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.35em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; flex: 0 0 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-lo));
}
.hero-eyebrow::after { background: linear-gradient(90deg, var(--gold-lo), transparent); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 900; line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 0.15em;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.25s forwards;
}
.hero-title-top { display: block; color: var(--cream); }
.hero-title-bottom {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-lo);
  font-style: italic;
}
.hero-awards-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400; font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.4s forwards;
}
.hero-desc {
  font-size: 0.85rem; color: var(--dust);
  letter-spacing: 0.06em; line-height: 1.8;
  max-width: 480px; margin: 0 auto 3rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.55s forwards;
}
.hero-cta-row {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.7s forwards;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; border: none;
  padding: 0.8rem 2rem;
  transition: all 0.22s var(--ease);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0; transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover:not(:disabled) { background: var(--gold-hi); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { border-color: rgba(200,168,75,0.4); color: var(--gold); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.67rem; }
.btn-danger { background: var(--red); color: var(--white); }
.btn-danger:hover { background: #d03535; }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(200,168,75,0.4);
}
.btn-outline-gold:hover { background: var(--gold-glow); border-color: var(--gold); }
.btn-success { background: rgba(74,190,120,0.2); color: var(--green-hi); border: 1px solid rgba(74,190,120,0.3); }

/* ─── SCROLL INDICATOR ──────────────────────────── */
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: 'DM Mono', monospace; font-size: 0.55rem;
  letter-spacing: 0.25em; color: var(--fog); text-transform: uppercase;
  animation: fadeUp 1s var(--ease) 1.2s both;
  cursor: pointer;
}
.scroll-hint-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold-lo), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ─── SECTION HEADER ──────────────────────────────── */
.section { padding: 5rem 3rem; max-width: 1200px; margin: 0 auto; }
.section-header {
  display: flex; align-items: center; gap: 2rem;
  margin-bottom: 3.5rem;
}
.section-rule { flex: 1; height: 1px; background: rgba(200,168,75,0.15); }
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  white-space: nowrap;
}

/* ─── CATEGORY GRID ───────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.08);
}
.cat-card {
  background: var(--ink-2);
  padding: 2.25rem 2rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s var(--ease);
}
.cat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.cat-card:hover { background: var(--ink-3); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card-index {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.25em;
  color: var(--gold-lo); text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.cat-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--cream); line-height: 1.2;
  margin-bottom: 0.6rem;
}
.cat-card-meta {
  font-size: 0.75rem; color: var(--fog);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.cat-card-price {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.15em;
  color: var(--gold); text-transform: uppercase;
}
.cat-card-arrow {
  position: absolute; bottom: 2rem; right: 2rem;
  color: var(--gold-lo); font-size: 1.1rem;
  transition: all 0.25s var(--ease);
}
.cat-card:hover .cat-card-arrow {
  color: var(--gold); transform: translate(3px, -3px);
}

/* ─── VOTING VIEW ─────────────────────────────────── */
.voting-head {
  padding: 2.5rem 3rem 2rem;
  border-bottom: 1px solid rgba(200,168,75,0.1);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.voting-cat-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.voting-cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--cream);
  line-height: 1.15;
}
.voting-cat-sub { font-size: 0.78rem; color: var(--fog); margin-top: 0.4rem; letter-spacing: 0.05em; }

.nominees-wrap { max-width: 820px; margin: 0 auto; padding: 2.5rem 3rem; }

.nominee-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.4rem 1.75rem;
  border: 1px solid rgba(200,168,75,0.08);
  margin-bottom: 0.75rem;
  cursor: pointer;
  background: var(--ink-2);
  transition: all 0.2s var(--ease);
  position: relative;
}
.nominee-item:hover { border-color: rgba(200,168,75,0.3); background: var(--ink-3); }
.nominee-item.sel {
  border-color: var(--gold);
  background: rgba(200,168,75,0.06);
}
.nominee-item.sel::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
}
.nom-radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid rgba(200,168,75,0.2);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.18s;
}
.nominee-item.sel .nom-radio {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,168,75,0.15);
}
.nom-radio-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink); opacity: 0;
  transition: opacity 0.15s;
}
.nominee-item.sel .nom-radio-dot { opacity: 1; }
.nom-info { flex: 1; }
.nom-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--cream);
}
.nom-dept { font-size: 0.73rem; color: var(--fog); letter-spacing: 0.06em; margin-top: 0.15rem; }

.vote-bar {
  position: sticky; bottom: 0; z-index: 100;
  background: rgba(10,9,10,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(200,168,75,0.15);
  padding: 1.25rem 3rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.vote-bar-qty { display: flex; align-items: center; gap: 1rem; }
.vote-bar-qty-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.2em;
  color: var(--fog); text-transform: uppercase;
}
.qty-row { display: flex; align-items: center; gap: 0.75rem; }
.qty-btn {
  width: 34px; height: 34px;
  background: var(--ink-4); border: 1px solid rgba(200,168,75,0.18);
  color: var(--gold); font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.qty-btn:hover { background: var(--ink-5); border-color: var(--gold); }
.qty-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--cream);
  min-width: 2rem; text-align: center;
}
.vote-bar-total { margin-left: auto; text-align: right; }
.vbt-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.2em;
  color: var(--fog); text-transform: uppercase; margin-bottom: 0.1rem;
}
.vbt-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
  line-height: 1;
}

/* ─── PAYMENT MODAL ───────────────────────────────── */
.overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(4,3,4,0.88);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

.modal {
  background: var(--ink-2);
  border: 1px solid rgba(200,168,75,0.2);
  width: 100%; max-width: 500px;
  padding: 2.75rem;
  position: relative;
  animation: slideUp 0.3s var(--ease);
}
@keyframes slideUp { from { opacity:0; transform:translateY(20px) } to { opacity:1; transform:translateY(0) } }

.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: none; border: none; color: var(--fog);
  cursor: pointer; font-size: 1.1rem; line-height: 1;
  transition: color 0.15s;
}
.modal-close:hover { color: var(--cream); }
.modal-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--cream);
  margin-bottom: 0.3rem;
}
.modal-sub { font-size: 0.75rem; color: var(--fog); letter-spacing: 0.05em; margin-bottom: 2rem; }

.field { margin-bottom: 1.25rem; }
.field-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.22em;
  color: var(--fog); text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.field-input {
  width: 100%;
  background: var(--ink-3);
  border: 1px solid rgba(200,168,75,0.15);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  padding: 0.72rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.field-input:focus { border-color: var(--gold); }
.field-input::placeholder { color: var(--fog); }

.pay-summary {
  background: var(--ink-3);
  border: 1px solid rgba(200,168,75,0.1);
  padding: 1.4rem;
  margin-bottom: 1.5rem;
}
.ps-row {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; color: var(--fog);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(200,168,75,0.06);
}
.ps-row:last-child {
  border-bottom: none;
  padding-top: 0.75rem; margin-top: 0.35rem;
  color: var(--cream); font-weight: 600;
  font-size: 0.95rem;
}
.ps-row:last-child span:last-child { color: var(--gold); }

.spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(200,168,75,0.25);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 0.65s linear infinite;
  vertical-align: middle; margin-right: 0.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── RECEIPT ─────────────────────────────────────── */
.receipt-wrap {
  min-height: calc(100vh - 64px);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 2rem;
}
.receipt {
  background: var(--ink-2);
  border: 1px solid rgba(200,168,75,0.2);
  width: 100%; max-width: 480px;
  position: relative; overflow: hidden;
}
.receipt::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.receipt-head {
  text-align: center;
  padding: 2.5rem 2rem 2rem;
  border-bottom: 1px dashed rgba(200,168,75,0.15);
  margin-bottom: 1.5rem;
}
.receipt-check {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(74,190,120,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem; color: var(--green-hi);
  animation: popIn 0.4s var(--ease) 0.1s both;
}
@keyframes popIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.receipt-confirmed {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--cream);
  margin-bottom: 0.3rem;
}
.receipt-ref {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.25em;
  color: var(--gold); text-transform: uppercase;
}
.receipt-body { padding: 0 2rem 2rem; }
.receipt-row {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; color: var(--fog);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(200,168,75,0.06);
}
.receipt-row:last-child {
  border-bottom: none;
  color: var(--cream); font-weight: 600; font-size: 0.92rem;
  padding-top: 1rem; margin-top: 0.5rem;
  border-top: 1px solid rgba(200,168,75,0.12);
}
.receipt-row:last-child span:last-child { color: var(--gold); }
.receipt-row-label { color: var(--fog); }
.receipt-footer {
  display: flex; gap: 0.75rem;
  padding: 0 2rem 2rem;
}
.receipt-watermark {
  position: absolute; bottom: -1.5rem; right: -1rem;
  font-family: 'Playfair Display', serif;
  font-size: 6rem; font-weight: 900; font-style: italic;
  color: rgba(200,168,75,0.04);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

/* ─── TOAST ───────────────────────────────────────── */
.toast-stack {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9000;
  display: flex; flex-direction: column; gap: 0.5rem;
  max-width: 340px;
}
.toast {
  background: var(--ink-3);
  border: 1px solid rgba(200,168,75,0.25);
  padding: 0.9rem 1.4rem;
  font-size: 0.82rem; color: var(--cream);
  line-height: 1.5;
  animation: toastIn 0.3s var(--ease);
  border-left: 3px solid var(--gold);
}
.toast.err { border-left-color: var(--red); }
.toast.ok { border-left-color: var(--green-hi); }
@keyframes toastIn { from { opacity:0; transform:translateX(16px) } to { opacity:1; transform:translateX(0) } }

/* ─── ADMIN ───────────────────────────────────────── */
.admin-shell { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-side {
  background: var(--ink-2);
  border-right: 1px solid rgba(200,168,75,0.08);
  padding: 1.75rem 0;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.admin-side-logo {
  padding: 0 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(200,168,75,0.08);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.admin-logo { width: 28px; height: 28px; object-fit: contain; border-radius: 50%; }
.admin-side-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--gold);
  text-transform: uppercase;
}
.admin-side-logo-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.2em;
  color: var(--fog); text-transform: uppercase; margin-top: 2px;
}
.side-section {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.25em;
  color: var(--gold-lo); text-transform: uppercase;
  padding: 0.9rem 1.5rem 0.4rem;
}
.side-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.62rem 1.5rem;
  font-size: 0.8rem; color: var(--fog);
  cursor: pointer; border-left: 2px solid transparent;
  transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.side-item:hover { color: var(--cream); background: rgba(200,168,75,0.04); }
.side-item.on { color: var(--gold); border-left-color: var(--gold); background: rgba(200,168,75,0.06); }
.admin-main-wrap { padding: 2.5rem 3rem; overflow-y: auto; }
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2.75rem; flex-wrap: wrap; gap: 1rem;
}
.admin-page-h {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--cream); line-height: 1;
}
.admin-page-h span { color: var(--gold); }
.admin-page-sub { font-size: 0.75rem; color: var(--fog); margin-top: 0.3rem; letter-spacing: 0.04em; }

/* STATS */
.stats-row { display: grid; grid-template-columns: repeat(auto-fill,minmax(170px,1fr)); gap: 1px; background: rgba(200,168,75,0.07); border: 1px solid rgba(200,168,75,0.07); margin-bottom: 3rem; }
.stat-box { background: var(--ink-2); padding: 1.5rem 1.75rem; }
.stat-lbl { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.22em; color:var(--fog); text-transform:uppercase; margin-bottom:0.5rem; }
.stat-val { font-family:'Playfair Display',serif; font-size:2.2rem; font-weight:700; color:var(--gold); line-height:1; }
.stat-sub { font-size:0.7rem; color:var(--fog); margin-top:0.3rem; }

/* TABLE */
.data-table { width:100%; border-collapse:collapse; font-size:0.82rem; }
.data-table th { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.18em; color:var(--gold-lo); text-transform:uppercase; text-align:left; padding:0.7rem 1rem; border-bottom:1px solid rgba(200,168,75,0.1); }
.data-table td { padding:0.85rem 1rem; border-bottom:1px solid rgba(200,168,75,0.05); vertical-align:middle; color:var(--dust); }
.data-table tr:hover td { background:rgba(200,168,75,0.025); }

/* BADGE */
.badge { display:inline-block; font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.1em; padding:0.2rem 0.65rem; text-transform:uppercase; font-weight:500; }
.badge-gold { background:rgba(200,168,75,0.12); color:var(--gold); border:1px solid rgba(200,168,75,0.25); }
.badge-dim { background:rgba(255,255,255,0.05); color:var(--fog); border:1px solid rgba(255,255,255,0.08); }
.badge-green { background:rgba(74,190,120,0.12); color:var(--green-hi); border:1px solid rgba(74,190,120,0.2); }
.badge-red { background:rgba(184,48,48,0.15); color:#e06060; border:1px solid rgba(184,48,48,0.25); }

/* FORM BLOCKS */
.form-block { background:var(--ink-2); border:1px solid rgba(200,168,75,0.1); padding:2rem; margin-bottom:1.5rem; }
.form-block-title {
  font-family:'Playfair Display',serif;
  font-size:1.1rem; font-weight:600; color:var(--gold);
  padding-bottom:1rem; margin-bottom:1.5rem;
  border-bottom:1px solid rgba(200,168,75,0.1);
  display:flex; justify-content:space-between; align-items:center;
}
.admin-field { margin-bottom:1.25rem; }
.admin-field label { display:block; font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.2em; color:var(--fog); text-transform:uppercase; margin-bottom:0.45rem; }
.admin-field input, .admin-field textarea, .admin-field select {
  width:100%; background:var(--ink-3); border:1px solid rgba(200,168,75,0.15);
  color:var(--cream); font-family:'DM Sans',sans-serif; font-size:0.88rem;
  padding:0.65rem 1rem; outline:none; resize:vertical; -webkit-appearance:none;
  transition:border-color 0.2s;
}
.admin-field input:focus, .admin-field textarea:focus, .admin-field select:focus { border-color:var(--gold); }
.admin-field input::placeholder { color:var(--fog); }

/* NOMINEE TAGS */
.nom-tag { display:inline-flex; align-items:center; gap:0.5rem; background:rgba(200,168,75,0.08); border:1px solid rgba(200,168,75,0.18); padding:0.25rem 0.75rem; font-size:0.75rem; color:var(--dust); margin:0.2rem; }
.nom-tag-x { background:none; border:none; color:var(--gold-lo); cursor:pointer; font-size:0.85rem; line-height:1; transition:color 0.15s; }
.nom-tag-x:hover { color:var(--red); }
.add-nom-row { display:flex; gap:0.5rem; margin-top:0.5rem; }
.add-nom-row input { flex:1; background:var(--ink-3); border:1px solid rgba(200,168,75,0.15); color:var(--cream); font-family:'DM Sans',sans-serif; font-size:0.88rem; padding:0.65rem 1rem; outline:none; }
.add-nom-row input:focus { border-color:var(--gold); }

/* RESULTS */
.results-card { background:var(--ink-2); border:1px solid rgba(200,168,75,0.1); padding:2rem; margin-bottom:1.25rem; }
.results-card-head { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:1.75rem; flex-wrap:wrap; gap:0.5rem; }
.results-card-name { font-family:'Playfair Display',serif; font-size:1.25rem; font-weight:600; color:var(--cream); }
.result-nom-row { display:flex; align-items:center; gap:1rem; margin-bottom:1rem; }
.result-nom-name { font-size:0.83rem; color:var(--fog); min-width:150px; }
.result-nom-name.lead { color:var(--gold-hi); font-weight:600; }
.result-bar { flex:1; height:5px; background:rgba(255,255,255,0.05); overflow:hidden; }
.result-bar-fill { height:100%; background:linear-gradient(90deg,var(--gold-lo),var(--gold)); transition:width 0.9s var(--ease); }
.result-nom-count { font-family:'DM Mono',monospace; font-size:0.72rem; color:var(--gold); min-width:70px; text-align:right; }

/* PAYSTACK CONNECT */
.pk-box { background:var(--ink-3); border:1px solid rgba(200,168,75,0.12); padding:1.75rem; margin-bottom:1.5rem; }
.pk-status-row { display:flex; align-items:center; gap:1rem; margin-bottom:1.5rem; }
.pk-dot { width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,0.12); flex-shrink:0; }
.pk-dot.live { background:var(--green-hi); box-shadow:0 0 8px rgba(74,190,120,0.5); }
.pk-dot.test { background:#fbbf24; box-shadow:0 0 8px rgba(251,191,36,0.4); }
.pk-status-txt { font-size:0.8rem; color:var(--fog); }
.pk-status-txt strong { color:var(--cream); }
.pk-mode-toggle { display:flex; border:1px solid rgba(200,168,75,0.18); overflow:hidden; width:fit-content; margin-bottom:1.25rem; }
.pk-mode-btn { font-family:'DM Mono',monospace; font-size:0.65rem; letter-spacing:0.15em; text-transform:uppercase; padding:0.45rem 1.2rem; cursor:pointer; background:transparent; border:none; color:var(--fog); transition:all 0.18s; }
.pk-mode-btn.on { background:var(--gold); color:var(--ink); }
.pk-input-row { display:flex; gap:0.75rem; }
.pk-input-row input { flex:1; background:var(--ink-4); border:1px solid rgba(200,168,75,0.15); color:var(--cream); font-family:'DM Mono',monospace; font-size:0.82rem; padding:0.65rem 1rem; outline:none; }
.pk-input-row input:focus { border-color:var(--gold); }
.pk-hint { font-size:0.72rem; color:var(--fog); margin-top:0.75rem; line-height:1.7; }
.pk-hint a { color:var(--gold); text-decoration:none; }
.pk-hint a:hover { text-decoration:underline; }

/* EXPORT */
.export-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:1px; background:rgba(200,168,75,0.07); margin-bottom:1.5rem; }
.export-card { background:var(--ink-2); padding:1.75rem; cursor:pointer; transition:background 0.2s; }
.export-card:hover { background:var(--ink-3); }
.export-card-title { font-family:'Playfair Display',serif; font-size:1.05rem; font-weight:600; margin-bottom:0.4rem; }
.export-card-desc { font-size:0.75rem; color:var(--fog); line-height:1.6; margin-bottom:1.25rem; }
.export-card-btn { font-family:'DM Mono',monospace; font-size:0.6rem; letter-spacing:0.15em; text-transform:uppercase; cursor:pointer; border:none; padding:0.5rem 1rem; transition:all 0.2s; }
.ec-votes { color:var(--gold); background:rgba(200,168,75,0.1); border:1px solid rgba(200,168,75,0.25); }
.ec-results { color:var(--green-hi); background:rgba(74,190,120,0.1); border:1px solid rgba(74,190,120,0.22); }
.ec-revenue { color:#93c5fd; background:rgba(59,130,246,0.1); border:1px solid rgba(59,130,246,0.22); }
.ec-all { color:var(--dust); background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); }

/* SECTION DIVIDER */
.sdiv { display:flex; align-items:center; gap:1.5rem; margin:2.25rem 0 1.5rem; }
.sdiv-line { flex:1; height:1px; background:rgba(200,168,75,0.08); }
.sdiv-text { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.25em; color:var(--gold-lo); text-transform:uppercase; white-space:nowrap; }

/* EMPTY */
.empty { text-align:center; padding:4rem 2rem; }
.empty p { font-family:'Playfair Display',serif; font-size:1.4rem; color:var(--fog); margin-bottom:0.5rem; font-style:italic; }
.empty small { font-size:0.72rem; color:var(--gold-lo); letter-spacing:0.1em; }

/* LOGIN */
.login-wrap { min-height:100vh; display:flex; align-items:center; justify-content:center; padding:2rem; }
.login-box { background:var(--ink-2); border:1px solid rgba(200,168,75,0.18); padding:3rem; width:100%; max-width:420px; position:relative; overflow:hidden; }
.login-box::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,var(--gold),transparent); }
.login-title { font-family:'Playfair Display',serif; font-size:0.85rem; font-weight:700; letter-spacing:0.2em; color:var(--gold); text-transform:uppercase; margin-bottom:0.25rem; }
.login-sub { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.22em; color:var(--fog); text-transform:uppercase; margin-bottom:2.5rem; }

/* STEPS */
.steps { display:flex; flex-direction:column; gap:1.25rem; }
.step { display:flex; align-items:flex-start; gap:1.25rem; }
.step-num { width:30px; height:30px; flex-shrink:0; background:rgba(200,168,75,0.1); border:1px solid rgba(200,168,75,0.2); display:flex; align-items:center; justify-content:center; font-family:'DM Mono',monospace; font-size:0.68rem; color:var(--gold); }
.step-body { padding-top:0.2rem; }
.step-title { font-size:0.88rem; font-weight:600; color:var(--cream); margin-bottom:0.2rem; }
.step-desc { font-size:0.78rem; color:var(--fog); line-height:1.6; }

/* CODE PREVIEW */
.code-preview { font-family:'DM Mono',monospace; font-size:0.72rem; color:var(--fog); background:var(--ink-3); border:1px solid rgba(200,168,75,0.08); padding:1.25rem; max-height:250px; overflow-y:auto; white-space:pre; line-height:1.8; }

/* GRID 2 */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px) }
  to   { opacity:1; transform:translateY(0) }
}

/* LOADING STATE */
.loading-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  transition: opacity 0.5s var(--ease);
}
.loading-overlay.fade-out { opacity: 0; pointer-events: none; }
.loading-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--gold);
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* RESPONSIVE */
@media(max-width:900px) {
  .admin-shell { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .admin-side { 
    position: sticky; top: 0; z-index: 150; height: auto; 
    display: flex; align-items: center; overflow-x: auto; 
    padding: 0.5rem 1rem; border-right: none; 
    border-bottom: 1px solid rgba(200,168,75,0.15); 
    background: rgba(16,16,16,0.98); backdrop-filter: blur(10px);
  }
  .admin-side::-webkit-scrollbar { display: none; }
  .admin-side-logo, .side-section { display: none; }
  .side-item { 
    white-space: nowrap; padding: 0.5rem 1rem; border-left: none; 
    border-bottom: 2px solid transparent; 
  }
  .side-item.on { border-left-color: transparent; border-bottom-color: var(--gold); background: transparent; }
  
  .nav { padding: 0 1.5rem; }
  .section { padding: 3rem 1.5rem; }
  .voting-head { padding: 1.5rem; }
  .nominees-wrap { padding: 1.5rem; }
  .vote-bar { padding: 1rem 1.5rem; }
  .hero-rule-left, .hero-rule-right { display: none; }
}
@media(max-width:680px) {
  .grid-2 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; }
}
