/* =========================================================
   Усик — Верхувен | КЗ/УЗ  — styles.css
   Theme: Deep azure night  |  BEM  |  ≤700 lines
   ========================================================= */

/* --- Reset & Custom Properties ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; }
html { scroll-behavior: smooth; }

:root {
  --bg-deep:    #0a1929;
  --bg-mid:     #132f4c;
  --bg-card:    #1a3a5c;
  --accent-red: #e53935;
  --accent-yel: #ffc107;
  --accent-cyn: #00acc1;
  --text-main:  #f0f7ff;
  --text-muted: #90a4ae;
  --text-dim:   #546e7a;
  --border:     rgba(0, 172, 193, 0.2);
  --header-h:   70px;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0, 0, 0, 0.4);
}

/* --- Base ---- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--accent-cyn); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-yel); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* --- Header ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 25, 41, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  height: var(--header-h);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.header__logo {
  font-weight: 800; font-size: 1.1rem; color: var(--text-main);
  letter-spacing: -0.3px;
}
.header__logo span { color: var(--accent-red); }

.nav { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav__link {
  color: var(--text-muted); font-weight: 500; font-size: 0.9rem;
  transition: color 0.2s;
}
.nav__link:hover, .nav__link--active { color: var(--text-main); }

.header__cta {
  background: var(--accent-red);
  color: #fff; font-weight: 700; font-size: 0.85rem;
  padding: 0.55rem 1.2rem; border-radius: 8px;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
}
.header__cta:hover { background: #c62828; color: #fff; transform: translateY(-1px); }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.mobile-toggle span { width: 22px; height: 2px; background: var(--text-muted); border-radius: 2px; display: block; }

/* --- Hero ---- */
.hero {
  margin-top: var(--header-h);
  background: linear-gradient(160deg, #0a1929 0%, #0d2137 40%, #132f4c 70%, #0e2847 100%);
  position: relative; overflow: hidden; padding: 3.5rem 0 4rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 60% 40%, rgba(0,172,193,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* SVG sky gradient accent */
.hero__sky {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  opacity: 0.06; pointer-events: none;
}

.hero__content { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(229,57,53,0.15); border: 1px solid rgba(229,57,53,0.4);
  color: #ef9a9a; font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; padding: 0.35rem 0.9rem; border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 1.25rem;
  color: var(--text-main);
}
.hero__title mark {
  background: none; color: var(--accent-yel);
}
.hero__subtitle {
  font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem;
  max-width: 640px;
}

/* Time card */
.time-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-cyn);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}
.time-card__label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--accent-cyn); font-weight: 600; margin-bottom: 0.5rem;
}
.time-card__time {
  font-size: 1.6rem; font-weight: 800; color: var(--text-main); margin-bottom: 0.35rem;
}
.time-card__cities { font-size: 0.9rem; color: var(--text-muted); }

