/* ============================================= */
/* global.css - Unified Dark Bitcoin Theme 2026 */
/* ============================================= */

:root {
  --bg: #0a0a0e;
  --card: #111114;
  --text: #e5e5e5;
  --muted: #a0a0b0;
  --accent: #f7931a;
  --accent-hover: #ffaa33;
  --border: #222226;
  --positive: #34d399;
  --negative: #f87171;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1.05rem;
}

#bg-stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  background: transparent;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================== HEADER & NAV ===================== */
header {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-link {
  text-decoration: none;
}

h1 {
  font-size: 1.9rem;
  color: var(--accent);
  margin: 0;
}

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--accent);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Nav */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .main-nav {
    display: none !important;
    flex-direction: column;
    width: 100%;
    gap: 1.2rem;
    padding: 2rem 0;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
  }
  .main-nav.active { display: flex !important; }
  .main-nav a {
    font-size: 1.25rem;
    padding: 0.8rem 0;
    color: var(--text);
    text-align: center;
  }
}

/* ===================== HERO ===================== */
.hero {
  padding: 7rem 0 4rem;
  text-align: center;
  background: linear-gradient(to bottom, #0f0700, var(--bg));
}

.hero h2 {
  font-size: clamp(2.6rem, 8vw, 4.2rem);
  margin-bottom: 1rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 2rem;
}

/* ===================== BUTTONS ===================== */
.btn, .tip-button {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  text-align: center;
}

.btn:hover, .tip-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.tip-button {
  background: #b6ff00;
  margin-top: 1.2rem;
}

.tip-button:hover {
  background: #9ee600;
}
/* ===================== IMPROVED ORANGE BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.05rem 2.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

/* All buttons are now orange */
.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 8px 25px rgba(247, 147, 26, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(247, 147, 26, 0.45);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
}

/* Back to Timeline - Larger version */
.back-to-timeline-btn {
  min-width: 300px;
  font-size: 1.25rem;
  padding: 1.3rem 3rem;
  margin: 0 auto;
  display: inline-flex;
}

/* Button Containers */
.whitepaper-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin: 2.5rem 0;
}

.back-to-timeline-wrapper {
  text-align: center;
  padding: 3rem 0 4rem;
}

/* Mobile Optimization */
@media (max-width: 640px) {
  .btn {
    padding: 0.95rem 1.8rem;
    font-size: 1.05rem;
    width: 100%;
    max-width: 320px;
  }
  
  .whitepaper-actions {
    flex-direction: column;
    align-items: center;
  }

  .back-to-timeline-btn {
    min-width: 280px;
  }
}
/* ===================== CARDS & SECTIONS ===================== */
.card, .column, .timeline-card, .wallet-card, .overview-card, .info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.two-column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

h3, .section-title {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ===================== TIMELINE ===================== */
.timeline-section {
  padding: 6rem 0;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--accent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4.5rem 0;
  position: relative;
}

.timeline-date {
  background: var(--card);
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.timeline-card {
  width: 100%;
  max-width: 520px;
}

/* Highlight current */
.current .timeline-date {
  border-color: #34d399;
  color: #34d399;
}

/* ===================== TIPS & AFFILIATE ===================== */
.tip-container {
  margin: 4rem auto;
  max-width: 680px;
  padding: 2rem 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}

.tip-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.aff-disclosure-inline {
  font-size: 0.9rem;
  color: var(--muted);
  display: block;
  margin-top: 1rem;
}



.aff-link.lime-green {
  color: #32cd32 !important;
}

.aff-link.lime-green:hover {
  color: #7cff7c !important;
}
/* ===================== TABLES ===================== */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: #1a1a1f;
  color: var(--accent);
}

/* ===================== FOOTER ===================== */
footer {
  text-align: center;
  padding: 4rem 0 2.5rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

/* ==================== TIMELINE ==================== */
.timeline-section {
  padding: 6rem 0;
  text-align: center;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5rem 0;
  position: relative;
}

.timeline-date {
  min-width: 110px;
  padding: 0.6rem 1.2rem;
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.timeline-card {
  width: 100%;
  background: var(--card);
  padding: 1.8rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease;
}

.timeline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(247, 147, 26, 0.25);
  border-color: var(--accent);
}

.timeline-card h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

/* Timeline special classes */
.epic-highlight .timeline-card,
.current .timeline-card {
  border: 2px solid var(--accent);
}

.current .timeline-date {
  border-color: #00ff9d;
  color: #00ff9d;
}

/* Timeline links - CLEAN (no underline, keeps your style) */
.timeline-card-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.timeline-card a,
.timeline-card a:hover,
.timeline-card a:focus {
  color: inherit !important;
  text-decoration: none !important;
}

/* Optional: subtle hover polish (keeps your premium feel) */
.timeline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(247, 147, 26, 0.25);
  border-color: var(--accent);
}
/* ============================================= */
/* AFFILIATE PARTNERS SECTION - Bitcoin Stack    */
/* ============================================= */

.affiliate-container {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  margin: 4rem auto;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  max-width: 960px;
}

.affiliate-container h2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.affiliate-container p {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Affiliate Buttons Grid */
.affiliate-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 1rem;
}

.aff-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.affiliate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  padding: 1.1rem 1.8rem;
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid transparent;
}

