/* ===== MiTL UNIVERSE V5 — SHOWS, GLOBE & HOLOGRAPHIC CARDS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0E1A;
  --glass: rgba(10, 14, 26, 0.75);
  --glass-strong: rgba(10, 14, 26, 0.9);
  --gold: #F4B942;
  --gold-dim: rgba(244, 185, 66, 0.12);
  --gold-glow: rgba(244, 185, 66, 0.25);
  --red: #FF4444;
  --text: #FFFFFF;
  --text-muted: #8B92A6;
  --text-dim: #5A6172;
  --border: rgba(139, 146, 166, 0.12);
  --border-gold: rgba(244, 185, 66, 0.2);
  --r: 10px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); background: var(--bg); color: var(--text); overflow: hidden; height: 100dvh; }
.hidden { opacity: 0; pointer-events: none; }

/* ===== INTRO ===== */
#intro-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1.2s var(--ease);
}
#intro-overlay.fade-out { opacity: 0; pointer-events: none; }
#intro-content { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; }
#intro-logo { width: 260px; }
#intro-logo-img { width: 100%; height: auto; filter: drop-shadow(0 0 40px rgba(244, 185, 66, 0.3)); }
#intro-tagline {
  font-size: clamp(0.65rem, 1vw, 0.8rem); font-weight: 600;
  letter-spacing: 6px; color: var(--text-muted); text-transform: uppercase;
}
#intro-counter { display: flex; flex-direction: column; align-items: center; gap: 6px; }
#counter-value {
  font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 900;
  color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums;
}
#counter-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 4px; color: var(--text-dim); }
#enter-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 28px; background: transparent;
  border: 1px solid var(--border-gold); border-radius: 50px;
  color: var(--gold); font-family: var(--font);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  cursor: pointer; transition: all 0.4s var(--ease);
  opacity: 0; animation: fadeInUp 0.8s 2s forwards;
}
#enter-btn:hover { background: var(--gold); color: var(--bg); box-shadow: 0 0 40px rgba(244,185,66,0.4); transform: translateY(-2px); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== CANVAS ===== */
#universe-canvas { position: fixed; inset: 0; z-index: 0; }

/* ===== HUD ===== */
#hud {
  position: fixed; inset: 0; z-index: 20;
  pointer-events: none;
  transition: opacity 0.8s var(--ease);
}
#hud:not(.hidden) { opacity: 1; }
#hud > * { pointer-events: all; }

.hud-tl {
  position: absolute; top: 16px; left: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hud-logo { height: 24px; width: auto; opacity: 0.9; }
.hud-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.5rem; font-weight: 800; letter-spacing: 2px; color: var(--red);
  padding: 3px 8px; background: rgba(255,68,68,0.1);
  border: 1px solid rgba(255,68,68,0.25); border-radius: 50px;
}
.live-dot {
  width: 5px; height: 5px; background: var(--red); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,68,68,0.4); }
  50% { opacity: 0.5; box-shadow: 0 0 0 5px rgba(255,68,68,0); }
}

.hud-tc {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 2px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 50px; padding: 3px;
  backdrop-filter: blur(20px);
}
.zone-btn {
  padding: 6px 14px; background: transparent; border: none;
  border-radius: 50px; color: var(--text-dim);
  font-family: var(--font); font-size: 0.55rem; font-weight: 700;
  letter-spacing: 1.5px; cursor: pointer; transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.zone-btn:hover { color: var(--text-muted); }
.zone-btn.active { color: var(--gold); background: var(--gold-dim); }

.hud-tr {
  position: absolute; top: 16px; right: 20px;
  display: flex; align-items: center; gap: 10px;
}
#sound-toggle {
  padding: 6px; border: 1px solid var(--border);
  border-radius: 50%; color: var(--text-dim);
  cursor: pointer; transition: all 0.2s; background: var(--glass);
  backdrop-filter: blur(12px);
}
#sound-toggle:hover { color: var(--gold); border-color: var(--border-gold); }
.hud-count {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 1px;
  color: var(--gold); padding: 5px 10px;
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  border-radius: 50px;
}
#hud-count-num { font-weight: 900; font-size: 0.65rem; }

.hud-bl { position: absolute; bottom: 56px; left: 20px; }
#zone-label {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 3px;
  color: var(--text-muted); margin-bottom: 4px;
  transition: all 0.4s var(--ease);
}
#zone-hint {
  font-size: 0.55rem; font-weight: 500; color: var(--text-dim);
  transition: all 0.4s var(--ease);
}