/* Countdown */
.countdown {
  display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.countdown__unit {
  background: var(--bg-mid); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.9rem 1.2rem; text-align: center; min-width: 72px;
}
.countdown__num {
  font-size: 2rem; font-weight: 800; color: var(--accent-yel); display: block; line-height: 1;
}
.countdown__lbl {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-top: 0.3rem; display: block;
}

/* CTA buttons */
.cta-btn {
  display: inline-block; padding: 1rem 2.25rem;
  background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
  color: #fff; font-weight: 800; font-size: 1rem; border-radius: 10px;
  text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: 0 6px 24px rgba(229,57,53,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(229,57,53,0.5); }
.cta-btn--outline {
  background: transparent; border: 2px solid var(--accent-cyn); color: var(--accent-cyn);
  box-shadow: none; margin-left: 1rem;
}
.cta-btn--outline:hover { background: var(--accent-cyn); color: var(--bg-deep); }

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Tz auto-card */
.tz-card {
  margin-top: 1.5rem; padding: 1rem 1.25rem;
  background: rgba(0,172,193,0.08); border: 1px solid rgba(0,172,193,0.2);
  border-radius: 10px; font-size: 0.9rem; color: var(--text-muted);
}
.tz-card strong { color: var(--accent-cyn); }

/* --- Sections ---- */
.section { padding: 3.5rem 0; }
.section--alt { background: var(--bg-mid); }
.section__title {
  font-size: clamp(1.35rem, 3vw, 1.9rem); font-weight: 800;
  margin-bottom: 1.5rem; color: var(--text-main);
}
.section__title span { color: var(--accent-yel); }
.section__lead { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.75rem; max-width: 760px; }

/* --- Breadcrumb ---- */
.breadcrumb {
  background: rgba(19,47,76,0.7); border-bottom: 1px solid var(--border);
  padding: 0.65rem 0; position: sticky; top: var(--header-h); z-index: 900;
}
.breadcrumb__list { display: flex; gap: 0.5rem; list-style: none; font-size: 0.82rem; flex-wrap: wrap; }
.breadcrumb__item { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb__item:not(:last-child)::after { content: '\203A'; color: var(--text-dim); }
.breadcrumb__link { color: var(--accent-cyn); }

/* --- Fact box / info cards ---- */
.fact-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem;
}
.fact-box__title {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--accent-cyn); font-weight: 600; margin-bottom: 1rem;
}
.fact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.75rem;
}
.fact-item { padding: 0.75rem 1rem; background: rgba(255,255,255,0.04); border-radius: 8px; }
.fact-item__label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.fact-item__value { font-weight: 700; color: var(--text-main); margin-top: 0.2rem; }

/* --- City time table ---- */
.city-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.city-table th {
  background: var(--bg-mid); color: var(--text-muted); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.8px; padding: 0.75rem 1rem; text-align: left;
  border-bottom: 1px solid var(--border);
}
.city-table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.city-table tr:last-child td { border-bottom: none; }
.city-table tr:hover td { background: rgba(255,255,255,0.03); }
.time-highlight { color: var(--accent-yel); font-weight: 700; }
.country-group td:first-child { color: var(--text-muted); font-size: 0.85rem; }

/* --- Accordion / FAQ ---- */
.faq { margin-top: 2rem; }
.faq__item {
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 0.75rem; overflow: hidden;
}
.faq__question {
  width: 100%; background: var(--bg-card); border: none; cursor: pointer;
  padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center;
  color: var(--text-main); font-weight: 600; font-size: 0.95rem; text-align: left;
}
.faq__question::after {
  content: '+'; font-size: 1.2rem; color: var(--accent-cyn);
  transition: transform 0.25s; flex-shrink: 0; margin-left: 0.75rem;
}
.faq__item--open .faq__question::after { content: '\2212'; }
.faq__answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  background: rgba(19,47,76,0.5);
}
.faq__answer-inner { padding: 1rem 1.25rem; color: var(--text-muted); font-size: 0.95rem; }
.faq__item--open .faq__answer { max-height: 400px; }