.affiliate-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(247, 147, 26, 0.3);
}

/* Brand-specific colors */
.affiliate-btn-crypto-com {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-color: #ff5c8d;
  color: white;
}

.affiliate-btn-crypto-com:hover {
  border-color: #ff80a8;
  background: linear-gradient(135deg, #2a2a4e, #1f2e5e);
}

.affiliate-btn-kraken {
  background: linear-gradient(135deg, #0f2b46, #1e4d7a);
  border-color: #4fc3f7;
  color: white;
}

.affiliate-btn-kraken:hover {
  border-color: #81d4fa;
}

.affiliate-btn-ledger {
  background: linear-gradient(135deg, #1c2526, #2e3a3b);
  border-color: #f7931a;
  color: white;
}

.affiliate-btn-ledger:hover {
  border-color: #ffaa33;
}

.affiliate-btn-koinly {
  background: linear-gradient(135deg, #1e3a2f, #2e5c4a);
  border-color: #4ade80;
  color: white;
}

.affiliate-btn-koinly:hover {
  border-color: #86efac;
}

/* Small text under buttons */
.aff-btn-wrapper small {
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
  max-width: 280px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .affiliate-container {
    padding: 2.5rem 1.5rem;
    margin: 3rem 1rem;
  }
  
  .affiliate-btn {
    font-size: 1.2rem;
    padding: 1rem 1.4rem;
  }
}

/* ==================== FOOTER ==================== */
footer {
  background: #0f0f0f;
  padding: 2.5rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Force the link color — this should override everything */
footer a {
  color: #b6ff00 !important;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover,
footer a:focus {
  color: #ffffff !important;
  text-decoration: underline;
}


/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .hero { padding: 5rem 0 3rem; }
  .container { padding: 0 1rem; }
  .two-column-grid { grid-template-columns: 1fr; }
  #bg-stars { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.65rem; }
  .timeline-date { font-size: 0.95rem; padding: 0.5rem 1rem; }
}

/* ==================== LIVE PRICE ROW - Enhanced Version ==================== */

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  max-width: 1100px;
  margin: 3rem auto 5rem;
}

.price-card,
.chart-card {
  flex: 1 1 460px;
  max-width: 620px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2.2rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.price-card:hover,
.chart-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(247, 147, 26, 0.25);
  border-color: var(--accent);
}

/* Live Price Card */
.price-card h3 {
  color: var(--muted);
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

#current-price.price {
  font-size: clamp(3.6rem, 10vw, 5.2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.05;
  margin: 0.8rem 0 1rem;
  letter-spacing: -2px;
}

#change.change-text {
  font-size: 1.65rem;
  font-weight: 600;
  margin: 0.6rem 0 1.2rem;
}

#change.positive {
  color: var(--positive);
}

#change.negative {
  color: var(--negative);
}

#last-update.muted {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.8rem;
}

/* Refresh Button */
#refresh-btn.btn {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
}

/* Chart Card */
.chart-card h3 {
  color: var(--muted);
  font-size: 1.25rem;
  margin-bottom: 1.4rem;
  font-weight: 500;
}

.chart-wrapper {
  width: 100%;
  min-height: 380px;
  background: #0c0c10;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 10px;
}

/* ==================== MOBILE OPTIMIZATIONS FOR PRICE ROW ==================== */

@media (max-width: 768px) {
  .price-row {
    gap: 1.8rem;
    margin: 2rem auto 3rem;
  }

  .price-card,
  .chart-card {
    padding: 1.8rem 1.4rem;
  }

  #current-price.price {
    font-size: 2.8rem;
  }

  #change.change-text {
    font-size: 1.35rem;
  }

  .chart-wrapper {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .price-card,
  .chart-card {
    padding: 1.6rem 1.2rem;
  }

  #current-price.price {
    font-size: 2.4rem;
  }
}
/* ==================== PRICE EXPLAINER & FAQ SECTIONS ==================== */

