/* ═══════════════════════════════════════════════════════════════
   PocketMC Telemetry Dashboard — Styles
   Sleek, Glowing Aesthetic
   ═══════════════════════════════════════════════════════════════ */

/* ── Base & Reset ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  scroll-padding-top: max(80px, env(safe-area-inset-top, 0px) + 60px);
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at center, #121212 0%, #000000 100%);
  color: #f8fafc;
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Gracefully fade out scrolling content before it hits the mobile status bar */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: max(72px, calc(env(safe-area-inset-top, 40px) + 32px));
  background: linear-gradient(to bottom, #000000 30%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
  z-index: 49;
  pointer-events: none;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { display: none; width: 0; height: 0; }
* { scrollbar-width: none; -ms-overflow-style: none; }

/* ── Typography ────────────────────────────────────────────── */
.num-data {
  font-variant-numeric: tabular-nums;
}

/* ── Layout ────────────────────────────────────────────────── */
.app-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 640px) {
  .app-wrapper { padding: 24px; }
}

@media (min-width: 1024px) {
  .app-wrapper { padding: 32px; }
}

/* ═══════════════════════════════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════════════════════════════ */
.topbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 16px;
  z-index: 50;
}

@media (min-width: 640px) {
  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    margin-bottom: 28px;
    top: 24px;
  }
}

@media (min-width: 1024px) {
  .topbar {
    padding: 32px;
    margin-bottom: 32px;
    top: 32px;
  }
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 640px) {
  .topbar-left { gap: 16px; }
}

.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .logo-mark {
    width: 44px;
    height: 44px;
  }
}

.header-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #f8fafc;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .header-title { font-size: 1.125rem; }
}

.header-sub {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 1px;
}

@media (min-width: 640px) {
  .header-sub { font-size: 0.8125rem; margin-top: 2px; }
}

/* ── Topbar controls ──────────────────────────────────────── */
.topbar-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .topbar-controls { gap: 10px; }
}

/* Last Updated badge */
.last-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: #94a3b8;
  user-select: none;
}

@media (min-width: 640px) {
  .last-updated-badge {
    padding: 5px 14px;
    font-size: 0.8125rem;
  }
}

.last-updated-badge svg {
  width: 12px;
  height: 12px;
}

@media (min-width: 640px) {
  .last-updated-badge svg { width: 14px; height: 14px; }
}

.last-updated-time {
  color: #f8fafc;
  font-weight: 600;
}

/* Refresh button */
.btn-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #e2e8f0;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.4;
  user-select: none;
  touch-action: manipulation;
}

.btn-refresh svg { width: 13px; height: 13px; }

@media (min-width: 640px) {
  .btn-refresh {
    padding: 5px 16px;
    font-size: 0.8125rem;
  }
  .btn-refresh svg { width: 14px; height: 14px; }
}

.btn-refresh:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-refresh:active {
  transform: translateY(1px);
}

/* ═══════════════════════════════════════════════════════════════
   ERROR PANEL
   ═══════════════════════════════════════════════════════════════ */
.error-panel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  background: rgba(239, 68, 68, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 16px;
}

@media (min-width: 640px) {
  .error-panel {
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
  }
}

.error-panel.hidden { display: none; }

.error-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fca5a5;
  margin-top: 2px;
}

.error-icon svg { width: 16px; height: 16px; }

@media (min-width: 640px) {
  .error-icon {
    width: 36px;
    height: 36px;
  }
  .error-icon svg { width: 18px; height: 18px; }
}

.error-body { flex: 1; min-width: 0; }

.error-body h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fca5a5;
  margin-bottom: 4px;
}

@media (min-width: 640px) {
  .error-body h3 { font-size: 0.9375rem; }
}

.error-body p {
  font-size: 0.75rem;
  color: rgba(252, 165, 165, 0.8);
  margin-bottom: 10px;
  max-width: 100%;
}

@media (min-width: 640px) {
  .error-body p {
    font-size: 0.8125rem;
    margin-bottom: 12px;
    max-width: 520px;
  }
}

.error-body .err-last { color: #fecaca; }

.btn-retry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fca5a5;
  cursor: pointer;
  transition: all 0.2s ease;
  touch-action: manipulation;
}

@media (min-width: 640px) {
  .btn-retry {
    font-size: 0.8125rem;
  }
}

.btn-retry:hover {
  background: rgba(239, 68, 68, 0.25);
  color: #fecaca;
}

.btn-retry:active {
  transform: translateY(1px);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION CARDS
   ═══════════════════════════════════════════════════════════════ */
.section-card {
  margin-bottom: 20px;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .section-card {
    margin-bottom: 28px;
    padding: 24px;
  }
}

@media (min-width: 1024px) {
  .section-card {
    margin-bottom: 32px;
    padding: 32px;
  }
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .section-header { margin-bottom: 24px; }
}

@media (min-width: 1024px) {
  .section-header { margin-bottom: 32px; }
}

.section-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 640px) {
  .section-title-group { gap: 12px; }
}