/* --- Content typography ---- */
.prose p { margin-bottom: 1.1rem; color: var(--text-muted); }
.prose h2 { font-size: 1.4rem; font-weight: 700; color: var(--text-main); margin: 2rem 0 0.75rem; }
.prose h3 { font-size: 1.1rem; font-weight: 600; color: var(--accent-cyn); margin: 1.5rem 0 0.5rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { color: var(--text-muted); margin-bottom: 0.4rem; }
.prose strong { color: var(--text-main); }

/* --- Method cards ---- */
.methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.method-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.method-card__title { font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem; }
.method-card__badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.75rem;
}
.badge--primary { background: rgba(229,57,53,0.15); color: #ef9a9a; }
.badge--secondary { background: rgba(0,172,193,0.15); color: var(--accent-cyn); }
.badge--warn { background: rgba(255,193,7,0.15); color: var(--accent-yel); }
.method-card p { font-size: 0.9rem; color: var(--text-muted); }

/* --- Tip box ---- */
.tip-box {
  background: rgba(255,193,7,0.07); border: 1px solid rgba(255,193,7,0.25);
  border-left: 4px solid var(--accent-yel); border-radius: var(--radius);
  padding: 1.1rem 1.4rem; margin: 1.5rem 0;
}
.tip-box p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
.tip-box strong { color: var(--accent-yel); }

/* --- Warning box ---- */
.warn-box {
  background: rgba(229,57,53,0.07); border: 1px solid rgba(229,57,53,0.25);
  border-left: 4px solid var(--accent-red); border-radius: var(--radius);
  padding: 1.1rem 1.4rem; margin: 1.5rem 0;
}
.warn-box p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* --- Footer ---- */
.footer {
  background: #060f1a; border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem;
}
.footer__brand { font-weight: 800; font-size: 1rem; color: var(--text-main); margin-bottom: 0.75rem; }
.footer__brand span { color: var(--accent-red); }
.footer__desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }
.footer__heading { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); font-weight: 600; margin-bottom: 0.75rem; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.4rem; }
.footer__links a { font-size: 0.85rem; color: var(--text-dim); }
.footer__links a:hover { color: var(--accent-cyn); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem;
  font-size: 0.78rem; color: var(--text-dim); line-height: 1.7;
}
.footer__bottom a { color: var(--text-dim); }
.footer__age {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border: 2px solid var(--accent-red);
  border-radius: 50%; color: var(--accent-red); font-weight: 800; font-size: 0.7rem;
  margin-right: 0.5rem; vertical-align: middle;
}

/* --- Utility ---- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 1.5rem; }
.disclaimer { font-size: 0.78rem; color: var(--text-dim); }

/* --- Responsive ---- */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav--open { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .mobile-toggle { display: flex; }
  .header__cta { font-size: 0.75rem; padding: 0.45rem 0.9rem; }
  .hero { padding: 2.5rem 0 3rem; }
  .countdown { gap: 0.65rem; }
  .countdown__unit { min-width: 60px; padding: 0.7rem 0.9rem; }
  .countdown__num { font-size: 1.6rem; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .city-table { font-size: 0.85rem; }
  .city-table th, .city-table td { padding: 0.6rem 0.75rem; }
}
@media (max-width: 480px) {
  .cta-btn { width: 100%; text-align: center; margin-left: 0; }
  .hero__cta { flex-direction: column; }
  .fact-grid { grid-template-columns: 1fr; }
}

/* ── E-E-A-T additions ── */
.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.75rem 0 0.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
}
.byline a {
  color: var(--accent-cyn);
  text-decoration: none;
  font-weight: 600;
}
.byline a:hover { text-decoration: underline; }
.byline time { color: var(--text-muted); }

.author-bio {
  background: var(--bg-mid);
  border-left: 4px solid var(--accent-cyn);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.author-bio .container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.author-bio h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-cyn);
  margin-bottom: 0.5rem;
}
.author-bio p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.author-bio strong { color: var(--text-muted); }

.sources {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--border);
}
.sources .container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.sources h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.sources ol {
  padding-left: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.8;
}
.sources cite { font-style: normal; font-weight: 600; }
.sources a { color: var(--text-dim); text-decoration: underline; }
.sources a:hover { color: var(--accent-cyn); }

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-underline-offset: 2px;
}
time { font-variant-numeric: tabular-nums; }

@media (max-width: 600px) {
  .byline { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .author-bio { padding: 1rem; border-radius: 0; }
}

/* ── Deep-analysis page ─────────────────────────────────── */
.deep-analysis__lead {
  font-size: 1.05rem; color: var(--accent-cyn); margin-bottom: 1.25rem;
  border-left: 3px solid var(--accent-cyn); padding-left: .875rem; line-height: 1.6;
}
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1rem 0; }
.data-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.data-table caption { text-align: left; font-size: .78rem; color: var(--text-dim);
  margin-bottom: .4rem; caption-side: bottom; }
.data-table th, .data-table td {
  padding: .55rem .75rem; border: 1px solid var(--border); text-align: left;
}
.data-table thead th { background: var(--bg-mid); color: var(--accent-cyn);
  font-weight: 700; white-space: nowrap; }
