/* ============================================================
   BULLSIGNAL — Deep Violet / Crypto-Dark Theme
   ============================================================ */

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --navy:       #0a0904;
  --navy-2:     #1a1509;
  --navy-3:     #231c0d;
  --navy-4:     #2e2410;
  --navy-5:     #3a2e14;
  --gold:       #d4a940;
  --gold-light: #f0c040;
  --gold-bright: #ffe066;
  --gold-dim:   rgba(212,169,64,0.18);
  --cyan:       #d4a940;
  --cyan-dim:   rgba(212,169,64,0.12);
  --cyan-mid:   rgba(212,169,64,0.24);
  --purple:     #d4a940;
  --purple-bright: #f0c040;
  --purple-dim: rgba(212,169,64,0.14);
  --purple-glow: rgba(212,169,64,0.45);
  --text:       #ede9ff;
  --text-muted: #8b7faa;
  --text-dim:   #4a4070;
  --border:     rgba(212,169,64,0.18);
  --border-glow: rgba(212,169,64,0.40);
  --green:      #10ef62;
  --red:        #ff4757;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:      1240px;
  --r:          12px;
}

/* ── Scroll-reveal animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2), transform 0.65s cubic-bezier(.22,.68,0,1.2);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ── Gradient text utility ───────────────────────────────── */
.grad-text {
  background: linear-gradient(120deg, #f0c040 0%, #d4a940 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glow border utility ─────────────────────────────────── */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(212,169,64,0.45), 0 4px 32px rgba(212,169,64,0.25); }
  50%       { box-shadow: 0 0 0 1px rgba(240,192,64,0.7), 0 8px 56px rgba(212,169,64,0.45); }
}
@keyframes gold-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 92px; /* ticker 36 + nav 56 */
  background-image:
    radial-gradient(ellipse 90% 70% at 80% 10%, rgba(212,169,64,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 5%  90%, rgba(184,134,11,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(212,169,64,0.06) 0%, transparent 70%);
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input  { outline: none; font-family: inherit; border: none; }

/* ── Ticker Bar ───────────────────────────────────────────── */
.ticker-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 36px;
  background: #030609;
  border-bottom: 1px solid rgba(212,169,64,0.25);
  box-shadow: 0 1px 12px rgba(212,169,64,0.12);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 80s linear infinite;
  font-size: 12px;
  font-weight: 500;
  padding: 0 16px;
  gap: 0;
}
.ticker-track:hover { animation-play-state: paused; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ti { padding: 0 16px; color: var(--text); }
.ti strong { color: #fff; margin-right: 4px; font-weight: 600; }
.ti em { font-style: normal; }
.ti.up em { color: var(--green); }
.ti.dn em { color: var(--red); }
.ti-sep { color: var(--text-dim); user-select: none; }
.ticker-placeholder { color: var(--text-muted); font-size: 12px; padding: 0 16px; }

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 999;
  height: 56px;
  background: rgba(5, 8, 15, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,169,64,0.28);
  box-shadow: 0 1px 0 rgba(212,169,64,0.08), 0 4px 24px rgba(212,169,64,0.10);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-box {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  flex-shrink: 0;
}

.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
}
.nav-brand-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
  opacity: 0.8;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--cyan); background: rgba(212,169,64,0.06); }
.nav-link.active { color: var(--text); background: rgba(212,169,64,0.08); border-bottom: 2px solid var(--cyan); }

/* Search */
.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 12px;
  height: 34px;
  flex-shrink: 0;
  width: 220px;
}
.nav-search-icon { font-size: 12px; opacity: 0.5; }
.nav-search-input {
  background: transparent;
  color: var(--text);
  font-size: 13px;
  width: 100%;
}
.nav-search-input::placeholder { color: var(--text-muted); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 72px 28px 56px;
  border-bottom: 1px solid rgba(212,169,64,0.22);
  box-shadow: 0 1px 40px rgba(212,169,64,0.12);
  background: var(--navy);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 90% at 72% 50%, rgba(212,169,64,0.42) 0%, rgba(184,134,11,0.20) 50%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 5%  80%, rgba(184,134,11,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 50% 10%, rgba(240,192,64,0.12) 0%, transparent 70%);
  pointer-events: none;
}
/* Subtle animated grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,169,64,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,169,64,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 70% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 70% 50%, black 0%, transparent 70%);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--cyan);
  background: rgba(212,169,64,0.06);
  border: 1px solid rgba(212,169,64,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  animation: glow-pulse 3s ease-in-out infinite;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px #d4a940; }
  50%       { opacity: 0.7; box-shadow: 0 0 22px #f0c040; }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 20px;
}
.hero-accent {
  background: linear-gradient(120deg, #f0c040 0%, #d4a940 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}
.hero-stat { display: flex; flex-direction: column; }
.hs-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hs-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.hs-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* CTA Buttons */
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  padding: 13px 28px;
  background: linear-gradient(135deg, #d4a940 0%, #b8860b 100%);
  color: #050810;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 36px rgba(212,169,64,0.60), 0 4px 20px rgba(184,134,11,0.40), 0 0 80px rgba(212,169,64,0.15);
  position: relative;
  z-index: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 48px rgba(212,169,64,0.80), 0 0 80px rgba(184,134,11,0.45), 0 0 120px rgba(212,169,64,0.20);
}

