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

/* ── Variables ── */
:root {
  --bg: #050810;
  --surface: #0c1122;
  --surface2: #111827;
  --surface3: #1a2540;
  --text: #eef2ff;
  --muted: #8899bb;
  --dim: #4a5880;
  --blue: #3b82f6;
  --blue-bright: #60a5fa;
  --accent: #06b6d4;
  --line: rgba(255,255,255,0.07);
  --line2: rgba(255,255,255,0.13);
}
html[data-theme="light"] {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface2: #eef3fb;
  --surface3: #dbe7f7;
  --text: #0f172a;
  --muted: #53627a;
  --dim: #8491a6;
  --line: rgba(15,23,42,0.08);
  --line2: rgba(15,23,42,0.14);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-color: #1a2540 #050810; scrollbar-width: thin; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 3px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(59,130,246,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 15%, rgba(139,92,246,0.06) 0%, transparent 50%);
}
html[data-theme="light"] body {
  background-image:
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(59,130,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 15%, rgba(6,182,212,0.08) 0%, transparent 50%);
}

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

/* ── Container ── */
.container { width: min(1240px, 94%); margin-inline: auto; min-width: 0; }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,8,16,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 20px;
  letter-spacing: -0.03em; flex-shrink: 0;
}
.brand-logo-icon svg { display: block; }
.brand-text-wrap { display: flex; flex-direction: column; justify-content: center; }
.brand-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.brand-name em { font-style: normal; color: var(--blue-bright); }
.custom-logo { max-height: 48px; width: auto; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 14px; }

.main-nav { display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 2px; }
.main-nav a { color: var(--muted); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.main-nav a:hover, .main-nav li.current-menu-item > a, .main-nav li.current_page_item > a { color: var(--text); background: rgba(255,255,255,0.07); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.btn-search {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line2);
  display: grid; place-items: center;
  color: var(--muted); transition: color 0.2s, border-color 0.2s;
}
.btn-search:hover { color: var(--text); border-color: var(--blue); }
.btn-theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line2); background: transparent;
  color: var(--muted); display: grid; place-items: center;
  font-size: 15px; transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-theme-toggle:hover { color: var(--text); border-color: var(--blue); background: rgba(59,130,246,0.08); }
.theme-icon--light { display: none; }
html[data-theme="light"] .theme-icon--dark { display: none; }
html[data-theme="light"] .theme-icon--light { display: inline; }
.btn-subscribe {
  background: var(--blue); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 8px; border: none;
  transition: background 0.2s, transform 0.1s;
}
.btn-subscribe:hover { background: var(--blue-bright); transform: translateY(-1px); }
.btn-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid var(--line2); background: transparent;
}
.btn-hamburger span { display: block; width: 18px; height: 2px; background: var(--muted); border-radius: 2px; transition: all 0.25s; }
.btn-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.btn-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; overflow: hidden; max-height: 0; transition: max-height 0.3s ease, padding 0.3s; border-top: 1px solid var(--line); }
.mobile-nav.is-open { max-height: 400px; padding: 10px 0; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a { display: block; padding: 11px 20px; font-size: 15px; font-weight: 500; color: var(--muted); border-radius: 8px; margin: 0 12px; transition: color 0.2s, background 0.2s; }
.mobile-nav a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

/* ── Ticker ── */
.ticker { background: rgba(59,130,246,0.07); border-bottom: 1px solid rgba(59,130,246,0.14); padding: 10px 0; }
.ticker-inner { display: flex; align-items: center; gap: 14px; }
.ticker-label { background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; flex-shrink: 0; }
.ticker-scroll { overflow: hidden; flex: 1; }
.ticker-text { font-size: 13px; font-weight: 500; color: #93c5fd; }
.ticker-text a { color: #93c5fd; transition: color 0.2s; }
.ticker-text a:hover { color: #fff; }
.reading-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--accent));
  transition: width 0.08s linear;
}
.top-alert { background: linear-gradient(90deg, rgba(59,130,246,0.95), rgba(6,182,212,0.9)); color: #fff; font-size: 13px; font-weight: 600; }
.top-alert__inner { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 14px; text-align: center; }
.top-alert__close { position: absolute; right: 14px; width: 24px; height: 24px; border: 0; background: rgba(255,255,255,0.16); color: #fff; border-radius: 50%; font-size: 16px; }

/* ── Badge ── */
.badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(59,130,246,0.15); color: var(--blue-bright);
  border: 1px solid rgba(59,130,246,0.22); line-height: 1;
}
.badge:hover { background: rgba(59,130,246,0.25); }

/* ── Breadcrumb ── */
.breadcrumb ol { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; padding: 0; margin: 0; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--dim); }
.breadcrumb li::after { content: '/'; color: var(--dim); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--muted); }

/* ══════════════════════════════
   HERO FULL
══════════════════════════════ */
.hero-full {
  position: relative; overflow: hidden;
  min-height: 520px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-full__bg {
  position: absolute; inset: 0;
  background-image: var(--hero-bg, none);
  background-size: cover; background-position: center top;
  background-color: #0a1628; z-index: 0;
}
.hero-full__bg::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(59,130,246,0.03) 0px, transparent 1px, transparent 40px, rgba(59,130,246,0.03) 41px);
}
.hero-full__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(5,8,16,0.97) 40%, rgba(5,8,16,0.6) 70%, rgba(5,8,16,0.15) 100%),
    linear-gradient(to top, rgba(5,8,16,0.7) 0%, transparent 50%);
}
.hero-full__inner { position: relative; z-index: 1; padding: 58px 0 38px; max-width: 640px; min-width: 0; container-type: inline-size; }
.hero-full__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.hero-full__date { color: rgba(255,255,255,0.45); font-size: 13px; font-weight: 500; }
.hero-full__title { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3.3vw, 42px); font-weight: 800; line-height: 1.08; letter-spacing: -0.012em; margin-bottom: 16px; color: #fff; max-width: 100%; overflow-wrap: anywhere; word-break: normal; hyphens: auto; }
.hero-full__title a { color: inherit; }
.hero-full__title a:hover { color: var(--blue-bright); }
.hero-full__excerpt { font-size: 15px; line-height: 1.62; color: rgba(255,255,255,0.68); max-width: 560px; margin-bottom: 24px; }
.hero-full__author { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.hf-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.18); background: var(--surface2); }
.hf-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hf-author-name { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.88); }
.hf-author-name a { color: var(--blue-bright); }
.hf-author-role { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.hero-full__share { display: flex; align-items: center; gap: 8px; }
.hf-share-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s; backdrop-filter: blur(8px);
}
.hf-share-btn:hover { color: #fff; border-color: rgba(255,255,255,0.36); background: rgba(255,255,255,0.12); }

/* Key Highlights */
.key-highlights {
  position: relative; z-index: 1;
  background: rgba(10,18,40,0.82);
  border: 1px solid rgba(59,130,246,0.18); border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 26px 32px; backdrop-filter: blur(12px);
}
.kh-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 18px; }
.kh-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.kh-item { display: flex; align-items: flex-start; gap: 12px; }
.kh-icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 11px; background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.2); display: grid; place-items: center; color: var(--blue-bright); }
.kh-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.kh-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

