/* ══════════════════════════════════════════════════
   BitcoinLFG Theme — Main Stylesheet
   ══════════════════════════════════════════════════ */

:root {
  --orange:      #F7931A;
  --orange-dark: #d97a0e;
  --orange-glow: rgba(247,147,26,0.15);
  --black:       #0A0A0A;
  --surface:     #111111;
  --surface2:    #181818;
  --surface3:    #1f1f1f;
  --border:      #2a2a2a;
  --text:        #E8E8E8;
  --muted:       #888888;
  --green:       #00C896;
  --red:         #FF4444;
  --white:       #ffffff;
  --radius:      10px;
  --max-width:   1280px;
  --font-body:   'DM Sans', sans-serif;
  --font-display:'Playfair Display', serif;
  --font-mono:   'DM Mono', monospace;
}

/* ── RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, button { font-family: var(--font-body); }

/* ── TICKER ───────────────────────────────────────── */
.ticker-wrap {
  background: var(--orange);
  height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-label {
  background: var(--black);
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
}
.ticker-overflow { overflow: hidden; flex: 1; }
.ticker-scroll {
  display: flex;
  animation: tickerMove 40s linear infinite;
  width: max-content;
}
.ticker-scroll:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  border-right: 1px solid rgba(0,0,0,0.15);
}
.ticker-item strong { font-weight: 700; }
.ticker-up { color: #1a4a1a; font-weight: 700; }
.ticker-dn { color: #6a0000; font-weight: 700; }
@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HEADER ───────────────────────────────────────── */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 900;
  color: var(--black);
  box-shadow: 0 0 20px var(--orange-glow);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}
.logo-text span { color: var(--orange); }

/* Nav */
.nav-wrap { flex: 1; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
}
.main-nav li { list-style: none; }
.main-nav a {
  padding: 6px 11px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  display: block;
}
.main-nav a:hover,
.main-nav .current-menu-item > a { color: var(--white); background: var(--surface3); }
.main-nav .current-menu-item > a { color: var(--orange); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-search {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  display: flex; align-items: center; gap: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-search:hover { border-color: var(--orange); color: var(--orange); }
.btn-subscribe {
  background: var(--orange);
  color: var(--black);
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  display: inline-block;
}
.btn-subscribe:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px; height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

/* Search Bar */
.search-bar {
  display: none;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
}
.search-bar.open { display: block; }
.search-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.search-bar input[type="search"] {
  flex: 1;
  background: var(--surface3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}
.search-bar input[type="search"]:focus { border-color: var(--orange); }
.search-bar .search-submit {
  background: var(--orange);
  color: var(--black);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.search-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  padding: 12px 24px 16px;
}
.mobile-nav.open { display: block; }
.mobile-nav-list li { border-bottom: 1px solid var(--border); }
.mobile-nav-list li:last-child { border-bottom: none; }
.mobile-nav-list a {
  display: block;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* ── BREAKING BAR ─────────────────────────────────── */
.breaking-bar {
  background: var(--red);
  color: var(--white);
  padding: 8px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 14px;
  padding-left: 24px;
}
.breaking-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--red);
  padding: 2px 8px;
  border-radius: 3px;
  flex-shrink: 0;
  font-family: var(--font-mono);
}
.breaking-scroll {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  animation: tickerMove 25s linear infinite;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  max-width: var(--max-width);
  margin: 28px auto 0;
  padding: 0 24px;
  animation: fadeUp 0.5s ease both;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  min-height: 460px;
}
.hero-main {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #0a1628 0%, #0d2040 50%, #1a3a60 100%);
  display: block;
  text-decoration: none;
}
.hero-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  filter: brightness(0.5);
  transition: filter 0.4s;
}
.hero-main:hover img { filter: brightness(0.4); }
.hero-main-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628, #1a3a60);
}
.hero-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--orange);
  color: var(--black);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.5) 65%, transparent 100%);
  z-index: 2;
}
.hero-meta {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
  margin-bottom: 10px;
  display: flex; gap: 10px; align-items: center;
  flex-wrap: wrap;
}
.hero-meta span:first-child { color: var(--orange); }
.hero-meta-sep { color: #444 !important; }
.hero-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.hero-excerpt {
  font-size: 14px;
  color: rgba(232,232,232,0.78);
  line-height: 1.55;
  max-width: 560px;
}
.hero-side {
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.hero-side-item {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
  flex: 1;
  display: block;
  text-decoration: none;
}
.hero-side-item:last-child { border-bottom: none; }
.hero-side-item:hover { background: var(--surface2); }
.side-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 7px;
  font-family: var(--font-mono);
  display: block;
}
.side-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  line-height: 1.3; color: var(--white);
  margin-bottom: 6px;
  display: block;
}
.side-meta { font-size: 11px; color: var(--muted); font-family: var(--font-mono); }