.hud-br {
  position: absolute; bottom: 56px; right: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hud-br a {
  font-size: 0.55rem; font-weight: 600; color: var(--text-dim);
  text-decoration: none; transition: color 0.2s; letter-spacing: 0.5px;
}
.hud-br a:hover { color: var(--gold); }
.hud-attr { opacity: 0.5; }

/* ===== SEARCH BAR ===== */
#search-bar {
  position: fixed; top: 60px; left: 50%; transform: translateX(-50%);
  z-index: 30; transition: opacity 0.3s var(--ease);
  width: min(420px, calc(100vw - 40px));
}
#search-bar:not(.hidden) { opacity: 1; pointer-events: all; }
.search-inner {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: var(--glass-strong); border: 1px solid var(--border-gold);
  border-radius: 50px; backdrop-filter: blur(20px);
}
.search-inner svg { flex-shrink: 0; color: var(--text-dim); }
#search-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-family: var(--font); font-size: 0.8rem;
}
#search-input::placeholder { color: var(--text-dim); }
.search-inner kbd {
  font-family: var(--font); font-size: 0.55rem; font-weight: 600;
  color: var(--text-dim); padding: 2px 6px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 4px;
}

/* ===== HOLOGRAPHIC TRADING CARD ===== */
#holo-card-overlay {
  position: fixed; inset: 0; z-index: 50;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
#holo-card-overlay.active {
  opacity: 1; pointer-events: all;
}

/* Close button — outside card so it doesn't spin */
#holo-card-close {
  position: fixed; top: 24px; right: 24px; z-index: 60;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,14,26,0.8); border: 1px solid var(--border);
  border-radius: 50%; color: var(--text-dim); font-size: 1.4rem;
  cursor: pointer; transition: all 0.2s;
  backdrop-filter: blur(8px);
}
#holo-card-close:hover { color: var(--text); background: rgba(255,255,255,0.1); border-color: var(--gold); }

/* 3D scene container — provides perspective */
#holo-card-scene {
  perspective: 1200px;
  perspective-origin: center center;
  width: 380px; max-width: 92vw;
  height: 560px; max-height: 85vh;
}

/* The card itself — 3D transformed, has two faces */
#holo-card {
  --card-color: #F4B942;
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  cursor: grab;
  /* Default: auto-spin via CSS animation */
  animation: cardSpin 12s linear infinite;
}

/* When user is dragging */
#holo-card.dragging {
  cursor: grabbing;
  animation: none !important;
  transition: none !important;
}

/* When user has manually positioned (idle after drag) — gentle drift back */
#holo-card.manual {
  animation: none !important;
  transition: transform 0.15s ease-out;
}

/* Paused by default, plays when overlay is active */
#holo-card-overlay:not(.active) #holo-card {
  animation-play-state: paused;
  transform: rotateY(-20deg) scale(0.7);
  opacity: 0;
}
#holo-card-overlay.active #holo-card {
  opacity: 1;
}

@keyframes cardSpin {
  0%   { transform: rotateY(0deg)   rotateX(2deg); }
  25%  { transform: rotateY(90deg)  rotateX(-1deg); }
  50%  { transform: rotateY(180deg) rotateX(2deg); }
  75%  { transform: rotateY(270deg) rotateX(-1deg); }
  100% { transform: rotateY(360deg) rotateX(2deg); }
}

/* Shared face styles */
.holo-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  overflow-y: auto;
  background: linear-gradient(
    165deg,
    rgba(10, 14, 26, 0.97) 0%,
    rgba(15, 20, 35, 0.97) 40%,
    rgba(10, 14, 26, 0.99) 100%
  );
  border: 1px solid rgba(244, 185, 66, 0.3);
  box-shadow:
    0 0 60px rgba(244, 185, 66, 0.15),
    0 0 120px rgba(79, 195, 247, 0.08),
    inset 0 0 60px rgba(244, 185, 66, 0.03),
    0 25px 80px rgba(0, 0, 0, 0.5);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
}

/* Front face */
#holo-card-front {
  transform: rotateY(0deg);
}

/* Back face */
#holo-card-back {
  transform: rotateY(180deg);
}

/* Crystal edge glow on each face */
.holo-edge-glow {
  position: absolute; inset: 0;
  border-radius: 16px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(244,185,66,0.15), rgba(79,195,247,0.1), rgba(244,185,66,0.15)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
  opacity: 0.6;
}

/* Holographic shimmer */
.holo-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(244, 185, 66, 0.04) 40%,
    rgba(79, 195, 247, 0.06) 50%,
    rgba(244, 185, 66, 0.04) 60%,
    transparent 80%
  );
  background-size: 250% 100%;
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

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

/* Scan lines overlay */
.holo-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(79, 195, 247, 0.015) 2px,
    rgba(79, 195, 247, 0.015) 4px
  );
  pointer-events: none;
  z-index: 3;
}