.hero-quote { position: relative; z-index: 1; display: flex; align-items: flex-start; gap: 16px; background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.14); border-radius: 14px; padding: 18px 22px; margin-top: 14px; }
.hero-quote__icon { font-family: 'Syne', sans-serif; font-size: 48px; line-height: 0.8; color: var(--blue); opacity: 0.55; flex-shrink: 0; margin-top: 6px; }
.hero-quote p { font-size: 15px; color: rgba(255,255,255,0.65); font-style: italic; line-height: 1.65; }

/* ══════════════════════════════
   MAIN LAYOUT
══════════════════════════════ */
.main-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 40px; padding: 44px 0 64px; }
.page-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 40px; padding-bottom: 64px; }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 48px; align-items: start; }
.article-layout > article { min-width: 0; }

.section-header { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.section-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.section-title-accent { color: var(--blue-bright); }
.section-line { flex: 1; height: 1px; background: var(--line); }
.section-link { font-size: 13px; color: var(--blue); font-weight: 500; transition: color 0.2s; }
.section-link:hover { color: var(--blue-bright); }
.portal-widgets { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 16px; padding: 28px 0 4px; }
.portal-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 18px; min-width: 0; }
.portal-card__head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.portal-card__head a, .mini-btn { color: var(--blue-bright); font-size: 12px; text-transform: none; letter-spacing: 0; background: transparent; border: 0; }
.watchlist-list, .trending-mini__list { display: flex; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.watchlist-list a, .trending-mini__list a { background: var(--surface2); border: 1px solid var(--line); border-radius: 20px; padding: 5px 10px; text-transform: uppercase; font-size: 12px; }
.converter-row { display: grid; grid-template-columns: 72px 82px 1fr; gap: 8px; align-items: center; }
.converter-row input, .converter-row select { min-width: 0; background: var(--surface2); border: 1px solid var(--line2); border-radius: 8px; padding: 8px; color: var(--text); }
.sentiment-mini__val strong { display: block; font-family: 'Syne', sans-serif; font-size: 34px; line-height: 1; color: var(--blue-bright); }
.sentiment-mini__val span { color: var(--muted); font-size: 13px; }
.dashboard-mini__val strong { display: block; font-family: 'Syne', sans-serif; font-size: 18px; line-height: 1.2; color: var(--text); }
.dashboard-mini__val span { color: var(--muted); font-size: 13px; }
.popular-strip { padding: 28px 0 0; }
.popular-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 12px; }
.popular-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 14px; min-height: 104px; }
.popular-card span { display: block; color: var(--dim); font-size: 12px; margin-bottom: 8px; }
.popular-card strong { display: block; font-family: 'Syne', sans-serif; font-size: 14px; line-height: 1.35; overflow-wrap: anywhere; }

/* ── Post Cards ── */
.posts-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; margin-bottom: 32px; }
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; min-width: 0; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.post-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.thumb a { display: block; overflow: hidden; }
.thumb img { aspect-ratio: 16/9; object-fit: cover; width: 100%; transition: transform 0.4s ease; }
.post-card:hover .thumb img { transform: scale(1.04); }
.placeholder { aspect-ratio: 16/9; display: grid; place-items: center; background: var(--surface2); color: var(--dim); font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; }
.card-body { padding: 18px 20px 20px; }
.card-body h2 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 600; line-height: 1.3; margin: 8px 0 10px; overflow-wrap: anywhere; }
.card-body h2 a { transition: color 0.2s; }
.card-body h2 a:hover { color: var(--blue-bright); }
.card-body .excerpt { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.card-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--dim); }
.card-meta .dot { width: 3px; height: 3px; background: var(--dim); border-radius: 50%; flex-shrink: 0; }
.card-meta .read-time { color: var(--muted); }