.data-table tbody tr:nth-child(even) { background: rgba(19,47,76,.45); }
.data-table tbody tr:hover { background: rgba(0,172,193,.07); }
figure { margin: 1.5rem 0; }
figure > figcaption { font-size: .82rem; color: var(--text-muted);
  margin-bottom: .5rem; line-height: 1.5; }
.career-comparison { display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin: 1.25rem 0; }
.career-col h3 { color: var(--accent-yel); font-size: .95rem;
  margin-bottom: .75rem; }
.career-timeline { list-style: none; padding: 0; }
.career-timeline li { padding: .35rem 0 .35rem 1.1rem; border-left: 2px solid var(--border);
  margin-left: .5rem; font-size: .875rem; color: var(--text-muted); position: relative; }
.career-timeline li::before { content: ''; position: absolute; left: -.45rem; top: .65rem;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent-cyn); }
.parallels-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .75rem; }
.parallels-list li { background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .75rem 1rem; font-size: .9rem; }
/* Compact tape (index.html) */
.compact-tape { background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem; margin: 1.5rem 0; }
.compact-tape__title { font-weight: 700; color: var(--accent-cyn);
  margin-bottom: .75rem; font-size: .95rem; }
.compact-tape__table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.compact-tape__table th, .compact-tape__table td {
  padding: .4rem .6rem; border-bottom: 1px solid var(--border); }
.compact-tape__table thead th { color: var(--text-muted); font-weight: 600; }
.compact-tape__disclaimer { font-size: .75rem; color: var(--text-dim); margin: .5rem 0; }
.compact-tape__cta { display: inline-block; margin-top: .5rem; color: var(--accent-yel);
  font-weight: 700; font-size: .9rem; text-decoration: none; }
.compact-tape__cta:hover { text-decoration: underline; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; }
@media (max-width: 700px) {
  .career-comparison { grid-template-columns: 1fr; }
  .data-table th, .data-table td { font-size: .78rem; padding: .4rem .5rem; }
}