.price-explainer,
.price-faq {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2.8rem;
  margin: 3rem auto 4rem;
  max-width: 900px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.price-explainer h3,
.price-faq h3 {
  color: var(--accent);
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* FAQ Styling */
.price-faq h4 {
  color: var(--text);
  font-size: 1.25rem;
  margin: 2rem 0 0.8rem;
  font-weight: 600;
}

.price-faq p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

/* Hover effect on sections */
.price-explainer:hover,
.price-faq:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

/* ==================== BACK TO TIMELINE BUTTON ==================== */
.back-to-timeline-wrapper {
  text-align: center;
  padding: 4rem 0 6rem;
}

.back-to-timeline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #000;
  padding: 1.2rem 3rem;
  min-width: 280px;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(247, 147, 26, 0.28);
  transition: all 0.3s ease;
}

.back-to-timeline-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(247, 147, 26, 0.4);
}

/* ==================== DATA NOTE (Footer-ish note) ==================== */

.data-note {
  text-align: center;
  max-width: 760px;
  margin: 2rem auto 4rem;
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  background: rgba(17, 17, 20, 0.6);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.data-note a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}

.data-note a:hover {
  color: var(--accent-hover);
}


.video-container {
  max-width: 860px;                /* Caps width on ultra-wide screens; adjust higher if you want it bigger */
  margin: 3rem auto;               /* More generous breathing room — feel free to tweak to 2.5rem or 4rem */
  text-align: center;
}

.video-container h3 {
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-size: 1.7rem;               /* Slightly larger for better hierarchy */
}

.video-container iframe {
  display: block;                  /* Prevents unwanted inline spacing */
  width: 100%;
  aspect-ratio: 16 / 9;            /* Core magic: forces 16:9 without fixed height */
  max-width: 100%;                 /* Extra safety — never overflow container */
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  background: #000;                /* Fallback color during load */
}


.genesis-badge {
  display: inline-block;
  background: rgba(247, 147, 26, 0.12);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(247, 147, 26, 0.3);
}

.genesis-hash {
  font-family: 'JetBrains Mono', monospace;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  font-size: 1.25rem;
  color: #d0d0ff;
  word-break: break-all;
  text-align: center;
  margin: 4rem 0;
  position: relative;
}

.genesis-prefix {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0.4rem 1.2rem;
  color: #e0aaff;           /* Brighter Neon Purple */
  font-size: 1.15rem;
  font-weight: 700;
  border: 2px solid #d946ef;
  border-radius: 9999px;
  box-shadow: 0 0 15px rgba(217, 70, 239, 0.6);
  letter-spacing: 3px;
}
.page-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 6rem;

}

.explanation {
  max-width: 780px;
  margin: 6rem auto 4rem;
  padding: 0 1rem;
}

.explanation h2 {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 1.8rem;
  text-align: center;
}

.explanation p {
  font-size: 1.15rem;
  color: #c0c0d0;
  margin-bottom: 1.6rem;
}

.explanation blockquote {
  background: #1a1a1f;
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.8rem;
  margin: 2rem 0;
  font-style: italic;
  color: #d0d0ff;
  font-size: 1.15rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin: 4rem 0;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  transition: all 0.25s ease;
}

.info-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}

.info-card dt {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.info-card dd {
  font-size: 1.18rem;
  color: var(--text);
  margin-bottom: 0.9rem;
  word-break: break-all;
}

.info-card .note-box {
  background: rgba(247, 147, 26, 0.08);
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  font-size: 0.94rem;
  color: #c0c0d0;
  line-height: 1.45;
}

.final-note {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted);
  font-size: 1.4rem;
  margin: 5rem 0 6rem;
  line-height: 1.5;
}

.input-wrapper {
  display: flex;
  align-items: center;
  background: #0f0f12;
  border: 1px solid #3a2a00;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}

.input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 2.1rem;
  font-weight: 600;
  outline: none;
  text-align: right;
}

.result {
  font-size: 1.45rem;
  margin-top: 0.5rem;
}

.result strong {
  color: #f7931a;
  font-size: 1.8rem;
}

