/* ═══════════════════════════════════════════════════════════
   DEV ONLINE BOOK — style-v3.css
   "Premium Sportsbook" Edition
   ⚠️  Load AFTER ../style.css to override post styles
   Usage:  <link rel="stylesheet" href="../style.css" />
           <link rel="stylesheet" href="../style-v3.css" />
═══════════════════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Nunito+Sans:wght@300;400;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

/* ─── DESIGN TOKENS ────────────────────────────────────── */
:root {
  /* Core palette */
  --v3-bg:          #080808;
  --v3-bg2:         #0f0f0f;
  --v3-bg3:         #141414;
  --v3-bg4:         #1a1a1a;
  --v3-bg5:         #202020;

  /* Brand */
  --v3-gold:        #f5a623;
  --v3-gold-soft:   #d4891c;
  --v3-gold-glow:   rgba(245,166,35,0.18);
  --v3-gold-border: rgba(245,166,35,0.25);
  --v3-gold-dim:    rgba(245,166,35,0.08);

  /* WhatsApp */
  --v3-green:       #25d366;
  --v3-green2:      #1aad52;
  --v3-green-glow:  rgba(37,211,102,0.2);
  --v3-green-dim:   rgba(37,211,102,0.08);

  /* Text */
  --v3-text:        #e8e0d4;   /* warm cream — easier to read than pure white */
  --v3-text2:       #b8b0a4;
  --v3-text3:       #787068;
  --v3-white:       #f5f0e8;

  /* Borders */
  --v3-border:      rgba(255,255,255,0.07);
  --v3-border2:     rgba(255,255,255,0.04);

  /* Typography */
  --v3-display:     'Syne', sans-serif;
  --v3-body:        'Nunito Sans', 'Inter', sans-serif;
  --v3-mono:        'JetBrains Mono', monospace;

  /* Radii */
  --v3-r:           10px;
  --v3-r-lg:        16px;
  --v3-r-xl:        24px;

  /* Shadows */
  --v3-shadow:      0 4px 24px rgba(0,0,0,0.4);
  --v3-shadow-gold: 0 0 32px rgba(245,166,35,0.12);
}

/* ══════════════════════════════════════════════════════════
   GLOBAL BODY OVERRIDE
══════════════════════════════════════════════════════════ */
body {
  font-family: var(--v3-body) !important;
  color: var(--v3-text) !important;
  background: var(--v3-bg) !important;
}

/* ══════════════════════════════════════════════════════════
   V3 POST HERO — EDITORIAL STYLE
══════════════════════════════════════════════════════════ */
.v3-hero {
  position: relative;
  background: var(--v3-bg);
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--v3-border);
}

/* Ambient background glow */
.v3-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 120% at 0% 50%, rgba(245,166,35,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 100% 20%, rgba(37,211,102,0.04) 0%, transparent 55%);
}

.v3-hero-inner {
  position: relative; z-index: 2;
  max-width: 1080px; margin: 0 auto;
  padding: 52px 32px 44px;
}

/* Breadcrumb */
.v3-crumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: var(--v3-text3);
  font-family: var(--v3-body); letter-spacing: 0.3px;
  margin-bottom: 24px;
}
.v3-crumb a { color: var(--v3-gold); transition: opacity 0.2s; }
.v3-crumb a:hover { opacity: 0.75; }
.v3-crumb-sep { color: var(--v3-border); font-size: 14px; }

/* Category pill */
.v3-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--v3-gold-dim);
  border: 1px solid var(--v3-gold-border);
  color: var(--v3-gold);
  font-family: var(--v3-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 30px;
  margin-bottom: 20px;
}

/* H1 — the article title */
.v3-title {
  font-family: var(--v3-display);
  font-size: clamp(26px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--v3-white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  max-width: 820px;
}
.v3-title em { color: var(--v3-gold); font-style: normal; }

/* Meta row */
.v3-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 0;
}
.v3-meta-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--v3-bg3);
  border: 1px solid var(--v3-border);
  padding: 7px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 600;
  color: var(--v3-text2);
  font-family: var(--v3-body);
}
.v3-meta-chip span { color: var(--v3-gold); }