/* === Compliance / No-deposit transparency === */
.cta-note{font-size:.82rem;color:#90a4ae;margin-top:.5rem;font-style:italic}
.cta-badge{display:inline-block;background:rgba(255,193,7,.12);border:1px solid rgba(255,193,7,.4);color:#ffc107;padding:.35rem .8rem;border-radius:20px;font-size:.75rem;font-weight:600;margin-top:.75rem;letter-spacing:.3px}
.no-deposit-inline{color:#ffc107;font-weight:700}
.benefit-note{background:rgba(0,172,193,.08);border-left:3px solid #00acc1;padding:1rem 1.25rem;margin:1.5rem 0;border-radius:4px;font-size:.95rem}
.benefit-note strong{color:#00acc1}

/* === Expert Quote Cards === */
.quote-card{background:rgba(255,193,7,.08);border-left:3px solid var(--accent-yel);padding:1.5rem 1.75rem;margin:1.5rem 0;border-radius:6px}
.quote-card blockquote{margin:0 0 1rem;font-size:1.05rem;font-style:italic;line-height:1.6;color:#f0f7ff}
.quote-card blockquote p{margin:0}
.quote-card figcaption{display:flex;flex-direction:column;gap:.35rem;font-size:.9rem}
.quote-card__author{font-style:normal;font-weight:700;color:var(--accent-yel)}
.quote-card__author a{color:inherit;text-decoration:none;border-bottom:1px solid rgba(255,193,7,.4)}
.quote-card__role{color:var(--text-muted);font-size:.85rem}
.quote-card__source{color:var(--text-muted);font-size:.8rem;font-style:italic}
.quote-card__source a{color:var(--accent-yel);opacity:.85}

/* === Content Images (injected) === */
.content-image{margin:1.5rem 0;text-align:center}
.content-image img{max-width:100%;height:auto;border-radius:8px;display:block;margin:0 auto;box-shadow:0 6px 20px rgba(0,0,0,.4)}
.content-image figcaption{font-size:.85rem;color:var(--text-muted);font-style:italic;margin-top:.5rem;padding:0 1rem}
.hero__image{max-width:100%;height:auto;border-radius:12px;box-shadow:0 12px 40px rgba(0,0,0,.5);margin-top:1.5rem}
.fighter-portrait-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin:2rem 0}
.fighter-portrait-grid figure{margin:0}
.fighter-portrait-grid img{width:100%;height:auto;border-radius:8px;aspect-ratio:4/5;object-fit:cover}
@media(max-width:640px){.fighter-portrait-grid{grid-template-columns:1fr}}

/* --- Video Player Frame --- */
.video-player {
  display: block; position: relative; overflow: hidden;
  border-radius: 12px; margin: 1.5rem 0;
  cursor: pointer; text-decoration: none; color: inherit;
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
  background: #000;
}
.video-player img { display: block; width: 100%; height: auto; transition: transform .35s ease; }
.video-player:hover img, .video-player:focus-visible img { transform: scale(1.03); }
.video-player__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
  transition: background .3s ease;
}
.video-player:hover .video-player__overlay { background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.7)); }
.video-player__play { transition: transform .3s cubic-bezier(.34,1.56,.64,1); filter: drop-shadow(0 6px 16px rgba(229,57,53,.6)); }
.video-player:hover .video-player__play { transform: scale(1.08); }
.video-player__live {
  position: absolute; top: 1rem; left: 1rem;
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--accent-red, #e53935); color: #fff;
  padding: .35rem .8rem; border-radius: 4px;
  font-weight: 800; font-size: .78rem; letter-spacing: 1.5px;
  box-shadow: 0 3px 10px rgba(0,0,0,.4);
}
.video-player__live-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: vp-pulse 1.4s infinite; }
@keyframes vp-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.video-player__cta {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  background: var(--accent-yel, #ffc107); color: var(--bg-deep, #0a1929);
  padding: .6rem 1.5rem; border-radius: 6px;
  font-weight: 800; font-size: .95rem; letter-spacing: .5px;
  box-shadow: 0 4px 14px rgba(255,193,7,.4); white-space: nowrap;
}
@media (max-width: 640px) {
  .video-player__play svg { width: 64px; height: 64px; }
  .video-player__cta { font-size: .85rem; padding: .5rem 1.2rem; bottom: .9rem; }
  .video-player__live { font-size: .7rem; padding: .25rem .6rem; top: .75rem; left: .75rem; }
}

/* =========================================================
   PREMIUM POLISH — visual components  (≤200 lines)
   ========================================================= */

/* -- Hero H1 clamp + accent underline ---- */
.hero__title{font-size:clamp(1.75rem,4.5vw,3rem);font-weight:900;line-height:1.15;letter-spacing:-.02em}
.hero__title mark{background:none;color:var(--accent-cyn);text-decoration:underline;text-decoration-color:var(--accent-yel);text-underline-offset:4px}

/* -- Stat grid ---- */
.stat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:1rem;margin:1.75rem 0}
.stat-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem 1rem;text-align:center;transition:transform .2s,box-shadow .2s,border-color .2s}
.stat-card:hover{transform:translateY(-4px);box-shadow:0 8px 28px rgba(0,172,193,.18);border-color:var(--accent-cyn)}
.stat-card__num{font-size:1.9rem;font-weight:900;color:var(--accent-yel);line-height:1;display:block}
.stat-card__lbl{font-size:.72rem;text-transform:uppercase;letter-spacing:1.2px;color:var(--text-muted);margin-top:.35rem;display:block}

