/* ─── UNIFIED DESIGN SYSTEM ─── */
/* Cohesive Styles for LiveGoldSilverBTC */

:root {
  --gold: #D4A843;
  --gold-light: #F0C860;
  --silver: #A8B8C8;
  --silver-light: #C8D8E8;
  --btc: #F7931A;
  --btc-light: #FFB347;
  --bg: #080A0E;
  --bg2: #0D1017;
  --bg3: #131820;
  --border: rgba(255, 255, 255, 0.06);
  --text: #E8EAF0;
  --muted: #888E9E;
  --up: #4ADE80;
  --down: #F87171;
}

/* ── BASE RESET ───────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grid background - site-wide */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER (Unified Standard) ────────────────────────────── */
header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(8, 10, 14, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
  padding: 0;
  /* Remove padding to handle alignment inside .header-inner */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  position: relative;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo b {
  font-size: 28px;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.logo span {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--text);
  border-bottom-color: var(--gold);
}

.nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--up);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.live-green {
  color: var(--up);
  -webkit-text-fill-color: var(--up);
}

/* ── NAVIGATION (Standard) ─────────────────────────────── */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* ── COMMON UI COMPONENTS ─────────────────────────────────── */

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title h2 {
  font: inherit;
  color: inherit;
  display: inline;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ratio-value.gold {
  color: var(--gold);
}

.ratio-value.silver {
  color: var(--silver);
}

.ratio-value.btc {
  color: var(--btc);
}

.back-link-muted {
  color: var(--muted);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
}

.back-link-muted:hover {
  color: var(--text);
  text-decoration: underline;
}

.pt-60 {
  padding-top: 60px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-40 {
  margin-top: 40px;
}

/* For JS generated content */
.empty-msg {
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  text-align: center;
  padding: 20px;
}

.triggered-badge {
  color: var(--up);
  font-size: 10px;
  font-weight: 500;
}

.opacity-50 {
  opacity: 0.5;
}

.cta-btn,
.btn {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg);
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.cta-btn:hover,
.btn:hover {
  opacity: 0.85;
}

/* ── TICKER ───────────────────────────────────────────────── */
.ticker-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.ticker-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  will-change: transform;
}

.ticker-item {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ticker-label {
  color: var(--muted);
}

.ticker-price {
  color: var(--text);
  font-weight: 500;
}

.ticker-change.up {
  color: var(--up);
}

.ticker-change.down {
  color: var(--down);
}

/* ── CARDS ────────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.card.gold::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.card.silver::before {
  background: linear-gradient(90deg, var(--silver), var(--silver-light));
}

.card.btc::before {
  background: linear-gradient(90deg, var(--btc), var(--btc-light));
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.card-symbol {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card.gold .card-symbol {
  color: var(--gold);
}

.card.silver .card-symbol {
  color: var(--silver);
}

.card.btc .card-symbol {
  color: var(--btc);
}

.card-icon {
  font-size: 20px;
}

.card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 8px;
}

.card-unit {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.card-change {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-change.up {
  color: var(--up);
}

.card-change.down {
  color: var(--down);
}

.card-bg-text {
  position: absolute;
  bottom: -10px;
  right: -5px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  letter-spacing: 4px;
  opacity: 0.03;
  pointer-events: none;
  line-height: 1;
}

.loading-price {
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* ── DASHBOARD UI (Hero, Calc, etc) ───────────────────────── */
.hero {
  padding: 60px 0 40px;
  text-align: center;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 6px;
  line-height: 0.9;
  margin-bottom: 16px;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero h1 .silver {
  color: var(--silver);
}

.hero h1 .btc {
  color: var(--btc);
}

.hero p {
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 1px;
  font-family: 'DM Mono', monospace;
}

/* CALCULATOR */
.calculator {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px;
  margin-bottom: 16px;
  position: relative;
}

.currency-selector {
  position: absolute;
  bottom: 24px;
  right: 28px;
  text-align: right;
}

@media (max-width: 768px) {
  .currency-selector {
    position: static;
    margin-top: 24px;
    text-align: left;
    display: block;
  }
}

.currency-selector label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 6px;
}

#currency-select {
  width: 120px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 8px 12px;
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%235A6070' d='M0 2l4 4 4-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.2s;
}

#currency-select:focus {
  border-color: var(--gold);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }
}