.section-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-icon svg { width: 18px; height: 18px; }

@media (min-width: 640px) {
  .section-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }
  .section-icon svg { width: 20px; height: 20px; }
}

.section-icon-green  { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.section-icon-blue   { background: rgba(14, 165, 233, 0.15); color: #38bdf8; }
.section-icon-purple { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }

.section-title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #f8fafc;
}

@media (min-width: 640px) {
  .section-title { font-size: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════════
   KPI GRID
   ═══════════════════════════════════════════════════════════════ */
.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .kpi-grid { gap: 12px; }
}

@media (min-width: 640px) {
  .kpi-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .kpi-grid {
    gap: 16px;
    margin-bottom: 32px;
  }
}

.kpi-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 14px;
  transition: background 0.2s ease;
}

.kpi-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

@media (min-width: 640px) {
  .kpi-card {
    border-radius: 10px;
    padding: 20px;
  }
}

.kpi-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  margin-bottom: 6px;
}

@media (min-width: 640px) {
  .kpi-label {
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
  }
}

.kpi-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 480px) {
  .kpi-value { font-size: 1.65rem; }
}

@media (min-width: 640px) {
  .kpi-value { font-size: 1.85rem; }
}

@media (min-width: 1024px) {
  .kpi-value { font-size: 2rem; }
}

