/* ── Reset & Root ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #04040e;
  --surface:      #0b0b1e;
  --surface2:     #131330;
  --border:       #252550;
  --yellow:       #f5c518;
  --yellow-dim:   #c49a00;
  --yellow-glow:  rgba(245, 197, 24, 0.18);
  --yellow-glow2: rgba(245, 197, 24, 0.45);
  --text:         rgba(255,255,255,0.92);
  --dim:          rgba(255,255,255,0.52);
  --red:          #e63946;
  --green:        #4caf79;
  --radius:       10px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Admin Corner ──────────────────────────────────────────────── */
.admin-corner {
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 999;
  color: rgba(255,255,255,0.15);
  text-decoration: none;
  transition: color 0.2s;
}

.admin-corner:hover {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

/* ── Background Stars ──────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 55%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 10%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 40%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 75%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 90%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 45%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 30%, rgba(255,255,255,0.3) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Page Main (single-viewport layout) ────────────────────────── */
.page-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.75rem 1.5rem 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ── Bat Logo Splash ───────────────────────────────────────────── */
.bat-logo-splash {
  width: min(700px, 90vw);
  margin-bottom: 50px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(245,197,24,0.5)) drop-shadow(0 0 28px rgba(245,197,24,0.2));
  animation: bat-glow 4s ease-in-out infinite;
}

@keyframes bat-glow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(245,197,24,0.6)) drop-shadow(0 0 20px rgba(245,197,24,0.35)); }
  50%       { filter: drop-shadow(0 0 16px rgba(245,197,24,0.9)) drop-shadow(0 0 36px rgba(245,197,24,0.55)); }
}

/* ── Hero Text ─────────────────────────────────────────────────── */
.hero-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hero-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--yellow);
  text-shadow:
    0 0 20px rgba(245,197,24,0.4),
    3px 3px 0 rgba(0,0,0,0.8);
  margin-bottom: 0.4rem;
}

.hero-coming-soon {
  font-family: 'Bangers', cursive;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.88);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.9);
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--dim);
  max-width: 440px;
  margin: 0 auto 2.5rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.hero-specialties {
  font-family: 'Barlow', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 0.85rem;
}

/* ── Signup Section ────────────────────────────────────────────── */
.signup-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
}

.signup-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(245,197,24,0.4), transparent);
  margin-bottom: 16px;
}

.signup-eyebrow {
  font-family: 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--yellow);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.signup-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  animation: dot-blink 2s ease-in-out infinite;
}