.btn-outline {
  padding: 13px 28px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(212,169,64,0.3);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(212,169,64,0.05); }

/* ── Indices Section ──────────────────────────────────────── */
.indices-section {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding: 0 28px;
}

.indices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.idx-card {
  background: linear-gradient(135deg, rgba(212,169,64,0.13) 0%, rgba(184,134,11,0.07) 60%, rgba(212,169,64,0.05) 100%);
  border: 1px solid rgba(212,169,64,0.28);
  border-radius: var(--r);
  padding: 18px 20px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.idx-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.4;
  transition: opacity 0.3s;
  background: linear-gradient(135deg, rgba(212,169,64,0.10) 0%, transparent 60%);
}
.idx-card:hover { border-color: rgba(212,169,64,0.55); box-shadow: 0 4px 28px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,169,64,0.22), 0 0 20px rgba(212,169,64,0.12); transform: translateY(-2px); }
.idx-card:hover::before { opacity: 1; }
.idx-card.up { border-left: 3px solid var(--green); }
.idx-card.dn { border-left: 3px solid var(--red); }

.idx-name  { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; }
.idx-price { display: block; font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.idx-chg   { display: block; font-size: 0.8rem; font-weight: 600; }
.idx-card.up .idx-chg { color: var(--green); }
.idx-card.dn .idx-chg { color: var(--red); }

/* ── Content Sections ─────────────────────────────────────── */
.content-section {
  max-width: var(--max-w);
  margin: 44px auto 0;
  padding: 0 28px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  position: relative;
  text-shadow: 0 0 28px rgba(212,169,64,0.20);
}

.section-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.section-more:hover { opacity: 1; }

.section-live {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cyan);
  background: rgba(212,169,64,0.1);
  border: 1px solid rgba(212,169,64,0.25);
  padding: 3px 8px;
  border-radius: 4px;
  animation: glow-pulse 3s ease-in-out infinite;
}

/* ── Markets Grid ─────────────────────────────────────────── */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.mkt-card {
  background: linear-gradient(135deg, rgba(212,169,64,0.13) 0%, rgba(184,134,11,0.07) 60%, rgba(212,169,64,0.05) 100%);
  border: 1px solid rgba(212,169,64,0.28);
  border-radius: var(--r);
  padding: 16px 18px;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.mkt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.mkt-card.up::after  { background: linear-gradient(160deg, rgba(16,239,98,0.04) 0%, transparent 55%); }
.mkt-card.dn::after  { background: linear-gradient(160deg, rgba(255,71,87,0.04) 0%, transparent 55%); }
.mkt-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,169,64,0.30), 0 0 28px rgba(212,169,64,0.14); border-color: rgba(212,169,64,0.38); }
.mkt-card:hover::after { opacity: 1; }
.mkt-card.up { border-top: 2px solid var(--green); }
.mkt-card.dn { border-top: 2px solid var(--red); }