.calc-field label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.calc-field.gold label {
  color: var(--gold);
}

.calc-field.silver label {
  color: var(--silver);
}

.calc-field.btc label {
  color: var(--btc);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 48px 12px 16px;
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}

.input-wrap input:focus {
  border-color: rgba(255, 255, 255, 0.2);
}

.input-unit {
  position: absolute;
  right: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  pointer-events: none;
}

.calc-result {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.calc-result-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
}

.calc-result-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  color: var(--gold-light);
}

.calc-breakdown {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.breakdown-item {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--muted);
}

.breakdown-item span {
  color: var(--text);
}

/* RATIOS */
.ratio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .ratio-grid {
    grid-template-columns: 1fr;
  }
}

.ratio-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 20px 24px;
}

.ratio-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 10px;
}

.ratio-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
}

.ratio-desc {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

/* CHARTS */
.chart-area {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px;
  margin-bottom: 40px;
}

.chart-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.chart-tab {
  padding: 8px 20px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.chart-tab.active[data-active-asset="gold"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.chart-tab.active[data-active-asset="silver"] {
  color: var(--silver);
  border-bottom-color: var(--silver);
}

.chart-tab.active[data-active-asset="btc"] {
  color: var(--btc);
  border-bottom-color: var(--btc);
}

.chart-tab:hover:not(.active) {
  color: var(--text);
}

.chart-canvas-wrap {
  height: 200px;
  position: relative;
}

canvas#priceChart {
  width: 100% !important;
  height: 100% !important;
}

.timeframe-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.timeframe-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 2px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}

.timeframe-btn:hover:not(.active) {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
}

.timeframe-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ALERTS */
.alerts-section {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px;
  margin-bottom: 40px;
}

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

.alerts-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--gold);
}

.add-alert-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg);
  border: none;
  padding: 8px 16px;
  border-radius: 2px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.add-alert-btn:hover {
  opacity: 0.85;
}

.alert-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 16px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alert-asset {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
}

.alert-condition {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}

.alert-delete {
  background: none;
  border: none;
  color: var(--down);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 2px;
  transition: background 0.2s;
}

.alert-delete:hover {
  background: rgba(248, 113, 113, 0.1);
}

/* MODALS */
.alert-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 10, 14, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.alert-modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
}

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.modal-field {
  margin-bottom: 16px;
}

.modal-field label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}

.modal-field select,
.modal-field input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px;
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 14px;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.modal-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 2px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.modal-btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg);
}

.modal-btn.secondary {
  background: var(--bg3);
  color: var(--text);
  border: 1px solid var(--border);
}

/* EXPORT INTEGRATED */
.export-buttons-calc {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.export-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 2px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}

.export-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .export-buttons-calc {
    margin-top: 16px;
    justify-content: center;
  }
}

/* SOCIAL */
.social-share {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 20px;
  margin-bottom: 40px;
}

.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 2px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.share-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* USER ENGAGEMENT residues */
.recent-searches,
.trending-section,
.session-stats {
  display: none !important;
}

/* ── PAGE SPECIFIC ────────────────────────────────────────── */

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.news-date {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 12px;
}

.news-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.news-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.news-link {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Learn / Info Sections */
.info-section {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 40px;
  margin-bottom: 40px;
}

.info-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--gold);
}

.info-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

.info-section ul {
  list-style: none;
  margin-bottom: 20px;
}

.info-section li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text);
}

.info-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: 'DM Mono', monospace;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  margin-top: 60px;
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  opacity: 0.6;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeIn 0.6s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── MISC ─────────────────────────────────────────────────── */
.last-updated {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
}

.ad-slot {
  text-align: center;
  margin-bottom: 40px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

/* Bitcoin Orange Branding Updates */
.section.btc h2 {
  color: var(--btc);
}

.section.btc .tip-box {
  border-left: 3px solid var(--btc);
  padding: 20px;
  background: rgba(247, 147, 26, 0.03);
  margin: 20px 0;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
}

.section.btc ul li::before {
  color: var(--btc);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 40px;
}

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 20px 24px;
}

.faq-q {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Helper classes */
.highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}