@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --bg-deep: #06091a;
  --bg-base: #0a0e20;
  --bg-card: #0f1528;
  --bg-elevated: #141b32;
  --bg-hover: #192038;
  --border-sub: rgba(200,168,75,0.10);
  --border-mid: rgba(200,168,75,0.22);
  --border-strong: rgba(200,168,75,0.40);
  --gold: #c8a84b;
  --gold-light: #e4cf8a;
  --gold-dark: #9a7b2e;
  --gold-glow: rgba(200,168,75,0.14);
  --text-primary: #eef0f8;
  --text-secondary: #8898b8;
  --text-muted: #3e4f6e;
  --green: #2ecc8e;
  --red: #e05656;
  --blue: #4a9eff;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-gold: 0 0 32px rgba(200,168,75,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'DM Sans', sans-serif; }

.gold { color: var(--gold); }
.text-muted { color: var(--text-secondary); }
.green { color: var(--green); }
.red { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,168,75,0.30);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-mid);
}
.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--border-strong);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-gold { background: rgba(200,168,75,0.15); color: var(--gold); border: 1px solid var(--border-sub); }
.badge-blue { background: rgba(74,158,255,0.12); color: var(--blue); }
.badge-green { background: rgba(46,204,142,0.12); color: var(--green); }

.divider { height: 1px; background: var(--border-sub); margin: 0; }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.card:hover {
  border-color: var(--border-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.card-body { padding: 28px; }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-img-lg { width: 100%; height: 260px; object-fit: cover; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6,9,26,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-sub);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(6,9,26,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-elevated);
}
.nav-links a.active { color: var(--gold); }

.nav-cta { margin-left: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-sub);
  padding: 20px 24px;
  z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-sub);
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }

.ticker-wrap {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-sub);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.ticker {
  display: inline-flex;
  animation: ticker-scroll 60s linear infinite;
  gap: 0;
}
.ticker:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 500;
  border-right: 1px solid var(--border-sub);
}
.ticker-symbol { color: var(--text-secondary); letter-spacing: 0.04em; font-size: 0.78rem; }
.ticker-price { color: var(--text-primary); font-weight: 600; }
.ticker-change.up { color: var(--green); }
.ticker-change.down { color: var(--red); }

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.28) saturate(0.6);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,9,26,0.75) 0%, rgba(6,9,26,0.4) 60%, rgba(6,9,26,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-content h1 { margin-bottom: 24px; }
.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-sub {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
}
.hero-sub .hero-content { max-width: 640px; }
.hero-sub .hero-content h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.hero-sub .hero-content p { font-size: 1rem; }

.page-hero {
  padding-top: 160px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-sub);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--bg-card);
  padding: 32px 28px;
  transition: background 0.25s;
}
.stat-item:hover { background: var(--bg-elevated); }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
}
.stat-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.article-card { cursor: pointer; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.article-meta i { font-size: 0.9rem; }
.article-card h3 { margin-bottom: 12px; font-size: 1.15rem; line-height: 1.3; }
.article-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.2s;
}
.article-card:hover .read-more { gap: 10px; }

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: background 0.25s;
}
.feature-item:hover { background: var(--bg-card); }
.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border: 1px solid var(--border-sub);
  border-radius: 10px;
  font-size: 1.4rem;
  color: var(--gold);
}
.feature-item h4 { margin-bottom: 8px; font-size: 1rem; }
.feature-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

.index-table {
  width: 100%;
  border-collapse: collapse;
}
.index-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-sub);
}
.index-table td {
  padding: 16px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(30,40,64,0.5);
  vertical-align: middle;
}
.index-table tr:hover td { background: rgba(255,255,255,0.02); }
.index-table .index-name { font-weight: 600; color: var(--text-primary); }
.index-table .index-region { font-size: 0.78rem; color: var(--text-muted); }

.newsletter-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  gap: 56px;
}
.newsletter-section h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.newsletter-section p { color: var(--text-secondary); font-size: 0.95rem; margin-top: 10px; }
.newsletter-form { flex-shrink: 0; display: flex; gap: 12px; }
.newsletter-form input {
  padding: 12px 18px;
  background: var(--bg-deep);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  width: 280px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--gold); }

.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-sub);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-sub);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--border-mid);
  color: var(--gold);
  background: var(--gold-glow);
}
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-sub);
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 20px 0 0;
  border-top: 1px solid var(--border-sub);
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 9999;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner i { font-size: 1.6rem; color: var(--gold); flex-shrink: 0; }
.cookie-text { flex: 1; font-size: 0.86rem; color: var(--text-secondary); line-height: 1.5; }
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
}

.market-asset-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: all 0.3s;
}
.market-asset-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-gold);
}
.asset-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.asset-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold-glow);
  color: var(--gold);
  font-size: 1.3rem;
}
.asset-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--text-primary); }
.asset-change { font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.asset-name { font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.asset-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.asset-bar { height: 3px; background: var(--bg-deep); border-radius: 2px; margin-top: 16px; overflow: hidden; }
.asset-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }

.region-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.region-card:hover { border-color: var(--border-mid); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.region-img { width: 100%; height: 180px; object-fit: cover; filter: brightness(0.75) saturate(0.7); }
.region-body { padding: 24px; }
.region-gdp { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); margin: 8px 0 4px; }
.region-growth { font-size: 0.85rem; font-weight: 600; }

.indicator-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-sub);
}
.indicator-row:last-child { border-bottom: none; }
.indicator-name { font-size: 0.9rem; color: var(--text-secondary); }
.indicator-val { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); }

.about-pillar {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.about-pillar:hover { border-color: var(--border-mid); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--gold-glow);
  border: 1px solid var(--border-sub);
  font-size: 1.8rem;
  color: var(--gold);
}
.about-pillar h3 { font-size: 1.1rem; margin-bottom: 12px; }
.about-pillar p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.6rem; margin: 40px 0 16px; padding-top: 24px; border-top: 1px solid var(--border-sub); }
.legal-content h2:first-of-type { border-top: none; margin-top: 16px; }
.legal-content p { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 20px 20px; }
.legal-content li { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 8px; list-style: disc; }
.legal-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; }

.insight-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold-glow);
  border-color: var(--border-mid);
  color: var(--gold);
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(200,168,75,0.1);
  color: var(--gold);
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.7rem; }

.highlight-box {
  background: linear-gradient(135deg, rgba(200,168,75,0.07) 0%, rgba(200,168,75,0.03) 100%);
  border: 1px solid var(--border-sub);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { color: var(--text-secondary); font-size: 0.94rem; margin: 0; font-style: italic; }

.page-header {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 100%);
  border-bottom: 1px solid var(--border-sub);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,168,75,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 540px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .newsletter-section { flex-direction: column; gap: 32px; padding: 40px; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; bottom: 12px; left: 12px; right: 12px; }
  .cookie-actions { width: 100%; }
  .newsletter-section { padding: 32px 24px; }
  h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .btn { padding: 10px 20px; font-size: 0.86rem; }
}

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

::selection { background: rgba(200,168,75,0.25); color: var(--text-primary); }