/* ── MARKET STRIP ─────────────────────────────────── */
.market-strip {
  max-width: var(--max-width);
  margin: 20px auto 0;
  padding: 0 24px;
  animation: fadeUp 0.5s 0.08s ease both;
}
.market-strip-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}
.market-coin {
  padding: 14px 18px;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.market-coin:last-child { border-right: none; }
.market-coin:hover { background: var(--surface2); }
.market-coin.loading { grid-column: 1 / -1; }
.coin-name {
  font-size: 11px; font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 4px;
  font-family: var(--font-mono);
}
.coin-price {
  font-size: 17px; font-weight: 700;
  color: var(--white);
  font-family: var(--font-mono);
  margin-bottom: 2px;
}
.coin-chg { font-size: 12px; font-weight: 600; font-family: var(--font-mono); }
.coin-chg.up { color: var(--green); }
.coin-chg.dn { color: var(--red); }

/* ── MAIN WRAP ────────────────────────────────────── */
.main-wrap {
  max-width: var(--max-width);
  margin: 28px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
  animation: fadeUp 0.5s 0.14s ease both;
}
.main-content {}

/* ── SECTION HEADING ──────────────────────────────── */
.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.section-heading h2 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 900;
  color: var(--white);
  white-space: nowrap;
}
.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
}
.section-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid rgba(247,147,26,0.25);
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.section-tag:hover { background: rgba(247,147,26,0.25); }

/* ── FEATURED GRID ────────────────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.featured-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
  text-decoration: none;
}
.featured-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.featured-card-img {
  height: 145px;
  background: var(--surface3);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.featured-card-img img { width: 100%; height: 100%; object-fit: cover; }
.fc-icon { font-size: 40px; }
.featured-card-body { padding: 14px; }
.featured-card-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 7px;
  font-family: var(--font-mono);
  display: block;
}
.featured-card-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  line-height: 1.3; color: var(--white);
  margin-bottom: 8px;
}
.featured-card-meta { font-size: 11px; color: var(--muted); font-family: var(--font-mono); }

/* ── ARTICLE CARD ─────────────────────────────────── */
.article-card {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  color: inherit;
}
.article-card:last-child { border-bottom: none; }
.article-card:hover { opacity: 0.8; }
.card-body {}
.card-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 7px;
  font-family: var(--font-mono);
  display: inline-block;
  text-decoration: none;
}
.card-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  line-height: 1.3; color: var(--white);
  margin-bottom: 7px;
}
.card-title a { color: var(--white); text-decoration: none; }
.card-title a:hover { color: var(--orange); }
.card-excerpt {
  font-size: 13px; color: var(--muted);
  line-height: 1.5; margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  font-size: 11px; color: #555;
  font-family: var(--font-mono);
  display: flex; gap: 4px; align-items: center; flex-wrap: wrap;
}
.card-meta .author { color: var(--muted); }
.card-img {
  display: block;
  width: 120px; height: 84px;
  border-radius: 8px; overflow: hidden;
  background: var(--surface3);
  align-self: start; flex-shrink: 0;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img-placeholder {
  width: 120px; height: 84px;
  border-radius: 8px;
  background: var(--surface3);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  align-self: start; flex-shrink: 0;
  text-decoration: none;
}

/* ── ANALYSIS SECTION ─────────────────────────────── */
.analysis-section {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 0 24px;
  animation: fadeUp 0.5s 0.2s ease both;
}
.analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.analysis-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.analysis-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.analysis-header {
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.analysis-coin-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  flex-shrink: 0;
}
.analysis-coin-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.analysis-coin-price { font-size: 12px; color: var(--muted); font-family: var(--font-mono); }
.analysis-body { padding: 14px 18px; }
.analysis-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--white); line-height: 1.3;
  margin-bottom: 8px;
}
.analysis-text {
  font-size: 12px; color: var(--muted);
  line-height: 1.55; margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.analysis-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 11px; font-family: var(--font-mono); color: var(--muted);
}
.analysis-signal {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  font-family: var(--font-mono);
}
.signal-bull { background: rgba(0,200,150,0.15); color: var(--green); }
.signal-bear { background: rgba(255,68,68,0.12); color: var(--red); }
.signal-neutral { background: rgba(247,147,26,0.12); color: var(--orange); }