@keyframes dot-blink {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

.signup-sub {
  font-size: 0.8rem;
  color: var(--dim);
  margin-bottom: 14px;
}

.signup-capture {
  display: flex;
  width: 100%;
}

.signup-capture input[type="email"] {
  flex: 1;
  background: rgba(245,197,24,0.06);
  border: 1px solid rgba(245,197,24,0.22);
  border-right: none;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  padding: 10px 14px;
  outline: none;
  transition: background 0.2s, border-color 0.2s;
}

.signup-capture input[type="email"]::placeholder { color: rgba(255,255,255,0.22); }

.signup-capture input[type="email"]:focus {
  background: rgba(245,197,24,0.1);
  border-color: rgba(245,197,24,0.5);
}

.btn-capture {
  background: var(--yellow);
  color: #000;
  border: none;
  padding: 10px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-capture:hover { background: #ffd73e; }

.signup-note {
  margin-top: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-row.stacked { flex-direction: column; }

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

.field input[type="text"],
.field input[type="email"] {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.65rem 0.875rem;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.field input:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.12);
}

.field input::placeholder { color: rgba(255,255,255,0.25); }

.check-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  cursor: pointer;
  user-select: none;
}

.check-row input[type="checkbox"] {
  accent-color: var(--yellow);
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.check-row span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
}

.btn-submit {
  width: 100%;
  background: var(--yellow);
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 0.8rem 1.5rem;
  font-family: 'Bangers', cursive;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn-submit:hover {
  background: #ffd73e;
  box-shadow: 0 0 20px rgba(245,197,24,0.4);
}

.btn-submit:active { transform: scale(0.98); }

.form-msg {
  margin-top: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  text-align: center;
  display: none;
}

.form-msg.ok    { background: rgba(76,175,121,0.15); border: 1px solid rgba(76,175,121,0.4); color: #6ee0a0; display: block; }
.form-msg.error { background: rgba(230,57,70,0.12);  border: 1px solid rgba(230,57,70,0.35); color: #f08090; display: block; }

/* ── Info Cards ────────────────────────────────────────────────── */
.info-section {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.2s;
}

.info-card:hover { border-color: var(--yellow-dim); }

.info-card-icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.info-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}

.info-card-value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}

.info-card-value a { color: inherit; }
.info-card-value a:hover { color: var(--yellow); text-decoration: none; }

/* ── Wall of Shame Notice ──────────────────────────────────────── */
.shame-notice {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 25px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ff4455;
  text-decoration: none;
  border: 1px solid rgba(255,68,85,0.55);
  background: rgba(255,68,85,0.1);
  padding: 5px 14px 5px 10px;
  border-radius: 20px;
  transition: all 0.2s;
  box-shadow: 0 0 12px rgba(255,68,85,0.2);
}

.shame-notice:hover {
  color: #ff6677;
  border-color: rgba(255,68,85,0.85);
  background: rgba(255,68,85,0.18);
  box-shadow: 0 0 20px rgba(255,68,85,0.4);
  text-decoration: none;
}

.shame-notice-link {
  font-weight: 600;
  color: #e06070;
}

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 0.6rem 1.5rem;
  text-align: center;
}

.footer-inner { max-width: 820px; margin: 0 auto; }

.footer-logo {
  font-family: 'Bangers', cursive;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.footer-details {
  font-size: 0.85rem;
  color: var(--dim);
  margin-bottom: 0.5rem;
}

.footer-details .sep { margin: 0 0.5rem; opacity: 0.4; }
.footer-details a { color: var(--dim); }
.footer-details a:hover { color: var(--yellow); }

.footer-publishers {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.35rem;
}

.footer-publishers a {
  color: rgba(255,255,255,0.28);
}

.footer-publishers a:hover {
  color: var(--yellow);
  text-decoration: none;
}

.footer-pub-label {
  color: rgba(255,255,255,0.18);
  margin-right: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── Admin Styles ──────────────────────────────────────────────── */
.admin-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-header h1 {
  font-family: 'Bangers', cursive;
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
}

.admin-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  flex: 1;
  min-width: 150px;
}

.stat-card-num {
  font-family: 'Bangers', cursive;
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
}

.stat-card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-top: 0.25rem;
}

.admin-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead { background: var(--surface2); }

th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

td {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}

tr:hover td { background: rgba(255,255,255,0.02); }

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-yes { background: rgba(76,175,121,0.15); color: #6ee0a0; }
.badge-no  { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.35); }

.btn { display: inline-block; padding: 0.45rem 1rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600; cursor: pointer; border: none; font-family: 'Barlow', sans-serif; transition: opacity 0.15s; }
.btn:hover { opacity: 0.85; text-decoration: none; }
.btn-primary { background: var(--yellow); color: #000; }
.btn-danger  { background: rgba(230,57,70,0.15); color: #f08090; border: 1px solid rgba(230,57,70,0.3); }
.btn-sm { padding: 0.3rem 0.7rem; font-size: 0.78rem; }

/* ── Login Form ────────────────────────────────────────────────── */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 360px;
}

.login-card h1 {
  font-family: 'Bangers', cursive;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin-bottom: 0.25rem;
}

.login-card p {
  font-size: 0.85rem;
  color: var(--dim);
  margin-bottom: 1.5rem;
}

.login-card .field { margin-bottom: 1rem; }
.login-card .btn { width: 100%; text-align: center; margin-top: 0.5rem; }

.alert { padding: 0.65rem 1rem; border-radius: 6px; font-size: 0.875rem; margin-bottom: 1rem; }
.alert-error { background: rgba(230,57,70,0.12); border: 1px solid rgba(230,57,70,0.35); color: #f08090; }

/* ── Admin GA Analytics ────────────────────────────────────────── */
.ga-admin-section { margin-top: 2.5rem; border-top: 1px solid var(--border); padding-top: 2rem; }
.ga-admin-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; flex-wrap: wrap; gap: 0.75rem; }
.ga-admin-title { font-family: 'Bangers', cursive; font-size: 1.4rem; letter-spacing: 0.06em; color: var(--yellow); }
.ga-tabs { display: flex; }
.ga-tab { padding: 4px 14px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; color: var(--dim); border: 1px solid var(--border); border-right: none; transition: all 0.15s; }
.ga-tab:last-child { border-right: 1px solid var(--border); border-radius: 0 4px 4px 0; }
.ga-tab:first-child { border-radius: 4px 0 0 4px; }
.ga-tab:hover { color: var(--yellow); border-color: rgba(245,197,24,0.4); text-decoration: none; }
.ga-tab.on { background: var(--yellow); color: #000; border-color: var(--yellow); }
.ga-error { background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.3); border-radius: 6px; padding: 1rem; color: #f08090; font-size: 0.85rem; }
.ga-live-card { display: flex; align-items: center; gap: 12px; background: rgba(76,175,121,0.06); border: 1px solid rgba(76,175,121,0.3); border-left: 3px solid #4caf79; border-radius: 6px; padding: 12px 16px; margin-bottom: 4px; cursor: pointer; transition: background 0.15s; }
.ga-live-card:hover { background: rgba(76,175,121,0.1); }
.ga-live-dot { width: 9px; height: 9px; border-radius: 50%; background: #4caf79; flex-shrink: 0; animation: ga-pulse 2s ease-in-out infinite; }
@keyframes ga-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(76,175,121,.5)} 50%{box-shadow:0 0 0 5px rgba(76,175,121,0)} }
.ga-live-num { font-family: 'Bangers', cursive; font-size: 1.6rem; color: #4caf79; line-height: 1; letter-spacing: 0.04em; }
.ga-live-text { flex: 1; font-size: 0.8rem; color: var(--dim); }
.ga-live-text strong { color: var(--text); display: block; }
.ga-live-chev { font-size: 0.7rem; color: #4caf79; transition: transform 0.2s; }
.ga-live-card.open .ga-live-chev { transform: rotate(90deg); }
.ga-live-detail { display: none; border: 1px solid rgba(76,175,121,0.25); border-top: none; border-radius: 0 0 6px 6px; background: rgba(76,175,121,0.03); padding: 14px 16px; margin-bottom: 1rem; }
.ga-live-detail.open { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.rt-title { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #4caf79; margin-bottom: 8px; }
.rt-row { display: flex; justify-content: space-between; padding: 3px 0; border-bottom: 1px solid rgba(76,175,121,0.12); font-size: 0.78rem; }
.rt-row:last-child { border-bottom: none; }
.rt-label { color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 78%; }
.rt-val { color: #4caf79; font-weight: 600; }
.rt-empty { font-size: 0.78rem; color: var(--dim); font-style: italic; }
.ga-stats-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-top: 10px; margin-bottom: 1rem; }
.ga-stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.ga-stat-val { font-family: 'Bangers', cursive; font-size: 1.6rem; color: var(--yellow); line-height: 1; letter-spacing: 0.04em; }
.ga-stat-lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dim); margin-top: 3px; }
.ga-spark-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 1rem; }
.ga-spark-lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dim); margin-bottom: 8px; }
.ga-spark { display: flex; align-items: flex-end; gap: 2px; height: 70px; }
.ga-bar { flex: 1; min-height: 2px; background: var(--border); border-radius: 1px 1px 0 0; transition: background 0.15s; cursor: default; }
.ga-bar.pk { background: var(--yellow); }
.ga-bar:hover { background: rgba(245,197,24,0.5); }
.ga-bar.pk:hover { background: #ffd73e; }
.ga-toggle-btn { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; background: transparent; border: 1px solid var(--border); border-radius: 4px; font-size: 0.75rem; font-weight: 600; color: var(--dim); cursor: pointer; transition: all 0.15s; margin-bottom: 1rem; }
.ga-toggle-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.ga-toggle-arrow { transition: transform 0.2s; display: inline-block; font-size: 0.6rem; }
.ga-toggle-btn.open .ga-toggle-arrow { transform: rotate(90deg); }
.ga-details { display: none; }
.ga-details.open { display: block; }
.ga-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.ga-geo-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.rank-empty { font-size: 0.78rem; color: var(--dim); font-style: italic; }
.ga-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.ga-panel-title { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--yellow); margin-bottom: 12px; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.hbar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.hbar-label { font-size: 0.78rem; color: var(--text); width: 110px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hbar-track { flex: 1; height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.hbar-fill { height: 100%; background: var(--yellow); border-radius: 3px; opacity: 0.7; }
.hbar-val { font-size: 0.75rem; color: var(--dim); width: 38px; text-align: right; flex-shrink: 0; }
.rank-row { display: flex; justify-content: space-between; align-items: baseline; padding: 5px 0; border-bottom: 1px solid var(--border); }
.rank-row:last-child { border-bottom: none; }
.rank-label { font-size: 0.8rem; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 72%; }
.rank-val { font-size: 0.75rem; color: var(--dim); flex-shrink: 0; }
.ga-footer-row { display: flex; align-items: center; gap: 14px; margin-top: 0.75rem; }
.ga-meta { font-size: 0.72rem; color: var(--dim); }
.ga-refresh { font-size: 0.72rem; color: var(--yellow); text-decoration: none; }
.ga-refresh:hover { text-decoration: underline; }
.spark-tip { position: fixed; pointer-events: none; display: none; background: var(--surface2); border: 1px solid var(--border); color: var(--text); font-size: 0.72rem; padding: 4px 10px; border-radius: 4px; white-space: nowrap; z-index: 999; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 520px) {
  .form-row { flex-direction: column; }
  .admin-header { flex-direction: column; align-items: flex-start; }
  td, th { padding: 0.6rem 0.65rem; }
}
