@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Syne:wght@400;600;700;800&family=DM+Sans:wght@400;500;700;800&display=swap');

:root {
  --bg: #F0F4FF;
  --surface: #FFFFFF;
  --blue-deep: #0A2463;
  --blue-mid: #1B4FD8;
  --blue-bright: #2563EB;
  --green: #00C896;
  --green-dim: #00A87C;
  --red: #EF4444;
  --text-primary: #0A1628;
  --text-secondary: #4B5B7A;
  --text-muted: #8895AF;
  --border: rgba(37, 99, 235, 0.12);
  --shadow-card: 0 4px 24px rgba(10, 36, 99, 0.08), 0 1px 4px rgba(10, 36, 99, 0.06);
}

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

body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(37, 99, 235, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 85% 20%, rgba(0, 200, 150, 0.08) 0%, transparent 60%);
  color: var(--text-primary);
  font-family: 'Syne', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 64px;
  background: rgba(240, 244, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.logo-text span { color: var(--blue-bright); }

.header-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dim);
  background: rgba(0, 200, 150, 0.1);
  border: 1px solid rgba(0, 200, 150, 0.25);
  padding: 4px 10px;
  border-radius: 100px;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 60px) clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.hero-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.hero-price {
  font-size: clamp(52px, 9vw, 92px);
  font-weight: 800;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  letter-spacing: -2px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  /*opacity: 0;*/
  animation: fadeUp 0.6s ease forwards 0.2s;
}

.hero-price .currency {
  font-size: 0.4em;
  font-weight: 700;
  color: var(--text-secondary);
  vertical-align: top;
  margin-top: 0.22em;
  letter-spacing: 0;
}

.change-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  padding: 7px 14px 7px 10px;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.35s;
}

.change-pill.up {
  background: rgba(0, 200, 150, 0.1);
  border: 1.5px solid rgba(0, 200, 150, 0.3);
  color: var(--green-dim);
}

.change-pill.down {
  background: rgba(239, 68, 68, 0.08);
  border: 1.5px solid rgba(239, 68, 68, 0.25);
  color: var(--red);
}

.last-update {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.45s;
}

/* CTA CARD */
.cta-card {
  background: linear-gradient(150deg, #0E2D6E 0%, #1B4FD8 100%);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  min-width: 220px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.3s;
  box-shadow: 0 8px 40px rgba(10, 36, 99, 0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.1);
  pointer-events: none;
}

.cta-card::after {
  content: '₿';
  position: absolute;
  bottom: -10px; right: 14px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.cta-card-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.buy-btn {
  display: block;
  background: linear-gradient(135deg, #00C896 0%, #009E76 100%);
  color: #fff;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 200, 150, 0.4);
  position: relative;
  z-index: 1;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 200, 150, 0.55);
}

.buy-btn:active { transform: translateY(0); }

.disclosure {
  margin-top: 11px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}

/* AD ZONE */
.ad {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) 24px;
}

/* SECTION DIVIDER */
.section-divider {
  max-width: 1100px;
  margin: 0 auto 28px;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

.section-divider-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* NEWS */
.news {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) 60px;
}

#news-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 16px;
}

.news-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}

.news-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--green));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
}

.news-item:hover::before { opacity: 1; }

.news-item a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.news-item a:hover { color: var(--blue-bright); }

.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.news-source-badge {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 2px 7px;
  border-radius: 4px;
}

.news-date {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
}

/* SKELETON LOADERS */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 16px;
}

.skeleton {
  background: linear-gradient(90deg, #e2e8f5 25%, #edf1fb 50%, #e2e8f5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 16px;
  height: 100px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 28px clamp(20px, 5vw, 60px);
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}

.footer-brand span { color: var(--blue-bright); }

.footer-legal {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 480px;
  text-align: right;
  line-height: 1.7;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes priceFlash {
  0% { opacity: 1; }
  25% { opacity: 0.5; }
  100% { opacity: 1; }
}

.price-flash { animation: priceFlash 0.5s ease; }

/* ─── CHART SECTION ──────────────────────────────────────── */
.chart-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) 48px;
}

.chart-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 20px;
  box-shadow: var(--shadow-card);
}

.chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.chart-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
}

.chart-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
  margin-top: 3px;
}

.chart-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.chart-stat {
  text-align: right;
}