/* ── SIDEBAR ──────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 80px; }
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.widget-header {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.widget-header h3 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; color: var(--white);
}
.widget-header a { font-size: 11px; color: var(--orange); font-weight: 600; font-family: var(--font-mono); }

/* Fear & Greed */
.fear-greed { padding: 22px 18px; text-align: center; }
.gauge-wrap {
  position: relative;
  width: 160px; height: 80px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.gauge-bg {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: conic-gradient(#c0392b 0deg 72deg, #e67e22 72deg 108deg, #f1c40f 108deg 144deg, #2ecc71 144deg 180deg);
  position: absolute; top: 0; left: 0;
  clip-path: polygon(0 50%, 50% 50%, 100% 50%, 100% 0, 0 0);
}
.gauge-inner {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 50px;
  background: var(--surface); border-radius: 50px 50px 0 0;
}
.gauge-needle {
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) rotate(0deg);
  transform-origin: bottom center;
  width: 2px; height: 58px;
  background: var(--white); border-radius: 2px;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gauge-value {
  font-family: var(--font-mono);
  font-size: 30px; font-weight: 700;
  color: var(--orange); display: block; margin-bottom: 2px;
}
.gauge-label {
  font-size: 12px; font-weight: 600; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-family: var(--font-mono);
}
.gauge-sub { font-size: 11px; color: var(--muted); margin-top: 4px; font-family: var(--font-mono); }

/* Trending */
.trending-list {}
.trending-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background 0.2s;
}
.trending-item:last-child { border-bottom: none; }
.trending-item:hover { background: var(--surface2); }
.trending-num {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 900;
  color: var(--border); line-height: 1;
  flex-shrink: 0; width: 22px; text-align: center; margin-top: 2px;
}
.trending-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); font-family: var(--font-mono); margin-bottom: 4px;
}
.trending-title { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.35; }
a.trending-title { display: block; text-decoration: none; }
a.trending-title:hover { color: var(--orange); }