/* -- Pull-quote ---- */
.pull-quote{border-left:4px solid var(--accent-cyn);background:linear-gradient(135deg,rgba(0,172,193,.06) 0%,rgba(255,193,7,.04) 100%);border-radius:0 var(--radius) var(--radius) 0;padding:1.25rem 1.5rem;margin:1.75rem 0;position:relative}
.pull-quote blockquote{font-size:1.08rem;font-style:italic;line-height:1.65;color:#d6eaf8}
.pull-quote blockquote::before{content:'\201C';font-size:3rem;color:var(--accent-cyn);opacity:.4;position:absolute;top:.25rem;left:.75rem;line-height:1}
.pull-quote figcaption{margin-top:.75rem;font-size:.82rem;color:var(--text-muted)}
.pull-quote figcaption strong{color:var(--accent-yel)}

/* -- Section divider ---- */
.section-divider{height:3px;background:linear-gradient(90deg,transparent 0%,var(--accent-cyn) 25%,var(--accent-yel) 75%,transparent 100%);border:none;margin:0;opacity:.55}

/* -- Accent H2 left-bar ---- */
.section__title--accent{border-left:4px solid var(--accent-cyn);padding-left:.9rem;background:linear-gradient(90deg,rgba(0,172,193,.07) 0%,transparent 60%)}

/* -- Countdown glow ---- */
.countdown__unit--glow{box-shadow:0 0 18px rgba(255,193,7,.3);border-color:rgba(255,193,7,.4)}
.countdown__num{text-shadow:0 0 12px rgba(255,193,7,.6)}

/* -- Timezone timeline ---- */
.timezone-timeline{display:flex;gap:0;overflow:hidden;border-radius:var(--radius);border:1px solid var(--border);margin:1.75rem 0}
.tz-stop{flex:1;padding:1rem .75rem;text-align:center;background:var(--bg-mid);border-right:1px solid var(--border);transition:background .2s}
.tz-stop:last-child{border-right:none}
.tz-stop:hover{background:var(--bg-card)}
.tz-stop__city{font-size:.72rem;text-transform:uppercase;letter-spacing:1px;color:var(--text-muted);display:block}
.tz-stop__time{font-size:1.5rem;font-weight:900;color:var(--accent-yel);display:block;line-height:1.1;margin:.2rem 0}
.tz-stop__date{font-size:.7rem;color:var(--text-dim);display:block}
@media(max-width:600px){.timezone-timeline{flex-direction:column;border-radius:var(--radius)}.tz-stop{border-right:none;border-bottom:1px solid var(--border)}.tz-stop:last-child{border-bottom:none}}

/* -- Related cards ---- */
.related-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;margin:2rem 0}
.related-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem;transition:transform .2s,border-color .2s;text-decoration:none;color:inherit;display:block}
.related-card:hover{transform:translateY(-3px);border-color:var(--accent-cyn);color:inherit}
.related-card__label{font-size:.7rem;text-transform:uppercase;letter-spacing:1.2px;color:var(--accent-cyn);margin-bottom:.4rem;display:block}
.related-card__title{font-weight:700;font-size:.95rem;color:var(--text-main);line-height:1.35}
.related-card__meta{font-size:.75rem;color:var(--text-muted);margin-top:.5rem}

/* -- Anchor TOC ---- */
.anchor-toc{background:var(--bg-mid);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem 1.5rem;margin:1.75rem 0}
.anchor-toc__title{font-size:.78rem;text-transform:uppercase;letter-spacing:1.2px;color:var(--accent-cyn);margin-bottom:.75rem;font-weight:700}
.anchor-toc ol{padding-left:1.25rem}
.anchor-toc li{margin-bottom:.3rem}
.anchor-toc a{color:var(--text-muted);font-size:.88rem;transition:color .15s}
.anchor-toc a:hover{color:var(--accent-yel)}

/* -- See-also callout ---- */
.see-also-callout{background:linear-gradient(135deg,rgba(0,172,193,.08) 0%,rgba(255,193,7,.05) 100%);border:1px solid rgba(0,172,193,.25);border-radius:var(--radius);padding:1rem 1.25rem;margin:1.5rem 0;display:flex;align-items:flex-start;gap:.75rem}
.see-also-callout__icon{font-size:1.1rem;flex-shrink:0;margin-top:.1rem}
.see-also-callout__body{font-size:.9rem;line-height:1.6}
.see-also-callout a{font-weight:700;color:var(--accent-yel)}
.see-also-callout a:hover{color:var(--accent-cyn)}