/* Portrait area */
#holo-portrait-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: radial-gradient(circle at 50% 60%, rgba(244, 185, 66, 0.08), transparent 70%);
}

#holo-portrait {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1);
  mix-blend-mode: screen;
}

#holo-portrait[style*="display: none"] + #holo-card-body {
  padding-top: 48px;
}

/* Edge glow on portrait */
#holo-portrait-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(10, 14, 26, 0.7) 85%,
    rgba(10, 14, 26, 0.95) 100%
  );
  pointer-events: none;
}

/* Front card body */
#holo-card-body {
  position: relative;
  padding: 20px 24px 24px;
  z-index: 4;
  margin-top: -40px;
}

/* Back face body */
#holo-back-body {
  position: relative;
  padding: 32px 24px 24px;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    rgba(244, 185, 66, 0.04) 0%,
    transparent 30%
  );
}

#holo-back-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(244, 185, 66, 0.15);
}

#holo-back-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(244, 185, 66, 0.3);
  margin-bottom: 8px;
}

#holo-back-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.5rem; font-weight: 800; letter-spacing: 1.5px;
  border-radius: 50px;
  background: rgba(244, 185, 66, 0.08);
  border: 1px solid var(--card-color);
  color: var(--card-color);
}

#holo-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(244, 185, 66, 0.3);
  margin-bottom: 4px;
}

#holo-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

#holo-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.5rem; font-weight: 800; letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 12px;
  background: rgba(244, 185, 66, 0.08);
  border: 1px solid var(--card-color);
  color: var(--card-color);
}

#holo-shows { margin-bottom: 10px; }
.holo-show-tag {
  display: inline-block; padding: 3px 8px;
  font-size: 0.55rem; font-weight: 700; color: var(--gold);
  background: var(--gold-dim); border-radius: 4px;
  margin-right: 4px; margin-bottom: 4px;
}

.holo-section-label {
  font-size: 0.5rem; font-weight: 800; letter-spacing: 2px;
  color: var(--text-dim); margin-bottom: 5px; margin-top: 12px;
}
.holo-section-text {
  font-size: 0.72rem; line-height: 1.6; color: var(--text-muted);
}

.holo-link-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px; margin-top: 12px; margin-right: 6px;
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  border-radius: 50px; color: var(--gold); text-decoration: none;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 1px;
  transition: all 0.2s;
}
.holo-link-btn:hover { background: var(--gold); color: var(--bg); box-shadow: 0 0 20px rgba(244,185,66,0.3); }

/* ===== KEITH CENTER LABEL ===== */
.keith-label {
  text-align: center;
  pointer-events: none;
  user-select: none;
}
.keith-name {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(244, 185, 66, 0.5);
}
.keith-title {
  font-family: var(--font);
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ===== INVESTOR HUD ===== */
#investor-hud {
  position: fixed; left: 20px; top: 50%; transform: translateY(-50%);
  z-index: 22; width: 200px;
  transition: opacity 0.6s var(--ease);
}
#investor-hud:not(.hidden) { opacity: 1; pointer-events: all; }

.inv-row {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 8px;
}
.inv-metric {
  padding: 8px 12px;
  background: var(--glass); border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition: border-color 0.2s;
}
.inv-metric:first-child { border-radius: var(--r) var(--r) 0 0; }
.inv-metric:last-child { border-radius: 0 0 var(--r) var(--r); border-top: none; }
.inv-metric:not(:first-child):not(:last-child) { border-top: none; }
.inv-row:first-child .inv-metric:only-child,
.inv-row .inv-metric:first-child:last-child { border-radius: var(--r); }
.inv-metric:hover { border-color: var(--border-gold); }

.inv-val {
  font-size: 1rem; font-weight: 900; color: var(--text);
  font-variant-numeric: tabular-nums; line-height: 1.3;
}
.inv-val.gold { color: var(--gold); }
.inv-label {
  font-size: 0.45rem; font-weight: 700; letter-spacing: 2px; color: var(--text-dim);
}

.inv-engines {
  display: flex; flex-direction: column; gap: 3px; margin-bottom: 10px;
}
.inv-engine {
  font-size: 0.5rem; font-weight: 600; color: var(--text-dim);
  padding: 5px 10px; background: var(--glass);
  border: 1px solid var(--border); border-radius: 6px;
  backdrop-filter: blur(12px);
}

.inv-cta {
  display: block; text-align: center;
  padding: 8px 16px; background: var(--gold); color: var(--bg);
  border-radius: 50px; text-decoration: none;
  font-size: 0.55rem; font-weight: 800; letter-spacing: 2px;
  transition: all 0.2s;
}
.inv-cta:hover { box-shadow: 0 0 24px rgba(244,185,66,0.4); transform: translateY(-1px); }