.chart-stat-label {
  font-size: 10px;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.chart-stat-value {
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  margin-top: 2px;
}

.chart-stat-value.up { color: var(--green-dim); }
.chart-stat-value.down { color: var(--red); }

.chart-wrapper {
  position: relative;
  height: 220px;
  width: 100%;
}

#price-chart {
  width: 100%;
  height: 100%;
}

.chart-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  gap: 8px;
}

.chart-loading-dot {
  width: 6px; height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
  animation: bounce 1.2s ease-in-out infinite;
}
.chart-loading-dot:nth-child(2) { animation-delay: 0.15s; }
.chart-loading-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* ─── CALCULATOR SECTION ─────────────────────────────────── */
.calc-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) 48px;
}

.calc-card {
  background: linear-gradient(150deg, #0E2D6E 0%, #1435A0 100%);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(10, 36, 99, 0.2);
  position: relative;
  overflow: hidden;
}

.calc-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.07);
  pointer-events: none;
}

.calc-card::after {
  content: '₿';
  position: absolute;
  bottom: -20px; left: 24px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.calc-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.calc-subtitle {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-family: 'Space Mono', monospace;
  margin-bottom: 28px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.calc-field label {
  display: block;
  font-size: 10px;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.calc-input-wrap {
  position: relative;
}

.calc-input-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
  user-select: none;
}

.calc-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 14px 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  font-variant-numeric: tabular-nums;
}

.calc-input:focus {
  border-color: var(--green);
  background: rgba(255,255,255,0.12);
}

.calc-input::placeholder { color: rgba(255,255,255,0.2); }

/* Remove number input arrows */
.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-input[type=number] { -moz-appearance: textfield; }

.calc-swap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s, transform 0.3s ease;
  user-select: none;
  margin-top: 24px;
}

.calc-swap:hover {
  background: rgba(0, 200, 150, 0.2);
  border-color: var(--green);
  color: var(--green);
  transform: rotate(180deg);
}

.calc-rate {
  margin-top: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  position: relative;
  z-index: 1;
}

.calc-rate span {
  color: rgba(255,255,255,0.6);
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 680px) {
  .hero { grid-template-columns: 1fr; gap: 28px; }
  .cta-card { min-width: unset; }
  #news-container { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-legal { text-align: center; }
  .calc-grid { grid-template-columns: 1fr; gap: 8px; }
  .calc-swap { margin: 4px auto; transform: rotate(90deg); }
  .calc-swap:hover { transform: rotate(270deg); }
  .chart-header { flex-direction: column; }
  .chart-stats { justify-content: flex-start; }
  .chart-stat { text-align: left; }
}

/* ─── SEO SUMMARY PARAGRAPH ─────────────────────────────── */
.seo-summary {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) 36px;
}

.seo-summary-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue-bright);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
}

.seo-summary-inner p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.seo-summary-inner strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) 48px;
}

.faq-heading {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(37, 99, 235, 0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 12px;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--blue-bright);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 16px;
  border-top: 1px solid var(--border);
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  padding-top: 14px;
}

.faq-answer a {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* GURU PICK VS COIN FLIP */
.prediction-section{
  max-width:1100px;
  margin:0 auto;
  padding:0 clamp(20px, 5vw, 60px) 48px;
}

.prediction-panel{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:20px;
  padding:28px;
  box-shadow:var(--shadow-card);
}

.prediction-header{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
  margin-bottom:22px;
}

.prediction-header h2{
  font-size:clamp(24px, 4vw, 34px);
  line-height:1;
  color:var(--text-primary);
  margin-bottom:8px;
}

.prediction-header p{
  color:var(--text-secondary);
  font-family:'DM Sans', sans-serif;
  font-size:14px;
  max-width:620px;
}

#prediction-range{
  padding:11px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  color:var(--text-primary);
  font-family:'DM Sans', sans-serif;
  font-weight:700;
  min-width:155px;
}

.prediction-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:22px;
}

.prediction-card{
  background:#F8FAFC;
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
  text-align:center;
}

.prediction-card .label{
  color:var(--text-muted);
  font-family:'Space Mono', monospace;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.8px;
  margin-bottom:8px;
}

.prediction-card .stat-value{
  font-family:'DM Sans', sans-serif;
  font-size:36px;
  font-weight:800;
  color:var(--blue-bright);
  line-height:1;
}

.prediction-card .stat-subtext{
  color:var(--text-secondary);
  font-size:13px;
  margin-top:8px;
}