/* -- Sticky mobile CTA ---- */
.sticky-cta{display:none;position:fixed;bottom:0;left:0;right:0;z-index:900;background:linear-gradient(135deg,#b71c1c 0%,#e53935 100%);color:#fff;text-align:center;padding:.85rem 1rem;font-weight:800;font-size:.95rem;text-decoration:none;letter-spacing:.3px;box-shadow:0 -3px 12px rgba(0,0,0,.35);transition:background .15s}
.sticky-cta:hover{background:linear-gradient(135deg,#e53935 0%,#b71c1c 100%);color:#fff}
@media(max-width:768px){.sticky-cta{display:block}}
/* ═══════════════════════════════════════════════════════════
   HOW-TO 3-STEP CALLOUT — 2026-04-25
   ═══════════════════════════════════════════════════════════ */
.howto {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.08) 0%, rgba(255, 215, 0, 0.06) 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding: 2.5rem 0;
  margin: 1rem 0 2rem;
}
.howto__title {
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 .8rem;
  letter-spacing: -.01em;
}
.howto__intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: .9;
}
.howto__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 0 0 1.5rem;
  padding: 0;
}
.howto__step {
  display: flex;
  gap: .85rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 10px;
  padding: 1.2rem 1.1rem;
  transition: border-color .2s, transform .2s;
}
.howto__step:hover { border-color: rgba(255, 215, 0, 0.45); transform: translateY(-2px); }
.howto__step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #d4a800);
  color: #0b1e3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.howto__step-body { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.howto__step-title { font-size: 1rem; font-weight: 700; margin: 0; line-height: 1.3; }
.howto__step-text { font-size: .85rem; line-height: 1.5; opacity: .85; margin: 0; }
.howto__cta-inline {
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
}
.howto__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 215, 0, 0.18);
}
.howto__badges {
  font-size: .85rem;
  font-weight: 600;
  opacity: .85;
  letter-spacing: .01em;
}
.howto__cta-main {
  background: linear-gradient(135deg, #ffd700, #d4a800);
  color: #0b1e3a;
  font-weight: 800;
  font-size: .92rem;
  padding: .85rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}
.howto__cta-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.35);
  color: #0b1e3a;
}
@media (max-width: 600px) {
  .howto__steps { grid-template-columns: 1fr; }
  .howto__footer { flex-direction: column; align-items: stretch; }
  .howto__cta-main { text-align: center; }
}
/* ═══════════════════════════════════════════════════════════
   MOBILE OVERFLOW FIXES — 2026-04-25
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Keyfacts: allow wrap, drop nowrap, stack vertically */
  .article-keyfacts > .container { flex-direction: column; align-items: stretch; gap: .8rem; }
  .keyfacts__list { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: .5rem .8rem; }
  .keyfacts__list > div { padding: 0 !important; border-left: none !important; flex: unset; }
  .keyfacts__list dt { white-space: normal !important; font-size: .62rem !important; }
  .keyfacts__list dd { white-space: normal !important; font-size: .82rem !important; line-height: 1.25; }

  /* Countdown: compact on mobile */
  .article-keyfacts .countdown,
  .countdown--inline {
    width: 100% !important;
    flex-wrap: wrap !important;
    gap: .35rem !important;
  }
  .article-keyfacts .countdown__units,
  .countdown--inline .countdown__units { gap: .25rem !important; flex-wrap: wrap !important; }
  .article-keyfacts .countdown__num,
  .countdown--inline .countdown__num { font-size: .95rem !important; }
  .article-keyfacts .countdown__word,
  .countdown--inline .countdown__word { font-size: .62rem !important; }
  .article-keyfacts .countdown__unit-label,
  .countdown--inline .countdown__unit-label { font-size: .62rem !important; }

  /* Howto: tighten on small screens */
  .howto { padding: 1.5rem 0; }
  .howto__steps { gap: .75rem; }
  .howto__step { padding: .9rem .8rem; }
  .howto__cta-main { width: 100%; text-align: center; padding: .9rem 1rem; font-size: .88rem; }
  .howto__badges { font-size: .78rem; }

  /* Section strip: smaller padding */
  .section-strip > .container { padding: .4rem 0 !important; }
  .section-strip__crumbs { font-size: .7rem; }
  .section-strip__live { font-size: .62rem; }

  /* Article header: tighter */
  .article-header { padding: 1rem 0 0; }
  .article-eyebrow { font-size: .65rem; }
  .article-title { font-size: 1.35rem !important; line-height: 1.22 !important; }
  .article-deck { font-size: .92rem; line-height: 1.5; }

  /* Tables don't fit mobile - allow scroll */
  .tz-table, .compact-tape__table, table { font-size: .82rem; }
  table { display: block; max-width: 100%; overflow-x: auto; }

  /* Container side padding */
  .container, .container--article { padding: 0 .9rem !important; }

  /* General: prevent any wide image/div from breaking layout */
  img, video, iframe, .video-player { max-width: 100%; height: auto; }
}
/* Additional mobile fixes (v2) */
@media (max-width: 720px) {
  /* CTA buttons must fit viewport */
  .btn, .btn--lg, .btn--primary, .btn--secondary, .btn--gold {
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: center;
    padding: .85rem 1rem !important;
    font-size: .92rem !important;
  }
  .btn__logo, .btn img { max-width: 60px; height: auto; }

  /* Tables: wrap entire table in scrollable container effectively */
  table { table-layout: auto; min-width: 0 !important; word-break: break-word; }
  th, td { padding: .5rem .4rem !important; font-size: .8rem !important; }

  /* Anything inside main can't exceed viewport */
  main *, .article-header *, .howto * { max-width: 100% !important; box-sizing: border-box; }

  /* Stat-grid responsive */
  .stat-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important; gap: .5rem !important; }
  .stat-card { padding: .9rem .6rem !important; }

  /* Cards (3-col) → 1-col on mobile */
  .cards { grid-template-columns: 1fr !important; }
  .odds-cards { grid-template-columns: 1fr !important; }

  /* Hero CTA group / inline CTAs wrap */
  .hero__ctas, .hero__cta-group, .hero__cta { flex-direction: column; align-items: stretch !important; gap: .6rem !important; }
}
/* Additional mobile fixes (v3) — collapse multi-col grids on narrow screens */
@media (max-width: 900px) {
  .content-layout,
  .article-grid,
  .prediction-layout,
  .hero__inner,
  .grid-2col,
  .two-col {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .content-layout > *,
  .article-grid > *,
  .prediction-layout > *,
  .hero__inner > * {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}
/* Additional mobile fixes (v4) — kill nowrap on long headings */
@media (max-width: 720px) {
  .section__title-rule h2,
  .section__title,
  .h2-accent,
  h1, h2, h3 {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }
  .section__title-rule { flex-wrap: wrap !important; }
  /* sticky bottom CTA: smaller text */
  .sticky-cta__text { white-space: normal !important; font-size: .72rem !important; }
}
/* Additional mobile fixes (v5) — universal grid collapse */
@media (max-width: 900px) {
  .article-layout,
  .deep-analysis,
  .deep-analysis__career-cols,
  .stat-grid,
  .fighter-portrait-grid,
  .related-cards,
  .article-grid,
  .prediction-layout,
  .toc-sidebar,
  .article-keyfacts > .container,
  [class*="grid"]:not(.howto__steps):not(.stat-grid):not(.cards):not(.odds-cards) {
    grid-template-columns: 1fr !important;
  }
  .deep-analysis__career-col,
  .article-layout > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  /* Author bio + sources blocks */
  .author-bio, .sources, .compact-tape__cta-text, blockquote {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   COOKIE BAR — 2026-04-25
   ═══════════════════════════════════════════════════════════ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(20, 25, 45, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 215, 0, 0.25);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: #e8e8f0;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar a {
  color: #ffd700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-bar a:hover { text-decoration-thickness: 2px; }
.cookie-bar__btn {
  flex-shrink: 0;
  padding: 0.55rem 1.2rem;
  background: linear-gradient(135deg, #ffd700, #d4a800);
  color: #0b1e3a;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cookie-bar__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.3);
}
@media (max-width: 720px) {
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 0.75rem 1rem;
    gap: 0.6rem;
    font-size: 0.78rem;
  }
  .cookie-bar__btn { width: 100%; }
}