/* Bottom accent bar */
.v3-hero-bar {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--v3-gold) 30%, rgba(37,211,102,0.6) 70%, transparent 100%);
  margin-top: 44px;
  opacity: 0.6;
}

/* ══════════════════════════════════════════════════════════
   V3 POST LAYOUT
══════════════════════════════════════════════════════════ */
.v3-layout {
  max-width: 1080px; margin: 0 auto;
  padding: 0 32px 80px;
  display: grid;
  grid-template-columns: 1fr 296px;
  gap: 40px;
  align-items: start;
}

/* ══════════════════════════════════════════════════════════
   V3 CONTENT TYPOGRAPHY
══════════════════════════════════════════════════════════ */
.v3-content {
  padding-top: 40px;
}

.v3-content h2 {
  font-family: var(--v3-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--v3-white);
  letter-spacing: -0.2px;
  margin: 44px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--v3-border);
  position: relative;
}
.v3-content h2::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 48px; height: 2px;
  background: var(--v3-gold);
  border-radius: 2px;
}

.v3-content h3 {
  font-family: var(--v3-display);
  font-size: 16px; font-weight: 600;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 28px 0 12px;
}

.v3-content p {
  font-family: var(--v3-body);
  font-size: 15.5px;
  color: var(--v3-text);
  line-height: 1.9;
  margin-bottom: 18px;
  font-weight: 400;
}

.v3-content strong { color: var(--v3-white); font-weight: 700; }
.v3-content a { color: var(--v3-gold); transition: opacity 0.2s; }
.v3-content a:hover { opacity: 0.8; text-decoration: underline; }

.v3-content ul {
  margin: 14px 0 22px; padding: 0; list-style: none;
}
.v3-content ul li {
  font-family: var(--v3-body);
  font-size: 15px; color: var(--v3-text);
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid var(--v3-border2);
  position: relative; line-height: 1.7;
}
.v3-content ul li:last-child { border-bottom: none; }
.v3-content ul li::before {
  content: '▸';
  color: var(--v3-gold);
  position: absolute; left: 0;
  font-size: 12px; top: 11px;
}

/* ══════════════════════════════════════════════════════════
   V3 MATCH INFO BOX
══════════════════════════════════════════════════════════ */
.v3-match-box {
  background: var(--v3-bg2);
  border: 1px solid var(--v3-border);
  border-left: 3px solid var(--v3-gold);
  border-radius: var(--v3-r-lg);
  overflow: hidden;
  margin: 28px 0;
  box-shadow: var(--v3-shadow-gold);
}
.v3-match-box-head {
  padding: 14px 22px;
  border-bottom: 1px solid var(--v3-border);
  font-family: var(--v3-display);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--v3-gold);
  display: flex; align-items: center; gap: 10px;
  background: var(--v3-gold-dim);
}
.v3-match-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.v3-match-cell {
  padding: 18px 22px;
  border-right: 1px solid var(--v3-border);
  border-bottom: 1px solid var(--v3-border);
  display: flex; flex-direction: column; gap: 6px;
  transition: background 0.15s;
}
.v3-match-cell:nth-child(4n) { border-right: none; }
.v3-match-cell:nth-last-child(-n+4) { border-bottom: none; }
.v3-mc-label {
  font-family: var(--v3-body);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--v3-text3);
}
.v3-mc-val {
  font-family: var(--v3-body);
  font-size: 14px; font-weight: 700;
  color: var(--v3-text);
  line-height: 1.3;
}
.v3-mc-val.gold { color: var(--v3-gold); }
.v3-mc-val.green { color: var(--v3-green); }