/* ── Pagination ── */
.nav-links { padding: 16px 0; }
.nav-links a, .nav-links span { display: inline-block; margin: 4px; padding: 8px 16px; border-radius: 8px; border: 1px solid var(--line2); font-size: 14px; font-weight: 500; color: var(--muted); transition: all 0.2s; }
.nav-links a:hover { color: var(--text); border-color: var(--blue); }
.nav-links .current { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ══════════════════════════════
   SIDEBAR — TEMAYA UYUMLU
══════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

/* Widget base — WP default widget'ları override et */
.widget,
.sidebar .widget,
#sidebar-1 .widget,
.widget_search,
.widget_recent_entries,
.widget_recent_comments,
.widget_categories,
.widget_tag_cloud,
.widget_archive,
.widget_pages,
.widget_meta,
.widget_calendar,
.widget_rss,
.widget_text {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  border-radius: 16px !important;
  padding: 22px !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* Widget title */
.widget h3,
.widget h2,
.widget .widget-title,
.widget_title,
#sidebar-1 .widget-title,
#sidebar-1 h3 {
  font-family: 'Syne', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  margin: 0 0 16px !important;
  padding: 0 0 12px !important;
  border-bottom: 1px solid var(--line) !important;
  background: transparent !important;
}

/* Search widget — tüm WP formlarını override */
.widget_search { padding: 20px !important; }
.widget_search .search-form { margin: 0 !important; }
.widget_search label { display: none !important; }

/* Wrapper: input + button yan yana, tek satır */
.widget_search .search-form,
.widget_search form {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  background: var(--surface2) !important;
  border: 1px solid var(--line2) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  padding: 0 !important;
}
.widget_search .search-form:focus-within,
.widget_search form:focus-within {
  border-color: var(--blue) !important;
}
.widget_search input[type="search"],
.widget_search input[type="text"] {
  flex: 1 !important;
  min-width: 0 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 11px 12px !important;
  color: var(--text) !important;
  font-size: 14px !important;
  font-family: 'DM Sans', sans-serif !important;
  -webkit-appearance: none !important;
  width: auto !important;
}
.widget_search input[type="search"]::placeholder { color: var(--dim) !important; }
.widget_search input[type="submit"],
.widget_search button[type="submit"],
.widget_search button {
  flex-shrink: 0 !important;
  width: auto !important;
  background: var(--blue) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 11px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  font-family: 'DM Sans', sans-serif !important;
  cursor: pointer !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transition: background 0.2s !important;
  display: block !important;
  margin: 0 !important;
}
.widget_search input[type="submit"]:hover,
.widget_search button:hover { background: var(--blue-bright) !important; }
.cgs-search-form {
  display: flex; align-items: center; gap: 0; overflow: hidden;
  background: var(--surface2); border: 1px solid var(--line2); border-radius: 10px;
}
.cgs-search-form input[type="search"] {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
  color: var(--text); padding: 11px 12px; font-size: 14px; font-family: inherit;
}
.cgs-search-form button {
  border: 0; background: var(--blue); color: #fff; padding: 11px 16px;
  font-size: 13px; font-weight: 700; font-family: inherit;
}


/* Lists — recent posts, archives, categories, etc. */
.widget ul { list-style: none !important; padding: 0 !important; margin: 0 !important; display: flex !important; flex-direction: column !important; gap: 0 !important; }
.widget ul li { padding: 10px 0 !important; border-bottom: 1px solid var(--line) !important; display: flex !important; align-items: center !important; justify-content: space-between !important; }
.widget ul li:last-child { border-bottom: none !important; padding-bottom: 0 !important; }
.widget ul li:first-child { padding-top: 0 !important; }
.widget ul li a, .widget ul li a:visited { color: var(--muted) !important; font-size: 14px !important; font-weight: 500 !important; line-height: 1.45 !important; text-decoration: none !important; transition: color 0.2s !important; flex: 1 !important; }
.widget ul li a:hover { color: var(--text) !important; }
.widget ul li .post-date { font-size: 12px !important; color: var(--dim) !important; margin-left: 8px !important; }
.widget_archive ul li, .widget_categories ul li { font-size: 13px !important; }
.widget_categories span, .widget_archive span { color: var(--dim) !important; font-size: 12px !important; font-weight: 500 !important; background: var(--surface2) !important; padding: 2px 7px !important; border-radius: 5px !important; }

/* Recent comments */
.widget_recent_comments li { align-items: flex-start !important; flex-direction: column !important; gap: 3px !important; }
.widget_recent_comments .recentcomments { font-size: 13px !important; color: var(--muted) !important; line-height: 1.5 !important; }
.widget_recent_comments a { color: var(--blue-bright) !important; }
.widget_recent_comments cite { font-style: normal !important; color: var(--text) !important; font-weight: 500 !important; }

/* Tag cloud */
.widget_tag_cloud .tagcloud, .widget .tagcloud { display: flex !important; flex-wrap: wrap !important; gap: 7px !important; }
.widget_tag_cloud a, .widget .tagcloud a, .tag-cloud-link {
  display: inline-block !important;
  background: var(--surface2) !important;
  border: 1px solid var(--line) !important;
  color: var(--muted) !important;
  font-size: 12px !important; font-weight: 500 !important;
  padding: 5px 11px !important; border-radius: 6px !important;
  transition: all 0.2s !important;
  text-decoration: none !important;
}
.widget_tag_cloud a:hover, .tag-cloud-link:hover { color: var(--text) !important; border-color: var(--blue) !important; background: rgba(59,130,246,0.08) !important; }
/* Override WP inline font-size on tag cloud */
.widget_tag_cloud a[style], .tag-cloud-link[style] { font-size: 12px !important; }

/* Calendar */
.widget_calendar table { width: 100% !important; border-collapse: collapse !important; font-size: 13px !important; }
.widget_calendar caption { color: var(--muted) !important; font-size: 13px !important; font-weight: 600 !important; margin-bottom: 8px !important; }
.widget_calendar th { color: var(--dim) !important; font-size: 11px !important; font-weight: 600 !important; text-align: center !important; padding: 4px !important; }
.widget_calendar td { text-align: center !important; padding: 4px !important; color: var(--muted) !important; }
.widget_calendar td a { color: var(--blue-bright) !important; font-weight: 600 !important; }
.widget_calendar #today { background: var(--blue) !important; color: #fff !important; border-radius: 50% !important; }

/* Text/HTML widget */
.widget_text p, .widget p { color: var(--muted) !important; font-size: 14px !important; line-height: 1.65 !important; }

/* RSS widget */
.widget_rss ul li a { color: var(--blue-bright) !important; }
.widget_rss .rss-date { color: var(--dim) !important; font-size: 12px !important; }
.widget_rss cite { color: var(--muted) !important; font-size: 12px !important; }

/* ── Custom sidebar widgets ── */
.trending-list { display: flex; flex-direction: column; }
.trending-list li { padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.trending-list li:last-child { border-bottom: none; padding-bottom: 0; }
.trending-list li:first-child { padding-top: 0; }
.trending-num { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: rgba(59,130,246,0.2); min-width: 28px; line-height: 1; }
.trending-title { font-size: 14px; font-weight: 500; line-height: 1.4; }
.trending-title a:hover { color: var(--blue-bright); }
.trending-cat { font-size: 12px; color: var(--dim); margin-top: 2px; }
.newsletter-widget { text-align: left; }
.newsletter-widget p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-form input { background: var(--surface2); border: 1px solid var(--line2); border-radius: 8px; padding: 10px 14px; color: var(--text); font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s; }
.newsletter-form input:focus { border-color: var(--blue); }
.newsletter-form input::placeholder { color: var(--dim); }
.newsletter-form button { background: var(--blue); color: #fff; border: none; border-radius: 8px; padding: 10px; font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer; transition: background 0.2s; }
.newsletter-form button:hover { background: var(--blue-bright); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-cloud a { background: var(--surface2); border: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 6px; transition: all 0.2s; }
.tag-cloud a:hover { color: var(--text); border-color: var(--blue); background: rgba(59,130,246,0.08); }

/* ══════════════════════════════
   PAGE HEADER
══════════════════════════════ */
.page-header { padding: 44px 0 32px; border-bottom: 1px solid var(--line); margin-bottom: 36px; }
.page-header h1 { font-family: 'Syne', sans-serif; font-size: clamp(28px, 3.4vw, 36px); font-weight: 800; letter-spacing: -0.015em; }
.page-header p { color: var(--muted); margin-top: 8px; }



/* ══════════════════════════════
   ARTICLE (single.php)
══════════════════════════════ */
.article-wrap { padding: 44px 0 64px; }
.article-header { margin-bottom: 28px; min-width: 0; container-type: inline-size; }
.article-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.article-title { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3.4vw, 42px); font-weight: 800; line-height: 1.12; letter-spacing: -0.012em; margin-bottom: 16px; max-width: 100%; overflow-wrap: anywhere; word-break: normal; hyphens: auto; }
.article-subtitle { font-size: 17px; color: var(--muted); line-height: 1.62; margin-bottom: 20px; max-width: 100%; overflow-wrap: break-word; }
.author-row { display: flex; align-items: center; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--surface2); border: 2px solid var(--line2); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 14px; font-weight: 600; }
.author-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.article-meta-right { margin-left: auto; text-align: right; font-size: 13px; color: var(--muted); }
.share-row { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.share-label { font-size: 13px; color: var(--muted); margin-right: 4px; }
.share-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line2); display: grid; place-items: center; color: var(--muted); font-size: 15px; transition: all 0.2s; }
.share-btn:hover { color: var(--text); border-color: var(--blue); background: rgba(59,130,246,0.1); }
.featured-image { border-radius: 18px; overflow: hidden; margin-bottom: 32px; border: 1px solid var(--line); }
.featured-image img { width: 100%; max-height: 500px; object-fit: cover; }

/* Article content */
.article-content { font-size: 16px; line-height: 1.74; color: #ced9f5; }
.article-content > * { max-width: 100%; }
.article-content h2 { font-family: 'Syne', sans-serif; font-size: 23px; font-weight: 700; color: var(--text); margin: 34px 0 12px; padding-top: 10px; border-top: 1px solid var(--line); }
.article-content h3 { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 600; color: var(--text); margin: 28px 0 10px; }
.article-content p { margin-bottom: 22px; }
.article-content a { color: var(--blue-bright); border-bottom: 1px solid rgba(96,165,250,0.3); transition: border-color 0.2s; }
.article-content a:hover { border-color: var(--blue-bright); }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 22px; }
.article-content li { margin-bottom: 8px; }
.article-content img { border-radius: 14px; margin: 28px 0; border: 1px solid var(--line); }
.article-content blockquote { border-left: 3px solid var(--blue); margin: 28px 0; padding: 16px 20px; background: rgba(59,130,246,0.07); border-radius: 0 12px 12px 0; font-size: 17px; font-style: italic; color: var(--text); }
.article-content code { background: var(--surface2); border: 1px solid var(--line); padding: 2px 7px; border-radius: 4px; font-size: 15px; color: var(--accent); }
.article-content pre { background: var(--surface2); border: 1px solid var(--line); padding: 20px; border-radius: 12px; overflow-x: auto; margin-bottom: 22px; }
.article-content pre code { background: none; border: none; padding: 0; }
.article-content table { width: 100%; border-collapse: collapse; margin-bottom: 22px; font-size: 15px; }
.article-content th { background: var(--surface2); padding: 10px 16px; text-align: left; font-size: 13px; font-weight: 600; color: var(--muted); border-bottom: 1px solid var(--line2); }
.article-content td { padding: 10px 16px; border-bottom: 1px solid var(--line); }
.sponsored-badge { display: inline-block; border: 1px solid rgba(245,158,11,0.28); background: rgba(245,158,11,0.12); color: #fbbf24; border-radius: 999px; padding: 4px 9px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.review-score-card { display: inline-grid; gap: 2px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; margin: 0 0 18px; }
.review-score-card span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.review-score-card strong { font-family: 'Syne', sans-serif; font-size: 30px; color: var(--blue-bright); line-height: 1; }
.review-score-card em { font-style: normal; color: var(--muted); font-size: 13px; }
.author-box, .premium-lock { display: flex; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 22px; margin-top: 30px; }
.author-box__avatar img { border-radius: 50%; }
.author-box__label { color: var(--blue-bright); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; }
.author-box h3 { font-family: 'Syne', sans-serif; font-size: 20px; margin-bottom: 6px; }
.author-box p, .premium-lock p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.premium-lock { display: block; border-color: rgba(245,158,11,0.28); background: rgba(245,158,11,0.06); }
.premium-lock strong { display: block; font-family: 'Syne', sans-serif; font-size: 20px; margin-bottom: 6px; }
.premium-lock a { display: inline-block; margin-top: 10px; color: #fbbf24; font-weight: 700; }

/* Related posts */
.related-posts { margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--line); }
.related-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.related-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.2s; }
.related-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-2px); }
.related-thumb { aspect-ratio: 16/9; overflow: hidden; }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.related-card:hover .related-thumb img { transform: scale(1.05); }
.related-thumb--empty { aspect-ratio: 16/9; background: var(--surface2); }
.related-body { padding: 14px 16px; flex: 1; }
.related-body .badge { margin-bottom: 8px; }
.related-body h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; line-height: 1.35; margin-bottom: 8px; color: var(--text); }
.related-meta { font-size: 12px; color: var(--dim); }