.today-prediction{
  background:linear-gradient(135deg, rgba(37,99,235,.08), rgba(0,200,150,.08));
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  margin-bottom:22px;
}

.today-prediction-title{
  color:var(--text-muted);
  font-family:'Space Mono', monospace;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.8px;
  margin-bottom:10px;
}

.today-prediction-content{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
  align-items:center;
  color:var(--text-primary);
  font-family:'DM Sans', sans-serif;
  font-size:14px;
}

.today-reason{
  flex-basis:100%;
  color:var(--text-secondary);
}

#prediction-history-wrap h3{
  font-size:18px;
  margin-bottom:12px;
  color:var(--text-primary);
}

.prediction-table-wrap{
  overflow-x:auto;
  border:1px solid var(--border);
  border-radius:16px;
}

.prediction-table{
  width:100%;
  border-collapse:collapse;
  font-family:'DM Sans', sans-serif;
  font-size:14px;
}

.prediction-table th,
.prediction-table td{
  padding:13px 14px;
  border-bottom:1px solid var(--border);
  text-align:left;
  white-space:nowrap;
}

.prediction-table tr:last-child td{ border-bottom:none; }

.prediction-table th{
  background:#F8FAFC;
  color:var(--text-secondary);
  font-family:'Space Mono', monospace;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.8px;
}

.dir-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:54px;
  padding:5px 9px;
  border-radius:999px;
  font-family:'Space Mono', monospace;
  font-size:11px;
  font-weight:700;
}

.dir-pill.up{
  color:var(--green-dim);
  background:rgba(0,200,150,.1);
  border:1px solid rgba(0,200,150,.25);
}

.dir-pill.down{
  color:var(--red);
  background:rgba(239,68,68,.08);
  border:1px solid rgba(239,68,68,.25);
}

.prediction-disclaimer{
  margin-top:16px;
  color:var(--text-muted);
  font-family:'Space Mono', monospace;
  font-size:11px;
  line-height:1.6;
}

@media(max-width:700px){
  .prediction-panel{ padding:22px; }
  .prediction-header{ flex-direction:column; }
  #prediction-range{ width:100%; }
  .prediction-stats{ grid-template-columns:1fr; }
  .today-prediction-content{ flex-direction:column; align-items:flex-start; }
}

/* ─── TODAY'S GURU PICK LIVE CARD ─────────────────────────── */
.today-guru-section{
  max-width:1100px;
  margin:0 auto;
  padding:0 clamp(20px, 5vw, 60px) 36px;
}

.today-guru-card{
  background:linear-gradient(135deg, rgba(37,99,235,.08), rgba(22,163,74,.08));
  border:1px solid rgba(37,99,235,.18);
  border-radius:20px;
  padding:28px;
  box-shadow:var(--shadow-card);
}

.today-guru-kicker{
  color:var(--text-muted);
  font-family:'Space Mono', monospace;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.8px;
  margin-bottom:12px;
}

.today-guru-main{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  margin-bottom:22px;
}

.today-guru-main h2{
  font-size:clamp(26px, 4vw, 42px);
  line-height:1;
  color:var(--text-primary);
  margin:0 0 10px;
}

.today-guru-reason{
  color:var(--text-secondary);
  font-size:15px;
  line-height:1.6;
  max-width:680px;
  margin:0;
}

.today-guru-status{
  display:flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 14px;
  color:var(--text-secondary);
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}

.status-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#F59E0B;
  display:inline-block;
}

.today-guru-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.today-guru-metric{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
}

.metric-label{
  display:block;
  color:var(--text-muted);
  font-family:'Space Mono', monospace;
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.7px;
  margin-bottom:8px;
}

.today-guru-metric strong{
  color:var(--text-primary);
  font-size:15px;
}