/* ===== TOOLTIP ===== */
#entity-tooltip {
  position: fixed; z-index: 60;
  padding: 7px 12px;
  background: var(--glass-strong);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  pointer-events: none; opacity: 0;
  transition: opacity 0.15s;
  backdrop-filter: blur(16px);
  max-width: 200px;
}
#entity-tooltip.visible { opacity: 1; }
.tt-name { font-size: 0.7rem; font-weight: 800; color: var(--gold); }
.tt-role { font-size: 0.55rem; color: var(--text-muted); margin-top: 1px; }

/* ===== FEED TICKER ===== */
#feed-ticker {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  height: 40px; display: flex; align-items: center;
  background: var(--glass-strong);
  border-top: 1px solid var(--border);
  transition: opacity 0.6s var(--ease);
}
#feed-ticker:not(.hidden) { opacity: 1; pointer-events: all; }

.ticker-label {
  display: flex; align-items: center; gap: 5px;
  padding: 0 14px; font-size: 0.5rem; font-weight: 800;
  letter-spacing: 2px; color: var(--red);
  white-space: nowrap; border-right: 1px solid var(--border);
  height: 100%; text-decoration: none; flex-shrink: 0;
  transition: color 0.2s;
}
.ticker-label:hover { color: var(--gold); }

.ticker-track { flex: 1; overflow: hidden; position: relative; }
.ticker-content {
  display: flex; white-space: nowrap;
  animation: ticker-scroll 120s linear infinite;
}
.ticker-content:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex; align-items: center;
  padding: 0 18px; height: 40px;
  color: var(--text-muted); text-decoration: none;
  font-size: 0.65rem; font-weight: 500;
  white-space: nowrap; transition: color 0.2s; flex-shrink: 0;
}
.ticker-item:hover { color: var(--gold); }
.ticker-cat { font-weight: 700; color: var(--gold); margin-right: 6px; font-size: 0.55rem; }
.ticker-name { font-weight: 700; color: var(--text); margin-right: 5px; }
.ticker-sep { color: var(--text-dim); margin: 0 14px; font-size: 0.4rem; }

/* ===== RING LABELS ===== */
.ring-label {
  font-family: var(--font);
  font-size: 0.5rem; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim); opacity: 0.5;
  pointer-events: none; user-select: none;
  text-shadow: 0 0 20px rgba(10, 14, 26, 0.8);
}
.ring-label.cast { color: var(--gold); opacity: 0.4; }
.ring-label.show { color: #FF9800; opacity: 0.4; }
.ring-label.nhl { color: #4FC3F7; opacity: 0.4; }
.ring-label.nfl { color: #66BB6A; opacity: 0.4; }
.ring-label.wire { color: #AB47BC; opacity: 0.4; }

/* ===== GLOBE LABEL ===== */
.globe-label {
  text-align: center;
  pointer-events: none;
  user-select: none;
}
.globe-name {
  font-family: var(--font);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #00E5FF;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}
.globe-sub {
  font-family: var(--font);
  font-size: 0.4rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(0, 229, 255, 0.5);
  margin-top: 2px;
}

/* Globe link highlight in HUD */
.hud-globe-link {
  color: #00E5FF !important;
  font-weight: 700 !important;
  position: relative;
}
.hud-globe-link::before {
  content: '';
  width: 5px; height: 5px;
  background: #00E5FF;
  border-radius: 50%;
  position: absolute;
  left: -9px; top: 50%;
  transform: translateY(-50%);
  animation: pulse-dot 2s infinite;
}

/* ===== YOUR STAR IS MISSING ===== */
.your-star-label {
  text-align: center;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 200ms ease;
}
.your-star-label:hover {
  transform: scale(1.1);
}
.your-star-title {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--gold);
  text-shadow: 0 0 25px rgba(244, 185, 66, 0.6), 0 0 50px rgba(244, 185, 66, 0.3);
  animation: your-star-pulse 2s infinite ease-in-out;
}
.your-star-sub {
  font-family: var(--font);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(244, 185, 66, 0.7);
  margin-top: 3px;
  animation: your-star-pulse 2s infinite ease-in-out;
  animation-delay: 0.3s;
}
@keyframes your-star-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hud-tc { top: auto; bottom: 56px; left: 50%; }
  .hud-bl { bottom: 100px; }
  .hud-br { display: none; }
  #investor-hud { left: 10px; width: 170px; top: 56px; transform: none; }
  .inv-val { font-size: 0.85rem; }
  .zone-btn { font-size: 0.5rem; padding: 5px 10px; }
  #holo-card-scene { width: 340px; height: 500px; max-height: 80vh; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