/* Comments */
.comments-section { margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--line); }
.comments-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 24px; }
.comment-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.comment-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.comment-item:last-child { border-bottom: none; }
.comment-body { display: flex; gap: 14px; }
.comment-body img { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.comment-content { flex: 1; }
.comment-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.comment-author { font-size: 14px; font-weight: 600; }
.comment-date { font-size: 12px; color: var(--dim); }
.comment-content p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
.comment-reply-link { font-size: 13px; color: var(--blue); font-weight: 500; }
.comment-pending { font-size: 13px; color: var(--dim); font-style: italic; margin-bottom: 8px; }
.comment-notice { color: var(--muted); font-size: 14px; padding: 16px 0; }
.comment-form-wrap { margin-top: 36px; }
.comment-reply-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.comment-form-field { margin-bottom: 14px; }
.comment-form-field input, .comment-form-field textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--line2); border-radius: 10px;
  padding: 12px 16px; color: var(--text); font-size: 15px; font-family: inherit;
  outline: none; transition: border-color 0.2s; resize: vertical;
}
.comment-form-field input:focus, .comment-form-field textarea:focus { border-color: var(--blue); }
.comment-form-field input::placeholder, .comment-form-field textarea::placeholder { color: var(--dim); }
.comment-submit-btn { background: var(--blue); color: #fff; border: none; border-radius: 10px; padding: 12px 24px; font-size: 15px; font-weight: 600; font-family: inherit; cursor: pointer; transition: background 0.2s; }
.comment-submit-btn:hover { background: var(--blue-bright); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer { border-top: 1px solid var(--line); background: rgba(5,8,16,0.85); margin-top: 24px; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding: 52px 0 38px; }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; opacity: 0.7; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 15px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
/* Footer nav from wp_nav_menu */
.footer-col .menu { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-col .menu a { color: var(--muted); font-size: 15px; transition: color 0.2s; }
.footer-col .menu a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.footer-social { display: flex; gap: 8px; margin-top: 0; }
.social-link { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line2); display: grid; place-items: center; color: var(--muted); font-size: 14px; transition: all 0.2s; }
.social-link:hover { color: var(--text); border-color: var(--blue); }

/* ══════════════════════════════
   PRINT
══════════════════════════════ */
@media print {
  .site-header, .ticker, .sidebar, .share-row, .related-posts, .comments-section, .site-footer, .btn-subscribe, .nav-actions { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .article-content { color: #222 !important; font-size: 14pt !important; }
  .article-title { font-size: 24pt !important; color: #000 !important; }
  a { color: #000 !important; border-bottom: none !important; }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .main-layout, .article-layout, .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .kh-grid { grid-template-columns: repeat(2,1fr); }
}
@supports (font-size: 1cqw) {
  .hero-full__title { font-size: clamp(26px, 6cqw, 42px); }
  .article-title { font-size: clamp(26px, 6.4cqw, 42px); }
}
@media (max-width: 900px) {
  .main-nav { display: none !important; }
  .btn-hamburger { display: flex; }
  .mobile-nav { display: block; }
}
@media (max-width: 768px) {
  .posts-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-full { min-height: 390px; }
  .hero-full__inner { padding: 36px 0 26px; }
  .hero-full__bg::after { background: linear-gradient(to top, rgba(5,8,16,0.98) 50%, rgba(5,8,16,0.75) 100%); }
  .article-wrap { padding: 32px 0 48px; }
  .article-eyebrow, .author-row, .share-row { flex-wrap: wrap; }
  .article-meta-right { margin-left: 0; text-align: left; width: 100%; }
  .article-title { font-size: clamp(24px, 7vw, 34px); }
  .article-subtitle { font-size: 15px; }
  .article-content { font-size: 15px; line-height: 1.68; }
  .article-content h2 { font-size: 21px; }
  .article-content h3 { font-size: 18px; }
  .page-header h1, .markets-title, .fg-title, .halving-title, .about-hero__title, .author-hero__name { font-size: clamp(24px, 7vw, 34px) !important; line-height: 1.12 !important; }
  .portal-widgets, .popular-grid, .glossary-grid, .airdrops-grid { grid-template-columns: 1fr 1fr; }
  .coin-page__hero { grid-template-columns: 56px 1fr; }
  .coin-page__hero img { width: 56px; height: 56px; }
  .coin-page__hero .watch-btn { grid-column: 1 / -1; }
  .kh-grid { grid-template-columns: 1fr; }
  .key-highlights { padding: 18px 20px; }
  .nav-wrap { grid-template-columns: auto 1fr auto; }
}
@media (max-width: 480px) {
  .btn-subscribe { display: none; }
  .brand-name { font-size: 17px; }
  .container { width: min(100% - 28px, 1240px); }
  .hero-full { min-height: auto; }
  .hero-full__inner { padding: 30px 0 24px; }
  .hero-full__eyebrow { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero-full__title { font-size: clamp(24px, 9vw, 32px); line-height: 1.1; }
  .article-title { line-height: 1.12; letter-spacing: -0.01em; }
  .article-subtitle { font-size: 15px; }
  .btn-theme-toggle { width: 34px; height: 34px; }
  .portal-widgets, .popular-grid, .glossary-grid, .airdrops-grid, .converter-row { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; }
}

body.cgs-narrow .main-nav,
body.cgs-narrow .btn-subscribe,
body.cgs-narrow .sidebar {
  display: none !important;
}
body.cgs-narrow .btn-hamburger,
body.cgs-narrow .mobile-nav {
  display: flex;
}
body.cgs-narrow .mobile-nav {
  display: block;
}
body.cgs-narrow .container {
  width: min(100% - 28px, 1240px);
}
body.cgs-narrow .nav-wrap {
  grid-template-columns: auto 1fr auto;
  gap: 12px;
}
body.cgs-narrow .main-layout,
body.cgs-narrow .article-layout,
body.cgs-narrow .page-layout,
body.cgs-narrow .posts-grid,
body.cgs-narrow .related-grid,
body.cgs-narrow .kh-grid {
  grid-template-columns: 1fr !important;
}
body.cgs-narrow .hero-full {
  min-height: auto;
}
body.cgs-narrow .hero-full__inner {
  padding: 42px 0 28px;
}
body.cgs-narrow .hero-full__eyebrow,
body.cgs-narrow .author-row,
body.cgs-narrow .share-row {
  flex-wrap: wrap;
}
body.cgs-narrow .hero-full__title {
  font-size: clamp(23px, 8vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
body.cgs-narrow .hero-full__excerpt {
  font-size: 14px;
  line-height: 1.58;
}
body.cgs-narrow .key-highlights {
  padding: 18px;
}
body.cgs-narrow .post-card {
  width: 100%;
}
body.cgs-narrow .card-body {
  padding: 16px;
}
body.cgs-narrow .widget,
body.cgs-narrow .sidebar .widget,
body.cgs-narrow #sidebar-1 .widget,
body.cgs-narrow .widget_search {
  padding: 16px !important;
  border-radius: 14px !important;
}
body.cgs-narrow .widget_search .search-form,
body.cgs-narrow .widget_search form,
body.cgs-narrow .cgs-search-form {
  flex-direction: row !important;
}
body.cgs-narrow .widget_search input[type="search"],
body.cgs-narrow .widget_search input[type="text"],
body.cgs-narrow .cgs-search-form input[type="search"] {
  padding: 9px 10px !important;
  font-size: 13px !important;
}
body.cgs-narrow .widget_search input[type="submit"],
body.cgs-narrow .widget_search button[type="submit"],
body.cgs-narrow .widget_search button,
body.cgs-narrow .cgs-search-form button {
  padding: 9px 12px !important;
  font-size: 13px !important;
}
body.cgs-narrow .coin-detail__grid {
  grid-template-columns: 1fr;
}
body.cgs-narrow .markets-filters,
body.cgs-narrow .markets-tabs,
body.cgs-narrow .markets-currency,
body.cgs-narrow .halving-timer {
  width: 100%;
}
body.cgs-narrow .markets-table th,
body.cgs-narrow .markets-table td {
  padding: 11px 10px;
}
body.cgs-narrow .fg-gauge-card,
body.cgs-narrow .fg-history-card,
body.cgs-narrow .fg-explain-card,
body.cgs-narrow .halving-countdown-card {
  padding: 20px;
}

/* ══════════════════════════════
   AUTHOR PAGE
══════════════════════════════ */
.author-hero {
  background: linear-gradient(135deg, rgba(10,20,50,0.95) 0%, rgba(5,8,16,1) 60%);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.author-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(59,130,246,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.author-hero__inner {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start; gap: 36px;
}
.author-hero__avatar {
  position: relative; flex-shrink: 0;
}
.author-avatar-img {
  width: 120px !important; height: 120px !important;
  border-radius: 50% !important; object-fit: cover !important;
  border: 3px solid rgba(59,130,246,0.4) !important;
  display: block !important;
}
.author-avatar-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.2);
  pointer-events: none;
}
.author-hero__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 10px;
}
.author-hero__name {
  font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px;
}
.author-hero__tagline {
  font-size: 14px; color: var(--muted); margin-bottom: 16px; font-weight: 500;
}
.author-hero__bio {
  font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7;
  max-width: 620px; margin-bottom: 24px;
}
.author-hero__meta {
  display: flex; gap: 32px; margin-bottom: 24px;
}
.author-stat { display: flex; flex-direction: column; gap: 2px; }
.author-stat__num { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--text); line-height: 1; }
.author-stat__label { font-size: 12px; color: var(--dim); font-weight: 500; }
.author-hero__social { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.author-social-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 9px;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,0.05);
  color: var(--muted); font-size: 13px; font-weight: 500;
  transition: all 0.2s; backdrop-filter: blur(6px);
}
.author-social-btn:hover { color: var(--text); border-color: var(--blue); background: rgba(59,130,246,0.1); }

/* Expertise grid */
.author-expertise {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.author-exp-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px; transition: border-color 0.2s, transform 0.2s;
}
.author-exp-card:hover { border-color: rgba(59,130,246,0.25); transform: translateY(-2px); }
.author-exp-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.18);
  display: grid; place-items: center; color: var(--blue-bright);
  margin-bottom: 14px;
}
.author-exp-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.author-exp-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Main bio layout */
.author-main-layout {
  display: grid; grid-template-columns: minmax(0,1fr) 320px;
  gap: 48px; padding: 44px 0 72px;
}
.author-bio-section { margin-bottom: 36px; }
.author-bio-title {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.author-bio-section p {
  font-size: 16px; color: #c8d6f0; line-height: 1.8; margin-bottom: 18px;
}

/* Quote box */
.author-quote-box {
  display: flex; align-items: flex-start; gap: 18px;
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.18);
  border-left: 3px solid var(--blue);
  border-radius: 0 16px 16px 0;
  padding: 24px 28px; margin-bottom: 44px;
}
.author-quote-icon {
  font-family: 'Syne', sans-serif; font-size: 56px; line-height: 0.7;
  color: var(--blue); opacity: 0.5; flex-shrink: 0; margin-top: 8px;
}
.author-quote-text {
  font-size: 17px; font-style: italic; line-height: 1.7;
  color: rgba(255,255,255,0.8); margin-bottom: 10px;
}
.author-quote-attr { font-size: 13px; color: var(--blue-bright); font-weight: 600; }

/* Timeline */
.author-timeline { margin-bottom: 44px; }
.timeline-list { display: flex; flex-direction: column; position: relative; }
.timeline-list::before {
  content: '';
  position: absolute; left: 52px; top: 8px; bottom: 8px;
  width: 1px; background: var(--line);
}
.timeline-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 20px 0; position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--blue-bright); min-width: 44px; text-align: right;
  padding-top: 3px; flex-shrink: 0;
}
.timeline-item::after {
  content: '';
  position: absolute; left: 50px; top: 26px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue); border: 2px solid var(--bg);
  transform: translateX(-50%);
}
.timeline-content { padding-left: 18px; }
.timeline-event { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.timeline-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

@media (max-width: 1024px) {
  .author-main-layout { grid-template-columns: 1fr; }
  .author-expertise { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .author-hero__inner { flex-direction: column; gap: 24px; }
  .author-avatar-img { width: 88px !important; height: 88px !important; }
  .author-expertise { grid-template-columns: 1fr 1fr; }
  .author-hero__meta { gap: 20px; }
}
@media (max-width: 480px) {
  .author-expertise { grid-template-columns: 1fr; }
}





/* ══════════════════════════════
   AD ZONES — Google AdSense
══════════════════════════════ */
.ad-wrap {
  position: relative;
  width: 100%;
  text-align: center;
}
.ad-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
  text-align: center;
}
.ad-zone {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* After header — leaderboard 728x90 */
#ad-after-header .ad-wrap {
  padding: 10px 0;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--line);
}
#ad-after-header .ad-zone { min-height: 0; }

/* Sidebar ads — 300x250 rectangle */
#ad-sidebar-top,
#ad-sidebar-mid {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* Placeholder görünüm (reklam yokken) */
#ad-sidebar-top:empty,
#ad-sidebar-mid:empty { display: none; }

/* After article — in-content banner */
#ad-after-article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  min-height: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#ad-after-article:empty { display: none; }

/* Before footer — leaderboard */
#ad-before-footer {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  display: flex;
  justify-content: center;
  background: rgba(255,255,255,0.01);
}
#ad-before-footer:empty { display: none; }