/* Newsletter */
.newsletter-widget { padding: 18px; background: linear-gradient(135deg, var(--surface) 0%, rgba(247,147,26,0.04) 100%); }
.newsletter-widget strong { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.newsletter-widget p { font-size: 12px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.newsletter-input {
  width: 100%; background: var(--surface3); border: 1px solid var(--border);
  color: var(--text); padding: 10px 14px; border-radius: 8px;
  font-size: 13px; margin-bottom: 8px; outline: none;
  transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--orange); }
.newsletter-btn {
  width: 100%; background: var(--orange); color: var(--black);
  border: none; padding: 10px; border-radius: 8px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  letter-spacing: 0.02em; transition: background 0.2s;
}
.newsletter-btn:hover { background: var(--orange-dark); }
.twitter-follow-btn {
  display: block; background: var(--surface3);
  border: 1px solid var(--border); color: var(--white);
  padding: 10px; border-radius: 8px; font-size: 13px;
  font-weight: 600; text-align: center;
  transition: border-color 0.2s; text-decoration: none;
}
.twitter-follow-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ── SINGLE ARTICLE ───────────────────────────────── */
.single-wrap {
  max-width: var(--max-width);
  margin: 28px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.single-article {}
.article-header { margin-bottom: 24px; }
.article-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); background: var(--orange-glow);
  border: 1px solid rgba(247,147,26,0.25);
  padding: 3px 10px; border-radius: 4px;
  font-family: var(--font-mono); margin-bottom: 12px; margin-right: 6px;
  text-decoration: none;
}
.article-title {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 900;
  line-height: 1.18; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 18px;
}
.article-meta {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.article-author {
  display: flex; align-items: center; gap: 10px;
}
.author-avatar { width: 36px; height: 36px; border-radius: 50%; }
.author-name { display: block; font-size: 13px; font-weight: 600; color: var(--white); }
.author-handle { display: block; font-size: 11px; color: var(--orange); font-family: var(--font-mono); }
.article-meta-right { font-size: 12px; color: var(--muted); font-family: var(--font-mono); display: flex; gap: 6px; }
.meta-sep { color: var(--border); }
.share-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 0; flex-wrap: wrap;
}
.share-label { font-size: 11px; color: var(--muted); font-family: var(--font-mono); }
.share-btn {
  padding: 6px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  border: 1px solid var(--border); background: var(--surface3);
  color: var(--text); transition: border-color 0.2s;
  font-family: var(--font-body);
}
.share-btn:hover { border-color: var(--orange); }
.article-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.article-hero-img img { width: 100%; height: 420px; object-fit: cover; }
.tradingview-wrap { margin-bottom: 28px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.article-content {
  font-size: 16px; line-height: 1.75; color: #ccc;
  margin-bottom: 28px;
}
.article-content h2 { font-family: var(--font-display); font-size: 24px; color: var(--white); margin: 28px 0 12px; }
.article-content h3 { font-family: var(--font-display); font-size: 20px; color: var(--white); margin: 24px 0 10px; }
.article-content p { margin-bottom: 18px; }
.article-content strong { color: var(--white); }
.article-content a { color: var(--orange); text-decoration: underline; }
.article-content blockquote {
  border-left: 3px solid var(--orange); padding: 12px 20px;
  margin: 20px 0; background: var(--surface2);
  font-size: 17px; font-style: italic; color: var(--white);
  border-radius: 0 8px 8px 0;
}
.article-content ul, .article-content ol { margin: 0 0 18px 24px; }
.article-content li { margin-bottom: 6px; }
.article-content img { border-radius: 8px; margin: 20px 0; }
.article-tags { margin-bottom: 24px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); }
.article-tags a { color: var(--orange); margin-right: 6px; }
.author-box {
  display: flex; gap: 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  margin-bottom: 24px; align-items: flex-start;
}
.author-box-avatar { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; }
.author-box-name { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 2px; font-family: var(--font-display); }
.author-box-handle { font-size: 11px; color: var(--orange); font-family: var(--font-mono); margin-bottom: 8px; display: block; }
.author-box-bio { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.author-follow { font-size: 12px; font-weight: 600; color: var(--orange); }
.disclaimer-box {
  background: var(--surface2); border: 1px solid var(--border);
  border-left: 3px solid var(--orange); padding: 14px 18px;
  border-radius: var(--radius); font-size: 12px;
  color: var(--muted); line-height: 1.55; margin-bottom: 32px;
}
.related-posts { margin-top: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; text-decoration: none; }
.related-card:hover { border-color: var(--orange); }
.related-img { height: 100px; overflow: hidden; background: var(--surface3); display: flex; align-items: center; justify-content: center; }
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-img-placeholder { font-size: 28px; }
.related-body { padding: 12px; }
.related-tag { font-size: 10px; color: var(--orange); font-family: var(--font-mono); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; display: block; }
.related-title { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 5px; }
.related-meta { font-size: 11px; color: var(--muted); font-family: var(--font-mono); }

/* ── ARCHIVE ──────────────────────────────────────── */
.archive-wrap {
  max-width: var(--max-width);
  margin: 28px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.archive-header { margin-bottom: 24px; }
.archive-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange);
  font-family: var(--font-mono); margin-bottom: 8px;
}
.archive-title { font-family: var(--font-display); font-size: 30px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.archive-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
.no-posts { font-size: 14px; color: var(--muted); padding: 30px 0; }
.no-posts a { color: var(--orange); }

/* ── PAGINATION ───────────────────────────────────── */
.pagination {
  display: flex; gap: 6px; margin-top: 28px;
  padding-top: 24px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.pagination .page-numbers {
  padding: 7px 13px; border: 1px solid var(--border);
  border-radius: 7px; font-size: 13px; color: var(--muted);
  cursor: pointer; transition: all 0.2s; font-family: var(--font-mono);
  text-decoration: none; display: inline-block;
}
.pagination .page-numbers:hover { border-color: var(--orange); color: var(--orange); }
.pagination .current { background: var(--orange); color: var(--black); border-color: var(--orange); }

/* ── FOOTER ───────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 900;
  color: var(--white); display: block; margin-bottom: 12px;
  text-decoration: none;
}
.footer-logo span { color: var(--orange); }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; cursor: pointer; color: var(--muted);
  transition: all 0.2s; text-decoration: none;
}
.social-link:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-glow); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px; font-family: var(--font-mono);
}
.footer-col ul {}
.footer-col li { margin-bottom: 8px; }
.footer-col li a { font-size: 13px; color: #666; transition: color 0.2s; display: block; }
.footer-col li a:hover { color: var(--orange); }

/* Newsletter Bar */
.footer-newsletter {
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(247,147,26,0.04) 100%);
  padding: 24px;
}
.footer-newsletter-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
}
.footer-newsletter-inner strong { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); }
.footer-newsletter-inner p { font-size: 13px; color: var(--muted); margin-top: 3px; }
.footer-nl-form { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.nl-input {
  background: var(--surface3); border: 1px solid var(--border);
  color: var(--text); padding: 10px 16px; border-radius: 8px;
  font-size: 14px; outline: none; min-width: 240px;
  transition: border-color 0.2s;
}
.nl-input:focus { border-color: var(--orange); }
.nl-btn {
  background: var(--orange); color: var(--black); border: none;
  padding: 10px 22px; border-radius: 8px; font-size: 14px;
  font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.nl-btn:hover { background: var(--orange-dark); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--border);
}
.footer-bottom-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: #555; font-family: var(--font-mono);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom-inner a { color: var(--orange); }
.footer-disclaimer {}

/* ── ERROR PAGE ───────────────────────────────────── */
.error-wrap { max-width: var(--max-width); margin: 80px auto; padding: 0 24px; text-align: center; }
.error-code { font-family: var(--font-display); font-size: 120px; font-weight: 900; color: var(--border); line-height: 1; margin-bottom: 10px; }
.error-title { font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.error-desc { font-size: 15px; color: var(--muted); margin-bottom: 28px; }

/* ── UTILITY ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 300px; }
  .analysis-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .main-wrap, .single-wrap, .archive-wrap { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .analysis-grid { grid-template-columns: 1fr 1fr; }
  .market-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .market-coin:nth-child(n+4) { display: none; }
  .nav-wrap { display: none; }
  .btn-hamburger { display: flex; align-items: center; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 22px; }
  .article-title { font-size: 26px; }
  .analysis-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .market-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .market-coin:nth-child(3) { display: none; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-newsletter-inner { flex-direction: column; align-items: flex-start; }
  .nl-input { min-width: unset; width: 100%; }
  .footer-nl-form { width: 100%; flex-direction: column; }
}