.kpi-green  { color: #34d399; }
.kpi-blue   { color: #38bdf8; }
.kpi-purple { color: #a78bfa; }
.kpi-white  { color: #f8fafc; }
.kpi-muted  { color: #94a3b8; }

.kpi-subtext {
  font-size: 0.6875rem;
  color: #64748b;
  margin-top: 4px;
  line-height: 1.3;
}

/* 4‑column variant for servers */
.kpi-grid-4 {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 480px) {
  .kpi-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   COLLAPSE TOGGLE
   ═══════════════════════════════════════════════════════════════ */
.collapse-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s ease;
  touch-action: manipulation;
  user-select: none;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .collapse-toggle {
    font-size: 0.8125rem;
    padding: 12px 18px;
    border-radius: 10px;
  }
}

.collapse-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #f8fafc;
}

.collapse-toggle:active {
  transform: translateY(1px);
}

.collapse-toggle[aria-expanded="true"] {
  color: #f8fafc;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .collapse-toggle[aria-expanded="true"] { margin-bottom: 24px; }
}

@media (min-width: 1024px) {
  .collapse-toggle[aria-expanded="true"] { margin-bottom: 28px; }
}

.collapse-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #94a3b8;
}

.collapse-toggle[aria-expanded="true"] .collapse-toggle-icon {
  transform: rotate(90deg);
  color: #cbd5e1;
}

.collapse-toggle-icon svg {
  width: 14px;
  height: 14px;
}

.collapse-body {
  overflow: hidden;
  transition: opacity 0.35s ease, margin-bottom 0.35s ease;
}

.collapse-body.collapsed {
  display: none;
}

/* Chart-specific collapse wrapper */
.chart-collapse {
  margin-bottom: 0;
}

.chart-collapse:not(.collapsed) {
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .chart-collapse:not(.collapsed) { margin-bottom: 28px; }
}

@media (min-width: 1024px) {
  .chart-collapse:not(.collapsed) { margin-bottom: 32px; }
}

/* Charts section card (at the bottom) */
.section-charts {
  background: rgba(15, 23, 42, 0.4);
}

/* Grid for charts inside the collapse */
.chart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .chart-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CHARTS + TABLES GRID
   ═══════════════════════════════════════════════════════════════ */
.chart-table-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .chart-table-grid { gap: 28px; }
}

@media (min-width: 1024px) {
  .chart-table-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.chart-box {
  min-height: 0;
}

.chart-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chart-title svg { width: 13px; height: 13px; }

@media (min-width: 640px) {
  .chart-title {
    font-size: 0.8125rem;
    margin-bottom: 16px;
    gap: 8px;
  }
  .chart-title svg { width: 14px; height: 14px; }
}

.chart-canvas-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  max-width: 100%;
}

.chart-canvas-wrapper canvas {
  max-width: 100% !important;
  width: 100% !important;
}

@media (min-width: 640px) {
  .chart-canvas-wrapper { height: 220px; }
}

@media (min-width: 1024px) {
  .chart-canvas-wrapper { height: 240px; }
}

/* ═══════════════════════════════════════════════════════════════
   TABLES
   ═══════════════════════════════════════════════════════════════ */
.table-wrapper {
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  max-height: 200px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
  .table-wrapper {
    border-radius: 10px;
    max-height: 220px;
  }
}

@media (min-width: 1024px) {
  .table-wrapper { max-height: 240px; }
}

.table-inner {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
  text-align: left;
}

@media (min-width: 640px) {
  .table-inner { font-size: 0.8125rem; }
}

.table-inner thead {
  position: sticky;
  top: -1px;
  z-index: 2;
}

.table-inner th {
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #94a3b8;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 640px) {
  .table-inner th {
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    padding: 12px 16px;
  }
}

.table-inner td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.12s;
}

@media (min-width: 640px) {
  .table-inner td { padding: 10px 16px; }
}

.table-inner tbody tr {
  transition: background 0.12s;
}

/* Desktop hover */
@media (hover: hover) {
  .table-inner tbody tr:hover td {
    background: rgba(255, 255, 255, 0.05);
  }
}

/* Mobile tap feedback */
.table-inner tbody tr:active td {
  background: rgba(255, 255, 255, 0.08);
}

.table-inner th:last-child,
.table-inner td:last-child {
  text-align: right;
}

.cell-label {
  font-weight: 500;
  color: #f8fafc;
}

.table-inner th:nth-child(2),
.table-inner td:nth-child(2) {
  text-align: right;
}

.cell-num {
  font-variant-numeric: tabular-nums;
  color: #e2e8f0;
}

.cell-muted {
  color: #94a3b8;
}

.empty-row {
  text-align: center !important;
  padding: 20px 12px !important;
  color: #94a3b8;
  font-style: italic;
}

@media (min-width: 640px) {
  .empty-row { padding: 24px 16px !important; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.app-footer {
  padding-top: 24px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  text-align: center;
}

@media (min-width: 640px) {
  .app-footer {
    padding-top: 32px;
    padding-bottom: 48px;
  }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #f8fafc;
  margin-bottom: 6px;
}

@media (min-width: 640px) {
  .footer-brand {
    font-size: 0.8125rem;
    margin-bottom: 8px;
  }
}

.footer-brand svg {
  width: 14px;
  height: 14px;
  color: #0ea5e9;
}

@media (min-width: 640px) {
  .footer-brand svg { width: 16px; height: 16px; }
}

.footer-text {
  font-size: 0.6875rem;
  color: #94a3b8;
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.5;
  padding: 0 12px;
}

@media (min-width: 640px) {
  .footer-text {
    font-size: 0.75rem;
    max-width: 400px;
    padding: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.hidden { display: none !important; }

/* ── Refresh button spin ─────────────────────────────────── */
.btn-spin {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Skeleton shimmer for loading state ──────────────────── */
.skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Global Activity Map ─────────────────────────────────── */
.map-container-box {
  /* jsVectorMap Theme Variables */
  --jvm-zoom-btn-bg-color: rgba(30, 41, 59, 0.7);
  --jvm-zoom-btn-color: #94a3b8;
  --jvm-zoom-btn-size: 28px;
  --jvm-zoom-btn-radius: 6px;
  --jvm-border-color: rgba(51, 65, 85, 0.5);
  
  width: 100%;
  height: 350px;
  background: rgba(10, 10, 10, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
}

/* Custom Tooltip Theme */
.jvm-tooltip {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #f8fafc;
  font-family: inherit;
  font-size: 0.8125rem;
  padding: 8px 12px;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: opacity 0.15s ease;
}

/* Region Labels (Fade in on zoom) */
#world-map text {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Prevent labels from blocking region clicks */
}

#world-map.map-zoomed-in text {
  opacity: 1;
}

/* Marker Pulse Animation */
.jvm-marker {
  transition: fill 0.2s ease, stroke 0.2s ease, stroke-width 0.2s ease, r 0.2s ease;
  cursor: pointer;
}

.jvm-marker[fill="#10b981"] {
  animation: activePulse 2s infinite;
}

@keyframes activePulse {
  0% {
    filter: drop-shadow(0 0 2px rgba(16, 185, 129, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.8));
  }
  100% {
    filter: drop-shadow(0 0 2px rgba(16, 185, 129, 0.2));
  }
}

/* Map Zoom Buttons Hover State */
.jvm-zoom-btn {
  transition: background-color 0.15s, color 0.15s;
  font-family: monospace;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.jvm-zoom-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
}

/* ==========================================================================
   NEW FEATURES (TICKER, SPOTLIGHT, DONUT, RETENTION)
   ========================================================================== */

/* ── Inline Auto-Insights ──────────────────────────────────── */
.insight-text {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.4;
  margin-top: 2px;
}
.spotlight-highlight {
  color: #fff;
  font-weight: 600;
}

/* ── Custom Scrollbar ────────────────────────────────────────── */