/* AdSense responsive */
.adsbygoogle { display: block; }
ins.adsbygoogle[data-ad-status="unfilled"] { display: none !important; }

/* ══════════════════════════════
   PAGE.PHP — Özel sayfalar
══════════════════════════════ */
.page-wrap { padding: 44px 0 72px; }

/* About */
.about-hero { padding: 52px 0 40px; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.about-hero__tag { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 16px; }
.about-hero__title { font-family: 'Syne', sans-serif; font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 20px; }
.about-hero__title em { font-style: normal; color: var(--blue-bright); }
.about-hero__lead { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 680px; }

.about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 48px; }
.about-stat { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 24px 20px; text-align: center; }
.about-stat__n { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--blue-bright); display: block; line-height: 1; margin-bottom: 6px; }
.about-stat__l { font-size: 13px; color: var(--muted); font-weight: 500; }

.about-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 48px; }
.about-content h2 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; margin: 36px 0 14px; padding-top: 10px; border-top: 1px solid var(--line); color: var(--text); }
.about-content p { font-size: 16px; color: #c0d0ee; line-height: 1.8; margin-bottom: 18px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0 32px; }
.about-pillar { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 20px; transition: border-color 0.2s; }
.about-pillar:hover { border-color: rgba(59,130,246,0.3); }
.about-pillar__icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.18); display: grid; place-items: center; color: var(--blue-bright); margin-bottom: 12px; }
.about-pillar__title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.about-pillar__desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Contact */
.contact-wrap { margin-top: 36px; }
.contact-header { margin-bottom: 36px; }
.contact-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 48px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.contact-card { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; transition: border-color 0.2s; }
.contact-card:hover { border-color: rgba(59,130,246,0.3); }
.contact-card__icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.18); display: grid; place-items: center; color: var(--blue-bright); flex-shrink: 0; }
.contact-card__title { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-card__val { font-size: 15px; font-weight: 500; color: var(--blue-bright); }

/* Advertise */
.ad-options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0 32px; }
.ad-option { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.ad-option__name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.ad-option__size { font-family: monospace; font-size: 13px; color: var(--blue-bright); margin-bottom: 4px; }
.ad-option__pos { font-size: 13px; color: var(--muted); }

/* Footer link color fix */
.footer-col a,
.footer-col .menu li a,
.footer-col ul li a { color: rgba(136,153,187,0.85) !important; font-size: 15px !important; }
.footer-col a:hover,
.footer-col .menu li a:hover,
.footer-col ul li a:hover { color: var(--text) !important; }
.footer-col h4 { color: rgba(238,242,255,0.75) !important; }
.footer-bottom { color: rgba(136,153,187,0.7) !important; }
.footer-brand p { color: rgba(136,153,187,0.75) !important; }

/* Responsive */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .about-pillars, .ad-options-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* Authors grid */
.authors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.author-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: border-color 0.25s, transform 0.25s; }
.author-card:hover { border-color: rgba(59,130,246,0.35); transform: translateY(-3px); }
.author-card__avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin-bottom: 16px; border: 2px solid rgba(59,130,246,0.3); }
.author-card__img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.author-card__name { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.author-card__role { font-size: 12px; font-weight: 600; color: var(--blue-bright); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.author-card__bio { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.author-card__footer { display: flex; align-items: center; gap: 12px; font-size: 12px; }
.author-card__count { background: var(--surface2); border: 1px solid var(--line); padding: 4px 10px; border-radius: 6px; color: var(--muted); }
.author-card__tw { color: var(--blue-bright); }

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

/* ══════════════════════════════
   MARKETS PAGE
══════════════════════════════ */
.markets-wrap { padding: 44px 0 72px; }
.markets-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.markets-title { font-family: 'Syne', sans-serif; font-size: clamp(26px,4vw,40px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.markets-desc { color: var(--muted); font-size: 16px; max-width: 620px; line-height: 1.65; }
.markets-update { font-size: 12px; color: var(--dim); background: var(--surface); border: 1px solid var(--line); padding: 6px 12px; border-radius: 20px; white-space: nowrap; }

/* Filters */
.markets-filters { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.markets-search-wrap { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line2); border-radius: 10px; padding: 0 14px; flex: 1; min-width: 180px; max-width: 280px; transition: border-color 0.2s; }
.markets-search-wrap:focus-within { border-color: var(--blue); }
.markets-search-wrap svg { color: var(--dim); flex-shrink: 0; }
.markets-search-wrap input { background: transparent; border: none; outline: none; padding: 10px 0; color: var(--text); font-size: 14px; font-family: inherit; width: 100%; }
.markets-search-wrap input::placeholder { color: var(--dim); }

.markets-tabs { display: flex; gap: 4px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 4px; }
.mtab { background: transparent; border: none; padding: 7px 14px; border-radius: 7px; font-size: 13px; font-weight: 500; color: var(--muted); cursor: pointer; font-family: inherit; transition: all 0.2s; }
.mtab.active { background: var(--blue); color: #fff; }
.mtab:hover:not(.active) { color: var(--text); background: rgba(255,255,255,0.06); }

.markets-currency { display: flex; gap: 4px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 4px; }
.mcur { background: transparent; border: none; padding: 7px 12px; border-radius: 7px; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; font-family: inherit; transition: all 0.2s; }
.mcur.active { background: var(--surface2); color: var(--text); border: 1px solid var(--line2); }

/* Table */
.markets-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.markets-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.markets-table thead tr { border-bottom: 1px solid var(--line); }
.markets-table th { padding: 13px 16px; text-align: right; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dim); white-space: nowrap; }
.markets-table th.col-rank, .markets-table th.col-name { text-align: left; }
.markets-table th.sortable { cursor: pointer; user-select: none; transition: color 0.2s; }
.markets-table th.sortable:hover, .markets-table th.active { color: var(--blue-bright); }
.sort-arrow { font-size: 12px; }

.markets-table td { padding: 13px 16px; text-align: right; border-bottom: 1px solid var(--line); vertical-align: middle; }
.markets-table td.col-rank, .markets-table td.col-name { text-align: left; }
.markets-table tbody tr:last-child td { border-bottom: none; }
.markets-table tbody tr { transition: background 0.15s; }
.markets-table tbody tr:hover { background: rgba(255,255,255,0.03); }

.rank-num { font-size: 13px; color: var(--dim); font-weight: 500; min-width: 28px; display: inline-block; }
.coin-name-cell { display: flex; align-items: center; gap: 12px; }
.coin-logo { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.coin-name-link { font-weight: 600; color: var(--text); font-size: 14px; transition: color 0.2s; display: block; }
.coin-name-link:hover { color: var(--blue-bright); }
.coin-sym { font-size: 11px; color: var(--dim); font-weight: 500; text-transform: uppercase; }
.price-val { font-weight: 600; color: var(--text); font-family: 'DM Sans', monospace; }
.supply-val { font-size: 13px; color: var(--muted); }

.pct-up   { color: #22c55e; font-weight: 600; font-size: 13px; }
.pct-down { color: #ef4444; font-weight: 600; font-size: 13px; }
.pct-neutral { color: var(--dim); font-size: 13px; }

.col-sparkline { width: 90px; padding-right: 20px !important; }
.col-sparkline svg { display: block; margin-left: auto; }

/* Skeleton */
.skeleton-row td { padding: 16px !important; }
.skel-line { height: 20px; background: linear-gradient(90deg, var(--surface2) 25%, var(--surface3) 50%, var(--surface2) 75%); background-size: 200% 100%; border-radius: 6px; animation: skel 1.4s infinite; }
@keyframes skel { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* Footer */
.markets-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; flex-wrap: wrap; gap: 12px; }
.markets-footer p { font-size: 13px; color: var(--dim); }
.markets-footer a { color: var(--blue-bright); }
.markets-load-more { background: var(--surface); border: 1px solid var(--line2); color: var(--muted); font-size: 13px; font-weight: 600; padding: 10px 24px; border-radius: 8px; cursor: pointer; font-family: inherit; transition: all 0.2s; display: none; }
.markets-load-more:hover { color: var(--text); border-color: var(--blue); }
.coin-detail {
  position: relative; margin-top: 22px; padding: 22px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
}
.coin-detail[hidden] { display: none; }
.coin-detail__close {
  position: absolute; top: 12px; right: 12px; width: 30px; height: 30px;
  border-radius: 50%; border: 1px solid var(--line2); background: transparent;
  color: var(--muted); font-size: 20px; line-height: 1;
}
.coin-detail__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.coin-detail__head img { border-radius: 50%; }
.coin-detail__head h2 { font-family: 'Syne', sans-serif; font-size: 22px; line-height: 1.1; }
.coin-detail__head span, .coin-detail__grid span { color: var(--muted); font-size: 12px; }
.coin-detail__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 18px; }
.coin-detail__grid div { background: var(--surface2); border: 1px solid var(--line); border-radius: 10px; padding: 12px; }
.coin-detail__grid strong { display: block; margin-top: 4px; font-size: 14px; color: var(--text); }
.coin-detail__chart { background: rgba(59,130,246,0.05); border: 1px solid var(--line); border-radius: 12px; padding: 12px; }
.coin-name-link {
  background: transparent; border: 0; padding: 0; cursor: pointer; text-align: left;
  font-family: inherit;
}
.coin-page-wrap { padding: 44px 0 72px; }
.coin-page__hero { display: grid; grid-template-columns: 72px minmax(0,1fr) auto; gap: 18px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 24px; margin-top: 24px; }
.coin-page__hero img { width: 72px; height: 72px; border-radius: 50%; }
.coin-page__hero span { color: var(--blue-bright); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.coin-page__hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(30px,4vw,48px); line-height: 1.05; margin: 6px 0; }
.coin-page__hero h1 em { color: var(--muted); font-style: normal; font-size: 0.55em; }
.coin-page__hero p { color: var(--muted); max-width: 760px; }
.watch-btn, .price-alert button { background: var(--blue); color: #fff; border: 0; border-radius: 9px; padding: 10px 16px; font-weight: 700; }
.price-alert { margin-top: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.price-alert h3 { font-family: 'Syne', sans-serif; margin-bottom: 10px; }
.price-alert input { background: var(--surface2); border: 1px solid var(--line2); border-radius: 8px; color: var(--text); padding: 10px; margin-right: 8px; }
.price-alert p { margin-top: 8px; color: var(--muted); font-size: 13px; }
.glossary-wrap, .airdrops-wrap { padding: 44px 0 72px; }
.glossary-grid, .airdrops-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.glossary-card, .airdrop-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.glossary-card h2, .airdrop-card h2 { font-family: 'Syne', sans-serif; font-size: 20px; margin-bottom: 8px; }
.glossary-card p, .airdrop-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.airdrop-status { display: inline-block; margin-bottom: 12px; background: rgba(59,130,246,0.12); color: var(--blue-bright); border: 1px solid rgba(59,130,246,0.22); border-radius: 999px; padding: 4px 10px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.airdrop-date { color: var(--dim); font-size: 13px; margin-bottom: 8px; }

@media (max-width: 768px) {
  .col-supply, .col-sparkline, .col-change:last-of-type { display: none; }
  .markets-header { flex-direction: column; }
  .markets-filters { gap: 8px; }
  .markets-search-wrap { max-width: 100%; }
  .markets-tabs, .markets-currency { overflow-x: auto; max-width: 100%; }
  .coin-detail__grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════
   PRICE TICKER BAND
══════════════════════════════ */
.price-ticker {
  background: rgba(5,8,16,0.95);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}
.price-ticker__inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.price-ticker__inner:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-coin {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 28px; border-right: 1px solid var(--line);
  height: 40px;
}
.ticker-coin__sym { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 0.05em; }
.ticker-coin__price { font-size: 13px; font-weight: 600; color: var(--text); font-family: 'DM Sans', monospace; }
.ticker-coin__chg { font-size: 12px; font-weight: 600; }
.ticker-coin__chg.up   { color: #22c55e; }
.ticker-coin__chg.down { color: #ef4444; }
.ticker-loading { padding: 0 20px; font-size: 13px; color: var(--dim); }

/* ══════════════════════════════
   FEAR & GREED INDEX
══════════════════════════════ */
.fg-wrap { padding: 44px 0 72px; }
.fg-header { margin-bottom: 36px; }
.fg-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 10px; }
.fg-title { font-family: 'Syne', sans-serif; font-size: clamp(28px,4vw,44px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.fg-desc { color: var(--muted); font-size: 16px; max-width: 640px; line-height: 1.7; }
.fg-main { display: grid; grid-template-columns: 380px 1fr; gap: 24px; margin-bottom: 24px; }
.fg-gauge-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 28px; }
.fg-gauge-wrap { position: relative; display: flex; justify-content: center; margin-bottom: 20px; }
.fg-gauge-center { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); text-align: center; }
.fg-score { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; line-height: 1; }
.fg-label { font-size: 16px; font-weight: 600; margin-top: 4px; }
.fg-date { font-size: 12px; color: var(--dim); margin-top: 4px; }
.fg-zones { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.fg-zone { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.fg-zone span { font-size: 10px; color: var(--dim); }
.fg-zone strong { font-size: 11px; font-weight: 700; color: var(--c); }
.fg-side { display: flex; flex-direction: column; gap: 20px; }
.fg-history-card, .fg-explain-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.fg-card-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.fg-hist-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.fg-hist-item:last-child { border-bottom: none; padding-bottom: 0; }
.fg-hist-label { font-size: 14px; color: var(--muted); }
.fg-hist-val { font-size: 14px; }
.fg-factors { display: flex; flex-direction: column; gap: 12px; }
.fg-factor { display: flex; align-items: center; gap: 12px; }
.fg-factor__pct { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; color: var(--blue-bright); min-width: 40px; }
.fg-factor__name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.fg-factor__desc { font-size: 12px; color: var(--muted); }
.fg-chart-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 22px; margin-bottom: 24px; }
.fg-chart-wrap { margin-top: 8px; }
.fg-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fg-info-box { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.fg-info-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px; }
.fg-info-icon--red { background: rgba(239,68,68,0.12); color: #ef4444; }
.fg-info-icon--green { background: rgba(34,197,94,0.12); color: #22c55e; }
.fg-info-icon--blue { background: rgba(59,130,246,0.12); color: var(--blue-bright); }
.fg-info-box h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.fg-info-box p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════
   BITCOIN HALVING
══════════════════════════════ */
.halving-wrap { padding: 44px 0 72px; }
.halving-hero { display: grid; grid-template-columns: 1fr 480px; gap: 40px; align-items: center; margin-bottom: 36px; }
.halving-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #f59e0b; margin-bottom: 10px; }
.halving-title { font-family: 'Syne', sans-serif; font-size: clamp(32px,5vw,56px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 16px; }
.halving-title em { font-style: normal; color: #f59e0b; }
.halving-desc { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 480px; }
.halving-countdown-card { background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(5,8,16,0)); border: 1px solid rgba(245,158,11,0.25); border-radius: 20px; padding: 28px; }
.halving-next-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #f59e0b; margin-bottom: 20px; }
.halving-timer { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.ht-unit { display: flex; flex-direction: column; align-items: center; flex: 1; }
.ht-num { font-family: 'Syne', sans-serif; font-size: clamp(28px,4vw,44px); font-weight: 800; color: #f59e0b; line-height: 1; }
.ht-label { font-size: 11px; color: var(--dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.ht-sep { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 700; color: rgba(245,158,11,0.4); margin-bottom: 16px; }
.halving-block-info { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(245,158,11,0.15); padding-top: 16px; }
.hbi-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14px; }
.hbi-item:last-child { border-bottom: none; }
.hbi-label { color: var(--muted); }
.hbi-val { font-weight: 600; color: var(--text); }
.halving-stats { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-bottom: 44px; }
.hstat { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 20px; text-align: center; }
.hstat__n { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: #f59e0b; display: block; margin-bottom: 4px; }
.hstat__l { font-size: 12px; color: var(--muted); font-weight: 500; }
.halving-section-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.halving-history { margin-bottom: 44px; }
.halving-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.halving-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.halving-table th { padding: 12px 16px; text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dim); border-bottom: 1px solid var(--line); white-space: nowrap; }
.halving-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); color: var(--muted); }
.halving-table tbody tr:last-child td { border-bottom: none; }
.halving-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.halving-num { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; background: rgba(245,158,11,0.12); color: #f59e0b; padding: 3px 8px; border-radius: 5px; }
.halving-num.next { background: rgba(59,130,246,0.12); color: var(--blue-bright); }
.next-row td { color: var(--dim); font-style: italic; }
.price-cell { font-weight: 600; color: var(--text); }
.up-cell { color: #22c55e; font-weight: 500; }
.ath-cell { color: var(--text); }
.ath-cell small { color: var(--dim); font-size: 11px; display: block; }
.halving-explainer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.he-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px; transition: border-color 0.2s; }
.he-card:hover { border-color: rgba(245,158,11,0.3); }
.he-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); display: grid; place-items: center; color: #f59e0b; margin-bottom: 14px; }
.he-card h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.he-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

@media (max-width: 1024px) {
  .fg-main { grid-template-columns: 1fr; }
  .halving-hero { grid-template-columns: 1fr; }
  .halving-stats { grid-template-columns: repeat(3,1fr); }
  .halving-explainer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .fg-info-grid { grid-template-columns: 1fr; }
  .halving-stats { grid-template-columns: repeat(2,1fr); }
  .halving-explainer-grid { grid-template-columns: 1fr; }
  .price-ticker { display: flex; height: 34px; }
  .price-ticker__inner { animation-duration: 30s; }
  .ticker-coin { height: 34px; padding: 0 16px; gap: 6px; }
  .ticker-coin__sym { font-size: 11px; }
  .ticker-coin__price { font-size: 12px; }
  .ticker-coin__chg { font-size: 11px; }
}