/* ══════════════════════════════════════════════════════════
   V3 INFO CARD (replaces info-box)
══════════════════════════════════════════════════════════ */
.v3-card {
  background: var(--v3-bg2);
  border: 1px solid var(--v3-border);
  border-radius: var(--v3-r-lg);
  overflow: hidden;
  margin: 24px 0;
  transition: border-color 0.2s;
}
.v3-card:hover { border-color: rgba(245,166,35,0.2); }
.v3-card-head {
  padding: 13px 20px;
  font-family: var(--v3-display);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  display: flex; align-items: center; gap: 9px;
  border-bottom: 1px solid var(--v3-border);
}
.v3-ch-gold   { background: var(--v3-gold-dim);  color: var(--v3-gold);  border-bottom-color: var(--v3-gold-border); }
.v3-ch-green  { background: var(--v3-green-dim); color: var(--v3-green); border-bottom-color: rgba(37,211,102,0.2); }
.v3-ch-blue   { background: rgba(74,158,255,0.06); color: #5aaeff; border-bottom-color: rgba(74,158,255,0.15); }
.v3-ch-dark   { background: var(--v3-bg3); color: #ccc; border-bottom-color: var(--v3-border); }
.v3-card-body { padding: 20px; }
.v3-card-body p {
  font-size: 15px; color: var(--v3-text); line-height: 1.85; margin-bottom: 14px;
}
.v3-card-body p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   V3 STATS GRID (pitch / weather / H2H)
══════════════════════════════════════════════════════════ */
.v3-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--v3-border);
}
.v3-stats-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.v3-stats-grid.cols-4 { grid-template-columns: repeat(4,1fr); }
.v3-stat-cell {
  padding: 18px 20px;
  border-right: 1px solid var(--v3-border);
  border-bottom: 1px solid var(--v3-border);
  display: flex; flex-direction: column; gap: 6px;
  text-align: center;
}
.v3-stat-cell:nth-child(3n) { border-right: none; }
.v3-stats-grid.cols-2 .v3-stat-cell:nth-child(2n) { border-right: none; }
.v3-stats-grid.cols-4 .v3-stat-cell:nth-child(4n) { border-right: none; }
.v3-sc-num {
  font-family: var(--v3-mono);
  font-size: 28px; font-weight: 600;
  color: var(--v3-gold); line-height: 1;
}
.v3-sc-label {
  font-family: var(--v3-body);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--v3-text3);
}
.v3-sc-sub {
  font-family: var(--v3-body);
  font-size: 12px; color: var(--v3-green);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   V3 FORM DOTS
══════════════════════════════════════════════════════════ */
.v3-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 18px 0;
}
.v3-form-team {
  background: var(--v3-bg3);
  border: 1px solid var(--v3-border);
  border-radius: var(--v3-r);
  padding: 18px;
  position: relative; overflow: hidden;
}
.v3-form-team::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
}
.v3-ft1::before { background: var(--v3-gold); }
.v3-ft2::before { background: var(--v3-green); }