.dir-text.up{ color:var(--green); }
.dir-text.down{ color:#DC2626; }

.today-guru-note{
  color:var(--text-muted);
  font-size:12px;
  line-height:1.6;
  margin-top:16px;
}

@media(max-width:850px){
  .today-guru-main{ flex-direction:column; }
  .today-guru-status{ align-self:flex-start; }
  .today-guru-grid{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:560px){
  .today-guru-grid{ grid-template-columns:1fr; }
}

.coin-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* slightly more breathing room */
}

.coin-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.coin-pill {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* GREEN (UP) */
.coin-pill.up {
  background: rgba(0, 200, 150, 0.12);
  color: #00C896;
  border: 1px solid rgba(0, 200, 150, 0.25);
}

/* RED (DOWN) */
.coin-pill.down {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.coin-img {
  transition: transform 0.3s ease;
}

.coin-img:hover {
  transform: rotateY(180deg);
}

/* ─── 4-WAY PREDICTION TRACKER UPDATES ───────────────────── */

.prediction-stats-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.ai-news-card {
  border-top: 3px solid var(--blue-bright);
}

.ai-web-card {
  border-top: 3px solid #8B5CF6;
}

.guru-card {
  border-top: 3px solid var(--green);
}

.coin-card {
  border-top: 3px solid var(--red);
}

.days-card {
  margin-bottom: 22px;
}

/* Neutral / Pending direction state */
.dir-pill.neutral {
  color: var(--text-muted);
  background: rgba(136,149,175,.10);
  border: 1px solid rgba(136,149,175,.25);
}

/* Small confidence / sentiment text */
.mini-meta {
  display: block;
  margin-top: 5px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  line-height: 1.2;
  color: var(--text-muted);
}

.mini-meta.up {
  color: var(--green-dim);
}

.mini-meta.down {
  color: var(--red);
}

.mini-meta.neutral {
  color: var(--text-muted);
}

/* Wider table for 4-way comparison */
.prediction-table {
  min-width: 1050px;
}

.prediction-table th,
.prediction-table td {
  text-align: center;
  vertical-align: middle;
}

.prediction-table td:first-child,
.prediction-table th:first-child {
  text-align: left;
}

/* Keep coin display compact inside table/card */
.coin-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.coin-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.coin-img:hover {
  transform: rotateY(180deg);
}

.coin-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.coin-pill.up {
  background: rgba(0, 200, 150, 0.12);
  color: var(--green-dim);
  border: 1px solid rgba(0, 200, 150, 0.25);
}

.coin-pill.down {
  background: rgba(239, 68, 68, 0.08);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* Today card needs 6 metrics now */
.today-guru-grid {
  grid-template-columns: repeat(6, 1fr);
}

.today-guru-metric {
  min-height: 96px;
}

/* Slightly tighten today metric text */
.today-guru-metric .dir-pill,
.today-guru-metric .coin-pill {
  margin-top: 2px;
}

/* AI Web / AI News pending display */
.today-guru-metric .dir-pill.neutral {
  min-width: 74px;
}

/* Better wrap for countdown text */
.today-guru-status {
  max-width: 260px;
  white-space: normal;
}

/* Responsive adjustments */
@media (max-width: 1050px) {
  .prediction-stats-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .today-guru-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .prediction-stats-four {
    grid-template-columns: 1fr;
  }

  .today-guru-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prediction-table {
    min-width: 980px;
  }
}

@media (max-width: 560px) {
  .today-guru-grid {
    grid-template-columns: 1fr;
  }

  .coin-img {
    width: 40px;
    height: 40px;
  }
}

.winner-badge {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,200,150,.10);
  color: var(--green-dim);
  border: 1px solid rgba(0,200,150,.25);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
}

.winner-badge.neutral {
  background: rgba(136,149,175,.10);
  color: var(--text-muted);
  border: 1px solid rgba(136,149,175,.25);
}

.reason-tooltip-wrap {
  position: relative;
  display: inline-block;
  cursor: help;
}

.reason-tooltip {
  display: none;
  position: absolute;
  z-index: 50;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  width: 230px;
  background: var(--blue-deep);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.4;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 10px 30px rgba(10,36,99,.20);
  white-space: normal;
}

.reason-tooltip-wrap:hover .reason-tooltip {
  display: block;
}

.accuracy-sparkline-card {
  margin: 18px 0 24px;
  padding: 16px 18px;
  background: var(--card-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.sparkline-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}


.guru-card .stat-value {
  color: var(--green);
}

.ai-news-card .stat-value {
  color: var(--blue-bright);
}

.ai-web-card .stat-value {
  color: #8B5CF6;
}

.coin-card .stat-value {
  color: var(--red);
}

.card-medal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  display: none;
}

.prediction-card {
  position: relative;
}

.prediction-card.winner .card-medal {
  display: block;
}

.days-card .stat-value {
  color: #64748b; /* soft slate gray */
}

.seo-h1 {
  position: absolute;
  left: -9999px;
}