.mkt-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.mkt-sym  { font-size: 1rem; font-weight: 800; color: #fff; }
.mkt-name { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.mkt-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
}
.badge-up { background: rgba(34,197,94,0.15); color: var(--green); }
.badge-dn { background: rgba(239,68,68,0.15); color: var(--red); }

.mkt-price { font-size: 1.35rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.mkt-chg   { font-size: 9px; font-weight: 600; margin-bottom: 12px; }
.mkt-chart { width: 100%; height: 60px !important; }

/* ── Two Column ───────────────────────────────────────────── */
.two-col {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.two-col .content-section { max-width: unset; margin-top: 44px; padding: 0; }

/* ── News ─────────────────────────────────────────────────── */
.news-list { display: flex; flex-direction: column; gap: 3px; }

.news-item {
  display: block;
  padding: 13px 16px;
  background: linear-gradient(135deg, rgba(212,169,64,0.10) 0%, rgba(184,134,11,0.05) 100%);
  border: 1px solid rgba(212,169,64,0.22);
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s;
}
a.news-item:hover { background: linear-gradient(135deg, rgba(212,169,64,0.18) 0%, rgba(184,134,11,0.10) 100%); border-color: rgba(212,169,64,0.45); box-shadow: 0 0 16px rgba(212,169,64,0.08); }

.ni-title { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.5; margin-bottom: 5px; }
a.news-item:hover .ni-title { color: var(--gold-light); }
.ni-meta  { font-size: 11px; color: var(--text-muted); }

/* News shimmer */
.news-shimmer {
  border-radius: 4px;
  background: linear-gradient(90deg, var(--navy-3) 25%, var(--navy-4) 50%, var(--navy-3) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 6px;
}
.news-shimmer-title { height: 12px; width: 88%; }
.news-shimmer-meta  { height: 9px;  width: 38%; }

@keyframes shimmer {
  from { background-position: -400px 0; }
  to   { background-position: 400px 0; }
}

/* Idx skeleton */
.idx-card.skeleton {
  background: linear-gradient(90deg, var(--navy-2) 25%, var(--navy-3) 50%, var(--navy-2) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite;
}
.idx-card.skeleton .idx-price,
.idx-card.skeleton .idx-chg { color: transparent; }

/* ── Company Spotlight ────────────────────────────────────── */
.spotlight-box {
  background: linear-gradient(135deg, rgba(212,169,64,0.10) 0%, rgba(184,134,11,0.05) 100%);
  border: 1px solid rgba(212,169,64,0.15);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: 0 0 40px rgba(212,169,64,0.04);
}

.spotlight-search { display: flex; gap: 10px; margin-bottom: 18px; }

.sl-input {
  flex: 1;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  transition: border-color 0.2s;
}
.sl-input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(212,169,64,0.08); }
.sl-input::placeholder { color: var(--text-muted); }

.sl-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #d4a940 0%, #b8860b 100%);
  color: #050810;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 0 20px rgba(212,169,64,0.4);
}
.sl-btn:hover { box-shadow: 0 4px 32px rgba(212,169,64,0.65); transform: translateY(-1px); }

.sl-hint { font-size: 13px; color: var(--text-muted); }

.sl-company { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sl-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.sl-price { font-size: 1.8rem; font-weight: 800; }
.sl-delta { font-size: 0.9rem; font-weight: 600; }

.sl-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.sl-stat {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 9px 11px;
}
.sl-stat span    { display: block; font-size: 9px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.sl-stat strong  { font-size: 0.9rem; font-weight: 700; color: #fff; }

/* ── Blog Posts Grid ──────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(212,169,64,0.13) 0%, rgba(184,134,11,0.07) 60%, rgba(212,169,64,0.05) 100%);
  border: 1px solid rgba(212,169,64,0.28);
  border-radius: var(--r);
  padding: 20px 22px;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.post-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4a940, #f0c040);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.post-card:hover::before { transform: scaleX(1); }
.post-card:hover { border-color: rgba(212,169,64,0.2); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.4); }

.pc-date  { font-size: 10px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 8px; }
.pc-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.4; }
.post-card:hover .pc-title { color: var(--cyan); }
.pc-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.pc-read  { font-size: 12px; font-weight: 600; color: var(--cyan); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  margin-top: 80px;
  background: var(--navy-2);
  border-top: 1px solid rgba(212,169,64,0.1);
  padding: 40px 28px;
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-desc  { font-size: 13px; color: var(--text-muted); max-width: 400px; line-height: 1.6; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy  { font-size: 12px; color: var(--text-dim); }
.footer-links { display: flex; gap: 20px; font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); }

/* ── Post Page ────────────────────────────────────────────── */
.post-page {
  max-width: 760px;
  margin: 48px auto;
  padding: 0 28px;
}

.post-page .post-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.post-page .post-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.post-page .meta { font-size: 13px; color: var(--text-muted); }

.post-content { color: var(--text); line-height: 1.85; }
.post-content h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--gold-light); margin: 2.5rem 0 0.8rem; }
.post-content h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin: 2rem 0 0.6rem; }
.post-content p  { margin-bottom: 1.4rem; }
.post-content a  { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201,168,76,0.35); }
.post-content a:hover { color: var(--gold-light); }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.post-content li { margin-bottom: 0.5rem; }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  background: var(--navy-3);
  border-radius: 0 8px 8px 0;
  color: var(--text-muted);
  margin: 1.5rem 0;
}

/* ── Responsive ───────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE — Hamburger + full layout reflow
   ═══════════════════════════════════════════════════════ */

/* ── Hamburger button ─────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Tablet (≤900px) ──────────────────────────────────── */
@media (max-width: 900px) {
  .indices-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .nav-search { width: 160px; }
  .global-orbital, .global-orbital-left { display: none; }

  /* Nav collapses — hamburger shown */
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 92px; left: 0; right: 0; bottom: 0;
    background: rgba(10,9,4,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 24px 0 40px;
    z-index: 998;
    overflow-y: auto;
    border-top: 1px solid rgba(212,169,64,0.2);
  }
  .nav-links.nav-open { display: flex; }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(212,169,64,0.08);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-search { display: none; }
}

/* ── Mobile (≤600px) ──────────────────────────────────── */
@media (max-width: 600px) {
  body { padding-top: 88px; font-size: 14px; }

  /* Nav */
  .nav-inner { padding: 0 16px; gap: 12px; }
  .nav-brand-sub { display: none; }
  .nav-links { top: 88px; }

  /* Ticker */
  .ticker-bar { height: 32px; }
  .ticker-track { font-size: 11px; }
  .site-nav { top: 32px; height: 56px; }

  /* Hero */
  .hero { padding: 36px 16px 32px; min-height: auto; }
  .hero-eyebrow { font-size: 9px; }
  .hero-title { font-size: clamp(24px,7vw,38px); }
  .hero-sub { font-size: 13px; }
  .hero-stats { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .hero-stat { padding: 0 12px; }
  .hero-cta { flex-wrap: wrap; gap: 10px; }
  .hv-bull-wrap { display: none; }

  /* Content sections */
  .content-section { padding: 0 14px; }
  .indices-section { padding: 0 14px; }
  .two-col { padding: 0 14px; }
  .section-head { flex-wrap: wrap; gap: 8px; }

  /* Indices grid — 2 cols on mobile */
  .idx-strip { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .idx-pill { padding: 12px 14px 10px; }
  .idx-pill-price { font-size: 16px; }
  .indices-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .idx-card { padding: 14px 14px; }

  /* Market cards — 2 cols */
  .markets-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .mkt-card { padding: 12px 14px; }
  .mkt-price { font-size: 15px; }

  /* Spotlight */
  .spotlight-box { padding: 16px; }
  .spotlight-search { flex-direction: column; gap: 10px; }
  .sl-input { width: 100%; }
  .sl-btn { width: 100%; }
  .sl-stats { grid-template-columns: repeat(2, 1fr); }

  /* Posts grid */
  .posts-grid { grid-template-columns: 1fr; }
  .post-card  { padding: 16px 18px; }

  /* News */
  .news-item { padding: 10px 12px; }

  /* Footer */
  .footer-top  { flex-direction: column; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-links { justify-content: center; }
  .site-footer { padding: 28px 16px; }

  /* Company page */
  .company-page { padding: 20px 14px 60px; }
  .cp-main { grid-template-columns: 1fr; }
  .cp-price-strip { flex-wrap: wrap; }
  .cps-item { min-width: 45%; }

  /* Markets table */
  .in-table-head { grid-template-columns: 1fr 90px 80px; padding: 6px 10px; }
  .in-table-head span:last-child { display: none; }
  .in-row { padding: 12px 10px; grid-template-columns: 1fr 90px 80px; }
  .in-row > div:last-child { display: none; }

  /* About page */
  .ab-features { grid-template-columns: 1fr; }
  .ab-feat--wide { grid-column: auto; }
  .ab-author { flex-direction: column; }
  .ab-pillars { grid-template-columns: 1fr; }
  .ab-hero-title { font-size: 26px; }
  .ab-hero-stats { gap: 0; }
  .ab-stat { padding: 0 12px; }

  /* Sector page */
  .sector-hero { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sh-perf { margin-left: 0; text-align: left; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }

  /* Modal */
  #idxModal > div { padding: 24px 18px; margin: 40px 10px; }
  #idxModalBox   { padding: 24px 18px; margin: 40px 10px; }
}

/* ── Very small screens (≤380px) ─────────────────────── */
@media (max-width: 380px) {
  .markets-grid { grid-template-columns: 1fr; }
  .idx-strip { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: 1fr; }
}


/* ── Company Deep-Dive Page ───────────────────────────────── */
.company-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 28px 80px;
}

.cp-back {
  display: inline-block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  transition: color 0.2s;
}
.cp-back:hover { color: var(--gold); }

.cp-hero { margin-bottom: 24px; }
.cp-sym  { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.cp-name { font-family: var(--font-serif); font-size: 1.3rem; color: #fff; margin-top: 4px; }
.cp-name-loading { font-size: 1rem; color: var(--text-muted); margin-top: 4px; }

.cp-price-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 32px;
  background: linear-gradient(135deg, rgba(212,169,64,0.10) 0%, rgba(184,134,11,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.cps-item {
  flex: 1;
  min-width: 100px;
  padding: 14px 16px;
  border-right: 1px solid var(--border);
}
.cps-item:last-child { border-right: none; }
.cps-label { display: block; font-size: 9px; font-weight: 700; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; }
.cps-val   { display: block; font-size: 0.95rem; font-weight: 700; color: #fff; }

.cp-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  margin-bottom: 44px;
}

.cp-chart-box {
  background: linear-gradient(135deg, rgba(212,169,64,0.10) 0%, rgba(184,134,11,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
}

.cp-chart-controls {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.cpc-btn {
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  color: var(--text-muted);
  background: var(--navy-3);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.cpc-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.15); }
.cpc-btn.active { color: var(--gold); border-color: var(--gold); background: var(--gold-dim); }

.cp-chart-wrap { height: 280px; position: relative; }
.cp-chart-wrap canvas { height: 100% !important; }

.cp-about-box {
  background: linear-gradient(135deg, rgba(212,169,64,0.10) 0%, rgba(184,134,11,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
}
.cp-box-title  { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cp-about-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 8; -webkit-box-orient: vertical; overflow: hidden; }
.cp-about-meta { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: var(--text-muted); }
.cp-meta-link  { color: var(--gold); }
.cp-meta-sep   { margin: 0 6px; color: var(--text-dim); }

@media (max-width: 900px) {
  .cp-main { grid-template-columns: 1fr; }
  .cp-price-strip { overflow-x: auto; flex-wrap: nowrap; }
}

/* ── IPO Tracker ──────────────────────────────────────────── */
.ipo-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(212,169,64,0.10) 0%, rgba(184,134,11,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
}
.ipo-tab {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 6px;
  background: transparent;
  transition: all 0.2s;
}
.ipo-tab.active { background: var(--navy-4); color: var(--text); }
.ipo-tab:hover  { color: var(--text); }

.ipo-table-wrap { overflow-x: auto; }
.ipo-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}
.ipo-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.ipo-table td {
  padding: 13px 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.ipo-table tr:last-child td { border-bottom: none; }
.ipo-table tr:hover td { background: rgba(212,169,64,0.10); }
.ipo-company { font-weight: 600; color: #fff; }
.ipo-sym     { font-weight: 700; color: var(--gold); }
.ipo-link    { color: var(--gold); }
.ipo-loading { text-align: center; padding: 40px; color: var(--text-muted); }

/* ── Sector Pages ─────────────────────────────────────────── */
.sector-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(212,169,64,0.13) 0%, rgba(184,134,11,0.07) 100%);
  border: 1px solid rgba(212,169,64,0.28);
  border-radius: var(--r);
  padding: 28px 28px;
  flex-wrap: wrap;
}
.tech-sector    { border-top: 3px solid #6366f1; }
.finance-sector { border-top: 3px solid var(--gold); }

.sh-icon  { font-size: 2.5rem; }
.sh-title { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 800; color: #fff; }
.sh-sub   { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.sh-perf  { margin-left: auto; text-align: right; }
.shp-label { display: block; font-size: 9px; font-weight: 700; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; }
.shp-val   { display: block; font-size: 1.5rem; font-weight: 800; }

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.sector-card { text-decoration: none; }

.sector-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.sector-pill {
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(212,169,64,0.10) 0%, rgba(184,134,11,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.sector-pill:hover { color: var(--gold); border-color: rgba(201,168,76,0.3); background: var(--navy-3); }


/* ── Fear & Greed + Heatmap Row ──────────────────────────── */
.fg-heatmap-row {
  max-width: var(--max-w);
  margin: 44px auto 0;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
}
.fg-heatmap-row .content-section { max-width: unset; margin: 0; padding: 0; }
.fg-section    { display: flex; flex-direction: column; }
.heatmap-section { display: flex; flex-direction: column; }

/* Fear & Greed Widget */
.fg-widget { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.fg-gauge-wrap { position: relative; width: 130px; }
.fg-gauge { width: 100%; }
.fg-center {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.fg-value { font-size: 1.3rem; font-weight: 900; line-height: 1; }
.fg-label { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.fg-scale {
  display: flex;
  justify-content: space-between;
  width: 130px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.fg-prev { font-size: 11px; color: var(--text-muted); text-align: center; }

/* Sector Heatmap */
.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  flex: 1;
}
.hm-cell {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  cursor: default;
  transition: transform 0.15s;
}
.hm-cell:hover { transform: scale(1.03); }
.hm-cell.skeleton { background: var(--navy-2) !important; animation: shimmer 1.5s infinite; }
.hm-name { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; }
.hm-pct  { display: block; font-size: 1rem; font-weight: 800; }

@media (max-width: 900px) {
  .fg-heatmap-row { grid-template-columns: 1fr; }
  .heatmap-grid   { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 600px) {
  .fg-heatmap-row { padding: 0 16px; }
  .heatmap-grid   { grid-template-columns: repeat(2, 1fr); }
}

/* ── Earnings Calendar ───────────────────────────────────── */
.ec-week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(212,169,64,0.10) 0%, rgba(184,134,11,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 20px;
}
.ec-week-btn {
  padding: 6px 14px;
  background: var(--navy-3);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
}
.ec-week-btn:hover { color: var(--gold); border-color: rgba(201,168,76,0.3); }
.ec-week-label { font-size: 14px; font-weight: 700; color: #fff; }

.ec-day { margin-bottom: 24px; }
.ec-day-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--navy-3);
  border-radius: 8px 8px 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
}
.ec-day-name  { font-weight: 700; color: #fff; }
.ec-day-date  { font-size: 13px; color: var(--text-muted); }
.ec-day-count { margin-left: auto; font-size: 11px; color: var(--gold); font-weight: 600; }
.ec-table-wrap { border: 1px solid var(--border); border-radius: 0 0 8px 8px; overflow: hidden; }
.ec-beat { color: var(--green); font-weight: 700; }
.ec-miss { color: var(--red);   font-weight: 700; }
.ec-loading { padding: 40px; text-align: center; color: var(--text-muted); font-size: 13px; }

/* ── Economic Calendar ───────────────────────────────────── */
.econ-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.econ-filter {
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  color: var(--text-muted);
  background: linear-gradient(135deg, rgba(212,169,64,0.10) 0%, rgba(184,134,11,0.05) 100%);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.econ-filter.active { color: var(--gold); border-color: rgba(201,168,76,0.4); background: var(--gold-dim); }
.econ-filter:hover  { color: var(--text); }

.econ-day { margin-bottom: 28px; }
.econ-day-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.econ-event {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(212,169,64,0.10) 0%, rgba(184,134,11,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 4px;
  transition: background 0.15s;
}
.econ-event:hover { background: var(--navy-3); }
.econ-impact-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.econ-event-info { flex: 1; }
.econ-event-name { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.econ-event-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 11px; color: var(--text-muted); }
.econ-actual strong { color: #fff; }
.econ-impact-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid;
  flex-shrink: 0;
}

/* ── Tools Page ──────────────────────────────────────────── */
.tools-grid {
  max-width: var(--max-w);
  margin: 44px auto 0;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) { .tools-grid { grid-template-columns: 1fr; } }

.tool-card {
  background: linear-gradient(135deg, rgba(212,169,64,0.10) 0%, rgba(184,134,11,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}
.tool-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* Currency Converter */
.cc-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.cc-field { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 100px; }
.cc-field label { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase; }
.cc-input, .cc-select {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text);
  transition: border-color 0.2s;
}
.cc-input:focus, .cc-select:focus { border-color: var(--gold); }
.cc-select option { background: var(--navy-2); }
.cc-arrow { font-size: 1.2rem; color: var(--text-muted); padding-bottom: 8px; flex-shrink: 0; }
.cc-convert-btn {
  width: 100%;
  padding: 10px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.cc-convert-btn:hover { background: var(--gold-light); }
.cc-result { text-align: center; margin-bottom: 16px; }
.ccr-amount { display: block; font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.ccr-rate   { display: block; font-size: 12px; color: var(--text-muted); }
.cc-rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.fx-rate-item {
  background: var(--navy-3);
  border-radius: 6px;
  padding: 7px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fx-code { font-size: 10px; font-weight: 700; color: var(--text-muted); }
.fx-val  { font-size: 12px; font-weight: 700; color: #fff; }

/* 52-Week Tracker */
.tabs-row { margin-bottom: 16px; }
.w52-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.w52-item:last-child { border-bottom: none; }
.w52-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.w52-sym   { font-weight: 700; color: var(--gold); font-size: 13px; white-space: nowrap; }
.w52-name  { font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.w52-price { font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; text-align: right; }
.w52-bar-wrap { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.w52-bar  { height: 100%; border-radius: 3px; transition: width 0.5s; }
.w52-meta { display: flex; justify-content: space-between; font-size: 11px; }

/* Watchlist */
.wl-add-row { display: flex; gap: 10px; margin-bottom: 16px; }
.wl-empty   { font-size: 13px; color: var(--text-muted); padding: 20px 0; }
.wl-remove  {
  background: transparent;
  color: var(--text-dim);
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.15s;
}
.wl-remove:hover { color: var(--red); border-color: rgba(239,68,68,0.3); }

/* ── Global golden ambient glow (bottom of page) ─────── */
body::before {
  content: '';
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(212,169,64,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Gold gradient text for page-level headings ──────── */
.grad-text {
  background: linear-gradient(120deg, #ffe066 0%, #f0c040 40%, #d4a940 70%, #b8860b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 4s linear infinite;
}

/* ── Gold glow on section dividers ───────────────────── */
.section-head {
  border-bottom-color: rgba(212,169,64,0.22) !important;
  box-shadow: 0 1px 0 rgba(212,169,64,0.06);
}

/* ── Stronger gold outline on outline button ─────────── */
.btn-outline {
  border-color: rgba(212,169,64,0.50) !important;
  box-shadow: 0 0 12px rgba(212,169,64,0.10);
}
.btn-outline:hover {
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
  box-shadow: 0 0 24px rgba(212,169,64,0.20);
  background: rgba(212,169,64,0.08) !important;
}