.calculator-container {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.4rem 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.calculator-container h3 {
  color: #f7931a;
  margin-bottom: 0.8rem;
}

.orange-heading {
  color: #f7931a;
  text-align: center;
  margin-bottom: 2rem;
}


.facts-section {
  margin-top: 4rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.fact-card {
  background: var(--card);
  padding: 1.6rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.fact-card dt {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.fact-card dd {
  font-size: 1.18rem;
  margin: 0;
}


.story-paragraph {
  max-width: 820px;
  margin: 4rem auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.story-paragraph h3 {
  text-align: center;
  color: var(--accent);
  margin-bottom: 1.8rem;
}

.story-paragraph p {
  font-size: 1.12rem;
  line-height: 1.8;
  margin-bottom: 1.3rem;
}

/* Price Chart - Fixed */
.price-chart {
  padding: 4rem 0;
}

.price-chart .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.chart-title {
  text-align: center;
  color: var(--accent);
  font-size: 1.95rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.chart-figure {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  margin: 0 auto;
  max-width: 100%;
}

.chart-figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.chart-figure figcaption {
  text-align: center;
  color: var(--muted);
  margin-top: 1.2rem;
  font-size: 0.95rem;
}

/* ==================== PRICE HIGHLIGHT ==================== */
.price-highlight-section {
  padding: 2rem 0 3.5rem;
}

.price-highlight-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.2rem 2rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

.price-label {
  font-size: 1.05rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.price-value {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin: 0.4rem 0 0.6rem;
}

.price-date {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 1.6rem;
}

.chart-wrapper {
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid var(--border);
  width: 100%;
}

/* ==================== ACCORDIONS - Clean Version ==================== */
.accordion-item {
  margin-bottom: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  padding: 1.5rem 1.9rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.27rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.03);   /* Very subtle dark hover */
}

.accordion-icon {
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.35s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* Content */
.accordion-content {
  padding: 0 1.9rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
  padding: 1.7rem 1.9rem 2rem;
  max-height: 700px;
}

/* List styling */
.accordion-content ul {
  padding-left: 1.4rem;
  margin: 0;
}

.accordion-content li {
  margin-bottom: 0.95rem;
  line-height: 1.75;
}

/* Note Box */
.note {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  margin: 3rem auto;
  max-width: 820px;
  text-align: center;
}

/* Price Card Section */
.price-overview {
  padding: 4rem 0 5rem;
  text-align: center;
}

.price-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.price-card h3 {
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.price {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--accent);
  margin: 0.8rem 0 1rem;
}
/* ==================== MOBILE OPTIMIZATIONS ==================== */

@media (max-width: 768px) {
  .price-explainer,
  .price-faq {
    padding: 2rem 1.6rem;
    margin: 2rem auto 3rem;
  }

  .price-explainer h3,
  .price-faq h3 {
    font-size: 1.75rem;
  }

  .price-faq h4 {
    font-size: 1.15rem;
    margin-top: 1.6rem;
  }

  .back-to-timeline-wrapper {
    margin: 2.5rem 0 2rem;
  }

  .back-to-timeline-btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }

  .data-note {
    margin: 1.5rem auto 3rem;
    padding: 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .price-explainer,
  .price-faq {
    padding: 1.8rem 1.3rem;
  }
}

/* ===================== ALL PAGES LINKS ===================== */

/* Orange links for All Pages */
.aff-link,
.accordion-content a {
  color: #f7931a !important;
  font-weight: 500;
}

.aff-link:hover,
.accordion-content a:hover {
  color: #ffaa33 !important;
}
/* ===================== ETF SECTION ===================== */
.etf-section {
  padding: 4rem 0 5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.25rem;
  margin-bottom: 3rem;
}

.overview-card {
  text-align: center;
  padding: 2.2rem 1.8rem;
}

.etf-header {
  margin-bottom: 0.8rem;
}

.etf-header strong {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 0.4rem;
}

.ticker {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(247, 147, 26, 0.15);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
}

.etf-provider {
  color: var(--muted);
  margin-bottom: 1.6rem;
  font-size: 1.1rem;
}

.etf-stats {
  margin: 1.2rem 0;
}

.etf-stat {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
}

.etf-stat:last-child {
  border-bottom: none;
}

.stat-label {
  color: var(--muted);
}

.stat-value {
  font-weight: 600;
  color: #ffffff;
}

.etf-highlight {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--accent);
  font-weight: 500;
  font-size: 1.02rem;
}

.step-accordion {
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}


/* ===================== ABOUT SECTION ===================== */
.center {
  text-align: center;
}

.btn-center {
  display: flex;
  justify-content: center;
}

.cta-text {
  text-align: center;
  max-width: 600px;
  margin: 2rem auto;
  line-height: 1.6;
}


/* ===================== CONTACT FORM + INFO SECTION ===================== */

/* Layout wrapper (if not already styled elsewhere) */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
  align-items: start;
}

/* ================= FORM + INFO CARDS ================= */
.form-section,
.info-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.form-section:hover,
.info-section:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

/* ================= SECTION TITLES ================= */
.form-section h2,
.info-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  color: var(--accent);
}

/* ================= FORM FIELDS ================= */
.form-group {
  margin-bottom: 1.4rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0f0f15;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: all 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.15);
}

/* ================= TEXTAREA ================= */
textarea {
  min-height: 150px;
  resize: vertical;
}

/* ================= BUTTON OVERRIDE (safe) ================= */
.form-section .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* ================= INFO SECTION ================= */
.info-item {
  margin-bottom: 2rem;
}

.info-item h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.info-item p {
  color: var(--muted);
  margin: 0.3rem 0;
}

/* ================= SOCIAL LINKS ================= */
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ================= DROPDOWN (SELECT) ENHANCEMENT ================= */

select {
  appearance: none;              /* removes default OS styling */
  -webkit-appearance: none;
  -moz-appearance: none;

  background: #0f0f15;
  color: #e8e8f0;
  border: 1px solid #222226;
  border-radius: 10px;
  padding: 0.9rem 3rem 0.9rem 1rem; /* extra right padding for arrow */
  cursor: pointer;

  /* custom dropdown arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f7931a' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 7.5l4.5 5 4.5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

/* hover state */
select:hover {
  border-color: #f7931a;
}

/* focus state (matches your inputs) */
select:focus {
  border-color: #f7931a;
  box-shadow: 0 0 0 2px rgba(247, 147, 26, 0.15);
}

/* dropdown options (limited browser support but helps where it works) */
option {
  background: #0f0f15;
  color: #e8e8f0;
}

/* ====================== WALLET STYLES ====================== */

.wallet-card {
  margin: 2.5rem 0;
  padding: 2rem;
  background: #111114;
  border: 1px solid #222226;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  position: relative;
  transition: all 0.3s ease;
}

.wallet-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 35px rgba(247,147,26,0.25);
}

.wallet-card .badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: #f7931a;
  color: #000;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(247,147,26,0.4);
}

.wallet-card h2 {
  color: #f7931a;
  margin: 1rem 0 1.2rem;
  font-size: 1.5rem;
}

.wallet-card ul {
  margin: 1.2rem 0 1.8rem 0;
  padding-left: 1.3rem;
}

.wallet-card li {
  margin-bottom: 0.7rem;
  color: #ddd;
}

/* Info Box */
.info-box {
  margin: 4rem 0;
  padding: 2.2rem;
  background: #111114;
  border: 1px solid #222226;
  border-radius: 14px;
  text-align: center;
}

/* Wallet Table */
.wallet-table {
  width: 100%;
  border-collapse: collapse;
  background: #111114;
  border: 1px solid #222226;
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
}

.wallet-table th,
.wallet-table td {
  padding: 1.1rem 1.3rem;
  text-align: left;
  border-bottom: 1px solid #222226;
}

.wallet-table th {
  background: #1a1a1f;
  color: var(--accent);
  font-weight: 600;
}

.wallet-table .yes {
  color: #34d399;
  font-weight: 700;
}

/* Center Text */
.center-text {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.05rem;
}

.center-text a {
  color: #b6ff00;
  text-decoration: underline;
}

.center-text a:hover {
  color: #ffffff;
}


/* Affiliate Disclosure */
.aff-disclosure-inline {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: #888;
  line-height: 1.4;
}

/* Footer */
footer {
  text-align: center;
  padding: 4rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

footer {
  background: #0f0f0f;
  padding: 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 0.95rem;
  color: #888;
}

footer a {
  color: #b6ff00;
  text-decoration: none;
}

footer a:hover 
{
  color: #ffffff;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .wallet-card { padding: 1.6rem; }
}

.wallet-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.wallet-card-link:hover .wallet-card {
  border-color: var(--accent);
  box-shadow: 0 12px 35px rgba(247, 147, 26, 0.25);
}

.disclosure-link {
  color: #888;
  text-decoration: underline;
}

.disclosure-link:hover {
  color: #aaa;
}