.v3-form-name {
  font-family: var(--v3-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.5px; margin-bottom: 12px;
}
.v3-ft1 .v3-form-name { color: var(--v3-gold); }
.v3-ft2 .v3-form-name { color: var(--v3-green); }

.v3-dots {
  display: flex; gap: 5px; margin-bottom: 10px;
}
.v3-dot {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--v3-body);
  font-size: 11px; font-weight: 800;
}
.v3-dot-w { background: rgba(37,211,102,0.14); color: #25d366; border: 1px solid rgba(37,211,102,0.3); }
.v3-dot-l { background: rgba(255,60,60,0.1);   color: #ff5555; border: 1px solid rgba(255,60,60,0.2); }

.v3-form-note {
  font-family: var(--v3-body);
  font-size: 11px; color: var(--v3-text3);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   V3 HEAD TO HEAD
══════════════════════════════════════════════════════════ */
.v3-h2h {
  display: grid; grid-template-columns: 1fr auto 1fr;
  background: var(--v3-bg3);
  border: 1px solid var(--v3-border);
  border-radius: var(--v3-r-lg);
  overflow: hidden; margin: 20px 0;
}
.v3-h2h-side {
  padding: 28px 20px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  text-align: center;
}
.v3-h2h-t1 { background: rgba(245,166,35,0.04); }
.v3-h2h-t2 { background: rgba(37,211,102,0.04); }
.v3-h2h-big {
  font-family: var(--v3-mono);
  font-size: 56px; line-height: 1; font-weight: 600;
}
.v3-h2h-t1 .v3-h2h-big { color: var(--v3-gold); }
.v3-h2h-t2 .v3-h2h-big { color: var(--v3-green); }
.v3-h2h-label {
  font-family: var(--v3-body);
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--v3-text3);
}
.v3-h2h-divider {
  padding: 28px 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  border-left: 1px solid var(--v3-border);
  border-right: 1px solid var(--v3-border);
}
.v3-h2h-vs {
  font-family: var(--v3-display);
  font-size: 13px; font-weight: 700;
  color: var(--v3-text3); letter-spacing: 2px;
}
.v3-h2h-total {
  font-family: var(--v3-mono);
  font-size: 24px; color: var(--v3-white);
  text-align: center;
}
.v3-h2h-total-label {
  font-size: 9px; color: var(--v3-text3);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════════
   V3 PLAYING XI
══════════════════════════════════════════════════════════ */
.v3-xi-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 20px 0;
}
.v3-xi-col {
  border-radius: var(--v3-r-lg);
  overflow: hidden;
  border: 1px solid var(--v3-border);
}
.v3-xi-head {
  padding: 14px 18px;
  font-family: var(--v3-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--v3-border);
}
.v3-xi-t1 .v3-xi-head { background: rgba(245,166,35,0.07); color: var(--v3-gold); }
.v3-xi-t2 .v3-xi-head { background: rgba(37,211,102,0.07); color: var(--v3-green); }
.v3-xi-body { background: var(--v3-bg2); }

.v3-player {
  display: flex; align-items: center;
  padding: 9px 16px; gap: 10px;
  border-bottom: 1px solid var(--v3-border2);
  transition: background 0.15s;
}
.v3-player:hover { background: rgba(255,255,255,0.02); }
.v3-player:last-child { border-bottom: none; }
.v3-p-num {
  font-family: var(--v3-mono);
  font-size: 10px; color: var(--v3-text3);
  width: 16px; flex-shrink: 0; text-align: center;
}
.v3-p-name {
  font-family: var(--v3-body);
  font-size: 13px; color: var(--v3-text);
  flex: 1; min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v3-p-name.cap { color: var(--v3-gold); font-weight: 700; }
.v3-badge {
  font-family: var(--v3-body);
  font-size: 9px; font-weight: 800;
  padding: 3px 7px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.5px; flex-shrink: 0;
}
.vb-wk  { background: rgba(255,245,100,0.1); color: #ffe066; }
.vb-bat { background: rgba(100,220,120,0.1); color: #64dc78; }
.vb-bl  { background: rgba(80,160,255,0.1);  color: #50a0ff; }
.vb-ar  { background: rgba(255,130,100,0.1); color: #ff8264; }
.vb-key { background: var(--v3-gold); color: #000; font-weight: 900; }

/* ══════════════════════════════════════════════════════════
   V3 KEY PLAYERS
══════════════════════════════════════════════════════════ */
.v3-kp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin: 20px 0;
}
.v3-kp-card {
  background: var(--v3-bg2);
  border: 1px solid var(--v3-border);
  border-radius: var(--v3-r-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.v3-kp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.v3-kp-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
}
.v3-kp-t1 { border-top: none; }
.v3-kp-t2 { border-top: none; }
.v3-kp-t1::before { background: linear-gradient(90deg, var(--v3-gold), rgba(245,166,35,0.3)); }
.v3-kp-t2::before { background: linear-gradient(90deg, var(--v3-green), rgba(37,211,102,0.3)); }
.v3-kp-t1:hover { border-color: var(--v3-gold-border); }
.v3-kp-t2:hover { border-color: rgba(37,211,102,0.2); }

.v3-kp-emoji {
  height: 64px; display: flex;
  align-items: center; justify-content: center;
  font-size: 32px;
}
.v3-kp-t1 .v3-kp-emoji { background: var(--v3-gold-dim); }
.v3-kp-t2 .v3-kp-emoji { background: var(--v3-green-dim); }

.v3-kp-body { padding: 14px 16px; }
.v3-kp-name {
  font-family: var(--v3-display);
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.2px; margin-bottom: 3px;
}
.v3-kp-t1 .v3-kp-name { color: var(--v3-gold); }
.v3-kp-t2 .v3-kp-name { color: var(--v3-green); }
.v3-kp-role {
  font-family: var(--v3-body);
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--v3-text3);
  margin-bottom: 10px;
}
.v3-kp-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  margin-bottom: 10px;
}
.v3-kp-stat {
  background: var(--v3-bg4);
  border-radius: 6px; padding: 8px 10px;
}
.v3-kp-stat-n {
  font-family: var(--v3-mono);
  font-size: 16px; font-weight: 600; color: var(--v3-white);
}
.v3-kp-stat-l {
  font-family: var(--v3-body);
  font-size: 9px; text-transform: uppercase;
  letter-spacing: 1px; color: var(--v3-text3);
}
.v3-kp-desc {
  font-family: var(--v3-body);
  font-size: 12px; color: var(--v3-text2);
  line-height: 1.65; margin: 0;
}

/* ══════════════════════════════════════════════════════════
   V3 PREDICTION BOX — the SIGNATURE element
   Animated gradient border that breathes like a live score
══════════════════════════════════════════════════════════ */
.v3-pred-wrap {
  position: relative;
  border-radius: var(--v3-r-xl);
  margin: 36px 0;
  padding: 2px; /* gap for the animated border */
  background: linear-gradient(135deg, var(--v3-gold), #c47d10, #25d366, var(--v3-gold));
  background-size: 300% 300%;
  animation: pred-border 5s ease infinite;
}
@keyframes pred-border {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.v3-pred-inner {
  background: #09100e;
  border-radius: calc(var(--v3-r-xl) - 2px);
  padding: 36px 28px;
  text-align: center;
  position: relative; overflow: hidden;
}
.v3-pred-inner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(245,166,35,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.v3-pred-eyebrow {
  font-family: var(--v3-body);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--v3-gold); margin-bottom: 18px;
  position: relative; z-index: 1;
}
.v3-pred-winner {
  font-family: var(--v3-display);
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 800; color: var(--v3-white);
  line-height: 1; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.v3-pred-winner em { color: var(--v3-gold); font-style: normal; }
.v3-pred-confidence {
  display: inline-block;
  font-family: var(--v3-body);
  font-size: 12px; font-weight: 600;
  background: rgba(37,211,102,0.12);
  color: var(--v3-green);
  border: 1px solid rgba(37,211,102,0.25);
  padding: 5px 16px; border-radius: 20px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.v3-pred-bars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 420px; margin: 0 auto 22px;
  position: relative; z-index: 1;
}
.v3-pb-label {
  display: flex; justify-content: space-between;
  margin-bottom: 8px;
}
.v3-pb-team {
  font-family: var(--v3-body);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.v3-pb-pct {
  font-family: var(--v3-mono);
  font-size: 14px; font-weight: 600;
}
.v3-pb-t1 .v3-pb-team, .v3-pb-t1 .v3-pb-pct { color: var(--v3-gold); }
.v3-pb-t2 .v3-pb-team, .v3-pb-t2 .v3-pb-pct { color: var(--v3-green); }
.v3-pb-track {
  height: 5px; background: rgba(255,255,255,0.07);
  border-radius: 3px; overflow: hidden;
}
.v3-pb-fill { height: 100%; border-radius: 3px; }
.v3-pb-t1 .v3-pb-fill { background: var(--v3-gold); }
.v3-pb-t2 .v3-pb-fill { background: var(--v3-green); }
.v3-pred-note {
  font-family: var(--v3-body);
  font-size: 13px; color: var(--v3-text2);
  max-width: 380px; margin: 0 auto;
  line-height: 1.7; position: relative; z-index: 1;
}

/* ══════════════════════════════════════════════════════════
   V3 CTA BOX — High-conversion WhatsApp CTA
══════════════════════════════════════════════════════════ */
.v3-cta {
  background: var(--v3-bg2);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: var(--v3-r-xl);
  padding: 32px 28px;
  text-align: center; margin: 36px 0;
  position: relative; overflow: hidden;
}
.v3-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(37,211,102,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.v3-cta-inner { position: relative; z-index: 1; }
.v3-cta-icon { font-size: 36px; margin-bottom: 10px; display: block; }
.v3-cta h3 {
  font-family: var(--v3-display);
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700; color: var(--v3-white);
  margin-bottom: 8px; letter-spacing: -0.2px;
}
.v3-cta p {
  font-family: var(--v3-body);
  font-size: 14px; color: var(--v3-text2);
  margin-bottom: 22px; max-width: 400px; margin-left: auto; margin-right: auto;
}
.v3-cta-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--v3-green); color: #000;
  padding: 15px 36px; border-radius: 10px;
  font-family: var(--v3-body);
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.3px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2.5s infinite;
}
.v3-cta-btn:hover {
  transform: translateY(-3px);
  background: #1aad52;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
}
.v3-cta-btn svg { width: 20px; height: 20px; fill: #000; flex-shrink: 0; }
.v3-cta-note {
  display: block; margin-top: 14px;
  font-family: var(--v3-body);
  font-size: 12px; color: var(--v3-text3);
}
/* inline text CTA */
.v3-inline-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--v3-green) !important;
  font-weight: 700; border-bottom: 1px dashed rgba(37,211,102,0.4);
}
.v3-inline-cta:hover { opacity: 0.8 !important; }

/* ══════════════════════════════════════════════════════════
   V3 BATTLE CARDS
══════════════════════════════════════════════════════════ */
.v3-battles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 20px 0;
}
.v3-battle {
  background: var(--v3-bg3);
  border: 1px solid var(--v3-border);
  border-radius: var(--v3-r-lg); padding: 20px;
  position: relative; overflow: hidden;
  transition: border-color 0.2s;
}
.v3-battle:hover { border-color: var(--v3-gold-border); }
.v3-battle::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--v3-gold), var(--v3-green));
}
.v3-battle-icon { font-size: 20px; margin-bottom: 10px; }
.v3-battle-title {
  font-family: var(--v3-display);
  font-size: 14px; font-weight: 700;
  color: var(--v3-white); margin-bottom: 8px; letter-spacing: 0.3px;
}
.v3-battle-vs {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.v3-bv-p1 { font-family: var(--v3-body); font-size: 12px; font-weight: 700; color: var(--v3-gold); }
.v3-bv-sep { font-size: 10px; color: var(--v3-text3); }
.v3-bv-p2 { font-family: var(--v3-body); font-size: 12px; font-weight: 700; color: var(--v3-green); }
.v3-battle-desc {
  font-family: var(--v3-body);
  font-size: 12px; color: var(--v3-text2); line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   V3 FAQ
══════════════════════════════════════════════════════════ */
.v3-faq { margin: 20px 0; }
.v3-faq-item {
  border: 1px solid var(--v3-border);
  border-radius: var(--v3-r-lg);
  overflow: hidden; margin-bottom: 12px;
  transition: border-color 0.2s;
}
.v3-faq-item:hover { border-color: var(--v3-gold-border); }
.v3-faq-q {
  padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--v3-bg2);
}
.v3-faq-n {
  font-family: var(--v3-mono);
  font-size: 13px; font-weight: 600;
  color: var(--v3-gold); flex-shrink: 0; min-width: 24px;
  margin-top: 1px;
}
.v3-faq-q-text {
  font-family: var(--v3-body);
  font-size: 15px; font-weight: 700;
  color: var(--v3-white); line-height: 1.5; flex: 1;
}
.v3-faq-a {
  padding: 16px 20px 18px 58px;
  background: var(--v3-bg);
  border-top: 1px solid var(--v3-border);
  font-family: var(--v3-body);
  font-size: 14px; color: var(--v3-text2);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════
   V3 POINTS TABLE
══════════════════════════════════════════════════════════ */
.v3-table-wrap {
  border: 1px solid var(--v3-border);
  border-radius: var(--v3-r-lg); overflow: hidden; margin: 20px 0;
}
.v3-table {
  width: 100%; border-collapse: collapse;
}
.v3-table th {
  background: var(--v3-bg3); padding: 12px 16px;
  font-family: var(--v3-body);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--v3-text3); text-align: left;
  border-bottom: 1px solid var(--v3-border);
}
.v3-table td {
  padding: 12px 16px;
  font-family: var(--v3-body);
  font-size: 13px; color: var(--v3-text2);
  border-bottom: 1px solid var(--v3-border2);
}
.v3-table tr:last-child td { border-bottom: none; }
.v3-table td:first-child { font-weight: 700; color: var(--v3-white); }
.v3-table .hl-t1 td { background: rgba(245,166,35,0.04); }
.v3-table .hl-t2 td { background: rgba(37,211,102,0.04); }
.v3-table .pts { color: var(--v3-gold) !important; font-family: var(--v3-mono); font-weight: 700 !important; }

/* ══════════════════════════════════════════════════════════
   V3 DISCLAIMER
══════════════════════════════════════════════════════════ */
.v3-disclaimer {
  background: var(--v3-bg2);
  border: 1px solid var(--v3-border);
  border-left: 3px solid var(--v3-text3);
  border-radius: var(--v3-r);
  padding: 18px 20px; margin-top: 36px;
  font-family: var(--v3-body);
  font-size: 12px; color: var(--v3-text3); line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   V3 SIDEBAR
══════════════════════════════════════════════════════════ */
.v3-sidebar { padding-top: 40px; }

/* Sticky sidebar on desktop */
@media (min-width: 900px) {
  .v3-sidebar { position: sticky; top: 84px; }
}

.v3-s-card {
  background: var(--v3-bg2);
  border: 1px solid var(--v3-border);
  border-radius: var(--v3-r-lg);
  overflow: hidden; margin-bottom: 18px;
}
.v3-s-head {
  padding: 12px 18px;
  font-family: var(--v3-display);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--v3-gold);
  background: var(--v3-gold-dim);
  border-bottom: 1px solid var(--v3-gold-border);
  display: flex; align-items: center; gap: 8px;
}
.v3-s-body { padding: 16px 18px; }

/* Sidebar WhatsApp card */
.v3-s-wa {
  background: linear-gradient(135deg, #0a2015 0%, #0d2a1a 100%);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: var(--v3-r-lg);
  padding: 22px 18px; text-align: center;
  margin-bottom: 18px;
  animation: pulse-wa 2.5s infinite;
}
.v3-s-wa h4 {
  font-family: var(--v3-display);
  font-size: 14px; font-weight: 700;
  color: var(--v3-green); letter-spacing: 0.5px;
  margin-bottom: 8px; text-transform: uppercase;
}
.v3-s-wa p {
  font-family: var(--v3-body);
  font-size: 12px; color: rgba(255,255,255,0.55);
  margin-bottom: 16px; line-height: 1.6;
}
.v3-s-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--v3-green); color: #000;
  padding: 12px 18px; border-radius: 8px;
  font-family: var(--v3-body);
  font-size: 13px; font-weight: 800;
  transition: transform 0.2s;
}
.v3-s-wa-btn:hover { transform: translateY(-2px); }
.v3-s-wa-btn svg { width: 16px; height: 16px; fill: #000; }
.v3-s-wa small {
  display: block; margin-top: 10px;
  font-size: 11px; color: rgba(255,255,255,0.25);
}

/* Quick facts */
.v3-qf { display: flex; flex-direction: column; }
.v3-qf-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 8px; padding: 9px 0;
  border-bottom: 1px solid var(--v3-border2);
}
.v3-qf-row:last-child { border-bottom: none; }
.v3-qf-l {
  font-family: var(--v3-body);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--v3-text3); flex-shrink: 0; padding-top: 1px;
}
.v3-qf-v {
  font-family: var(--v3-body);
  font-size: 12px; font-weight: 700;
  color: var(--v3-white); text-align: right;
  word-break: break-word; flex: 1;
}
.v3-qf-v.gold { color: var(--v3-gold); }

/* Recent posts */
.v3-recent {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--v3-border2);
  text-decoration: none; transition: opacity 0.2s;
}
.v3-recent:hover { opacity: 0.75; }
.v3-recent:last-child { border-bottom: none; padding-bottom: 0; }
.v3-recent-ico {
  width: 38px; height: 38px;
  background: var(--v3-bg3); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  border: 1px solid var(--v3-border);
}
.v3-recent-text { flex: 1; min-width: 0; }
.v3-recent-title {
  font-family: var(--v3-body);
  font-size: 12px; color: var(--v3-text);
  font-weight: 600; line-height: 1.5; margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v3-recent-date {
  font-family: var(--v3-body);
  font-size: 10px; color: var(--v3-text3);
}

/* Tags */
.v3-tags { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 4px; }
.v3-tag {
  display: inline-block;
  background: var(--v3-bg3);
  border: 1px solid var(--v3-border);
  color: var(--v3-text2);
  font-family: var(--v3-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  transition: border-color 0.2s, color 0.2s;
}
.v3-tag:hover { border-color: var(--v3-gold-border); color: var(--v3-gold); }

/* Internal links section */
.v3-links {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0;
}
.v3-link-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--v3-bg3); border: 1px solid var(--v3-border);
  color: var(--v3-text2); padding: 9px 16px; border-radius: 8px;
  font-family: var(--v3-body); font-size: 13px; font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.v3-link-btn:hover { border-color: var(--v3-gold-border); color: var(--v3-gold); }
.v3-link-btn span { color: var(--v3-gold); font-size: 14px; }

/* ══════════════════════════════════════════════════════════
   V3 WEATHER BOX
══════════════════════════════════════════════════════════ */
.v3-weather {
  background: linear-gradient(135deg, #08101a, #0b1422);
  border: 1px solid rgba(74,158,255,0.12);
  border-radius: var(--v3-r-lg); overflow: hidden; margin: 18px 0;
}
.v3-weather-head {
  padding: 13px 20px;
  border-bottom: 1px solid rgba(74,158,255,0.1);
  font-family: var(--v3-display);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: #5aaeff;
  background: rgba(74,158,255,0.06);
}
.v3-weather-body {
  display: grid; grid-template-columns: auto 1fr;
}
.v3-w-main {
  padding: 24px 28px;
  border-right: 1px solid rgba(74,158,255,0.08);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.v3-w-icon { font-size: 44px; line-height: 1; }
.v3-w-temp {
  font-family: var(--v3-mono);
  font-size: 36px; font-weight: 600; color: var(--v3-white); line-height: 1;
}
.v3-w-cond {
  font-family: var(--v3-body);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 1px; color: var(--v3-text3);
}
.v3-w-stats {
  padding: 20px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  align-content: center;
}
.v3-wstat { display: flex; flex-direction: column; gap: 4px; }
.v3-ws-val {
  font-family: var(--v3-mono);
  font-size: 18px; font-weight: 600; color: #5aaeff;
}
.v3-ws-label {
  font-family: var(--v3-body);
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 1px; color: var(--v3-text3);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .v3-layout {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
  }
  .v3-sidebar { padding-top: 0; position: static; }
  .v3-kp-grid { grid-template-columns: 1fr 1fr; }
  .v3-battles { grid-template-columns: 1fr 1fr; }
  .v3-match-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .v3-hero-inner { padding: 32px 20px 28px; }
  .v3-match-grid { grid-template-columns: 1fr 1fr; }
  .v3-form-grid { grid-template-columns: 1fr; }
  .v3-h2h { grid-template-columns: 1fr; }
  .v3-h2h-divider { border-left: none; border-right: none; border-top: 1px solid var(--v3-border); border-bottom: 1px solid var(--v3-border); flex-direction: row; gap: 20px; padding: 16px 20px; }
  .v3-xi-grid { grid-template-columns: 1fr; }
  .v3-kp-grid { grid-template-columns: 1fr 1fr; }
  .v3-battles { grid-template-columns: 1fr; }
  .v3-pred-bars { grid-template-columns: 1fr; }
  .v3-pred-inner { padding: 28px 20px; }
  .v3-cta { padding: 24px 20px; }
  .v3-weather-body { grid-template-columns: 1fr; }
  .v3-w-main { border-right: none; border-bottom: 1px solid rgba(74,158,255,0.08); }
  .v3-stats-grid { grid-template-columns: 1fr 1fr; }
  .v3-stats-grid.cols-3 .v3-stat-cell:nth-child(3n) { border-right: 1px solid var(--v3-border); }
  .v3-stats-grid.cols-3 .v3-stat-cell:nth-child(2n) { border-right: none; }
  .v3-content { padding-top: 24px; }
}

@media (max-width: 480px) {
  .v3-kp-grid { grid-template-columns: 1fr; }
  .v3-match-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .v3-pred-winner { font-size: 30px; }
  .v3-layout { padding: 0 14px 40px; }
}