/* ==========================================================================
   nova — template set "card/dark-hero" (ref: apuestas_brasil_mundial_2026)
   Structure only. ALL colors via CSS custom properties so a geo/site swaps
   the look by overriding the :root vars (see palettes/<theme>.css).
   Hand-written, zero JS, native <details> accordions.
   ========================================================================== */

/* ---- palette (defaults = navy/blue ref). Override per geo in palettes/*. -- */
:root {
  --c-bg:        #f8f9fb;   /* page background            */
  --c-surface:   #ffffff;   /* cards / panels             */
  --c-surface-2: #f1f4f8;   /* muted card                 */
  --c-ink:       #0a1a2a;   /* primary text / deep navy   */
  --c-ink-2:     #143859;   /* secondary navy             */
  --c-muted:     #5b6b7a;   /* muted text                 */
  --c-line:      #e6ebf1;   /* borders                    */
  --c-accent:    #32a8ff;   /* brand accent (blue)        */
  --c-accent-2:  #0f75bd;   /* accent darker              */
  --c-on-accent: #ffffff;
  --c-header:    #0a1a2a;   /* header / footer bg         */
  --c-header-ink:#ffffff;
  --c-on-dark:   #ffffff;

  --radius:    1.5rem;
  --radius-sm: .75rem;
  --radius-pill: 999px;
  --maxw: 76rem;
  --shadow:    0 10px 30px rgba(10,26,42,.08);
  --shadow-lg: 0 24px 60px rgba(10,26,42,.18);

  --font-display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---- base --------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.nv-container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ---- header ------------------------------------------------------------- */
.nv-header {
  background: var(--c-header);
  color: var(--c-header-ink);
  position: sticky; top: 0; z-index: 50;
}
.nv-header .nv-container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-top: 1rem; padding-bottom: 1rem;
}
.nv-brand {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  letter-spacing: .04em; text-decoration: none; color: var(--c-header-ink);
}
.nv-brand b { color: var(--c-accent); }
.nv-nav ul { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.nv-nav a { text-decoration: none; font-weight: 500; color: rgba(255,255,255,.9); transition: color .2s; }
.nv-nav a:hover { color: var(--c-accent); }

/* ---- hero --------------------------------------------------------------- */
.nv-hero {
  position: relative; color: var(--c-on-dark); overflow: hidden;
  /* shared hero background photo, gradient layered beneath = graceful if the
     file is missing. Drop the file at assets/img/hero-bg.webp (1920x1080).
     Team pages override with their own per-team photo via inline style. */
  background: linear-gradient(115deg, var(--c-ink) 0%, var(--c-ink-2) 100%);
  background-image: url('/assets/img/hero-bg.webp'),
                    linear-gradient(115deg, var(--c-ink) 0%, var(--c-ink-2) 100%);
  background-size: cover; background-position: center;
  min-height: 70vh;
}
.nv-hero::before { /* dark wash for legibility over photo */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,26,42,.92) 0%, rgba(10,26,42,.55) 60%, rgba(10,26,42,.25) 100%);
}
.nv-hero .nv-container { position: relative; z-index: 1; padding-top: 5rem; padding-bottom: 5rem; }
.nv-hero-inner { max-width: 42rem; }
.nv-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill); padding: .4rem 1rem; margin-bottom: 1.5rem;
  font-size: .85rem; font-style: italic;
}
.nv-badge .dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--c-accent); }
.nv-hero h1 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.05; letter-spacing: -.01em;
  margin: 0 0 1.25rem;
}
.nv-hero h1 .accent { color: var(--c-accent); }
.nv-hero h1 .flag { display: inline-block; height: 1em; width: auto; margin-right: .4rem; vertical-align: -.08em; border-radius: 3px; }
.nv-hero p { 
  font-size: 1.15rem; color: rgba(255,255,255,.85); 
  max-width: 34rem; margin: 0 0 2rem; }
.nv-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.nv-hero-meta { margin-top: 1.5rem; font-size: .85rem; color: rgba(255,255,255,.65); }

/* ---- buttons ------------------------------------------------------------ */
.nv-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: .85rem;
  padding: .9rem 2rem; border-radius: var(--radius-pill); text-decoration: none;
  border: 2px solid transparent; cursor: pointer; transition: all .2s;
}
.nv-btn-primary { background: var(--c-accent); color: var(--c-on-accent); box-shadow: 0 8px 20px rgba(50,168,255,.3); }
.nv-btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.nv-btn-ghost { background: transparent; color: var(--c-accent); border-color: var(--c-accent); }
.nv-btn-ghost:hover { background: var(--c-accent); color: var(--c-on-accent); }
.nv-btn-light { background: var(--c-surface); color: var(--c-ink); }
.nv-btn-light:hover { background: var(--c-surface-2); }

/* ---- sections ----------------------------------------------------------- */
.nv-section { padding: 4.5rem 0; }
.nv-section--alt { background: var(--c-surface); }
.nv-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em;
  color: var(--c-ink); margin-bottom: .75rem;
}
.nv-kicker::before { content: "✲"; color: var(--c-accent); font-size: 1.1em; }
.nv-h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.1; margin: 0 0 1rem; color: var(--c-ink);
}
.nv-lead { color: var(--c-muted); max-width: 48rem; margin: 0 0 2.5rem; }
.nv-section-head { margin-bottom: 2.5rem; }

/* ---- market cards ------------------------------------------------------- */
.nv-grid { display: grid; gap: 1.5rem; }
.nv-grid--4 { grid-template-columns: repeat(4, 1fr); }
.nv-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .nv-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .nv-grid--4, .nv-grid--3 { grid-template-columns: 1fr; } }

.nv-card {
  background: var(--c-surface-2); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.nv-card:hover { box-shadow: var(--shadow); }
.nv-card--accent {
  background: linear-gradient(140deg, var(--c-ink-2) 0%, var(--c-accent) 140%);
  color: var(--c-on-dark); border-color: transparent; box-shadow: var(--shadow-lg);
}
.nv-card--accent:hover { transform: translateY(-3px); }
.nv-card .tipo { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--c-muted); margin: 0 0 .5rem; }
.nv-card--accent .tipo { color: rgba(255,255,255,.7); }
.nv-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.4rem; line-height: 1.15; margin: 0 0 .75rem; }
.nv-card p { font-size: .9rem; color: var(--c-muted); margin: 0 0 1.5rem; }
.nv-card--accent p { color: rgba(255,255,255,.85); }
.nv-card-foot {
  margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--c-line);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nv-card--accent .nv-card-foot { border-top-color: rgba(255,255,255,.2); }
.nv-odds { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--c-accent); }
.nv-card--accent .nv-odds { color: var(--c-on-dark); }
.nv-card-cta { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .85rem; text-transform: uppercase; text-decoration: none; color: var(--c-ink); }
.nv-card--accent .nv-card-cta { color: var(--c-on-dark); }
.nv-card-cta img { height: 20px; width: auto; display: inline-block; }

/* ---- bonus card --------------------------------------------------------- */
.nv-bonus {
  background: linear-gradient(160deg, var(--c-ink) 0%, var(--c-ink-2) 100%);
  color: var(--c-on-dark); border-radius: var(--radius); padding: 2.5rem; text-align: center;
  box-shadow: var(--shadow-lg);
}
.nv-bonus img { height: 32px; width: auto; margin: 0 auto 1rem; }
.nv-bonus h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.6rem; margin: 0 0 .25rem; }
.nv-bonus .rating { color: var(--c-accent); font-weight: 700; margin-bottom: .75rem; }
.nv-bonus .offer { font-size: 1.15rem; margin-bottom: 1.5rem; }
.nv-bonus .nv-btn { width: 100%; justify-content: center; }
.nv-bonus .terms { font-size: .7rem; color: rgba(255,255,255,.55); margin-top: 1rem; }

/* ---- match cards -------------------------------------------------------- */
.nv-matches { display: flex; flex-direction: column; gap: 1.25rem; max-width: 56rem; margin: 0 auto; }
.nv-match {
  background: var(--c-surface-2); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 1.75rem 2rem; display: flex; align-items: center; gap: 1.5rem;
}
.nv-match--key {
  background: linear-gradient(110deg, var(--c-ink-2) 0%, var(--c-ink) 100%);
  color: var(--c-on-dark); border-color: transparent; box-shadow: var(--shadow);
}
.nv-match-flag {
  width: 4.5rem; height: 4.5rem; flex: 0 0 auto; border-radius: 50%;
  background: var(--c-surface); border: 1px solid var(--c-line);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.nv-match--key .nv-match-flag { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.nv-match-flag img { width: 2.5rem; height: auto; border-radius: 3px; }
.nv-match-body { flex: 1 1 auto; }
.nv-match-jornada { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--c-accent); margin: 0 0 .25rem; }
.nv-match h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; margin: 0 0 .25rem; }
.nv-match time, .nv-match .nv-jornada-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--c-muted); }
.nv-match--key time { color: rgba(255,255,255,.75); }
.nv-match .nv-btn { flex: 0 0 auto; }
@media (max-width: 640px) { .nv-match { flex-direction: column; text-align: center; } }

/* ---- roster chips ------------------------------------------------------- */
.nv-roster { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.nv-roster li {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-pill);
  padding: .5rem 1.1rem; font-size: .9rem; font-weight: 500;
}

/* ---- prose blocks ------------------------------------------------------- */
.nv-prose { max-width: 52rem; }
.nv-prose p { margin: 0 0 1rem; color: var(--c-ink); }

/* ---- faq accordion (native <details>) ----------------------------------- */
.nv-faq { max-width: 52rem; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.nv-faq details {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-sm); overflow: hidden;
}
.nv-faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.25rem; font-weight: 700; color: var(--c-ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.nv-faq summary::-webkit-details-marker { display: none; }
.nv-faq summary::after { content: "+"; color: var(--c-accent); font-size: 1.4rem; line-height: 1; transition: transform .2s; }
.nv-faq details[open] summary::after { content: "−"; }
.nv-faq .nv-faq-a { padding: 0 1.25rem 1.25rem; color: var(--c-muted); font-size: .95rem; }

/* ---- matches hub (partidos) --------------------------------------------- */
.nv-hub { max-width: 64rem; }

.nv-toc { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; margin-bottom: 3rem; box-shadow: var(--shadow); }
.nv-toc summary { list-style: none; cursor: pointer; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-display); text-transform: uppercase; font-weight: 700; font-size: 1.15rem; color: var(--c-ink); }
.nv-toc summary::-webkit-details-marker { display: none; }
.nv-toc-label::before { content: "≡"; color: var(--c-accent); margin-right: .6rem; }
.nv-toc-chevron { color: var(--c-accent); transition: transform .2s; }
.nv-toc[open] .nv-toc-chevron { transform: rotate(180deg); }
.nv-toc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; padding: 0 1.5rem 1.5rem; border-top: 1px solid var(--c-line); padding-top: 1.25rem; }
@media (max-width: 720px) { .nv-toc-grid { grid-template-columns: repeat(2, 1fr); } }
.nv-toc-grid a { text-align: center; padding: .6rem 1rem; border-radius: var(--radius-sm); background: var(--c-surface-2); color: var(--c-ink); text-decoration: none; font-weight: 700; font-size: .85rem; transition: background .2s, color .2s; }
.nv-toc-grid a:hover { background: var(--c-accent); color: var(--c-on-accent); }

.nv-grp { margin-bottom: 3.5rem; scroll-margin-top: 5rem; }
.nv-grp-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.nv-grp-head .nv-h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.nv-grp-head .nv-h2 a { text-decoration: none; color: var(--c-ink); }
.nv-grp-head .nv-h2 a:hover { color: var(--c-accent); }
.nv-grp-rule { flex: 1 1 auto; height: 1px; background: var(--c-line); }

.nv-rows { display: flex; flex-direction: column; gap: 1rem; }
.nv-row {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 1.5rem; display: flex; align-items: center; gap: 1.5rem; transition: box-shadow .2s;
}
.nv-row:hover { box-shadow: var(--shadow); }
.nv-row-main { flex: 1 1 auto; min-width: 0; }
.nv-row-date { display: block; color: var(--c-accent); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6rem; }
.nv-row-teams { display: flex; align-items: center; gap: .9rem; text-decoration: none; color: var(--c-ink); margin-bottom: .5rem; }
.nv-team { display: inline-flex; align-items: center; gap: .5rem; }
.nv-team-name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.nv-team .flag { width: 1.75rem; height: auto; border-radius: 3px; border: 1px solid rgba(0,0,0,.08); }
.nv-vs { color: var(--c-muted); font-weight: 700; font-size: .8rem; }
.nv-row-teams:hover .nv-team-name { color: var(--c-accent); }
.nv-row-desc { color: var(--c-muted); font-size: .88rem; margin: 0; }

.nv-odds-1x2 { display: flex; gap: .5rem; flex: 0 0 auto; }
.nv-odd { background: var(--c-surface-2); border: 1px solid var(--c-line); border-radius: var(--radius-sm); padding: .4rem .9rem; text-align: center; min-width: 4rem; }
.nv-odd .k { display: block; font-size: .7rem; color: var(--c-muted); font-weight: 600; margin-bottom: .15rem; }
.nv-odd b { font-family: var(--font-display); font-size: 1.1rem; color: var(--c-ink); }

.nv-row-cta { flex: 0 0 auto; }
.nv-row-cta .nv-btn { padding: .7rem 1.5rem; }

@media (max-width: 860px) {
  .nv-row { flex-direction: column; align-items: stretch; text-align: center; }
  .nv-row-teams { justify-content: center; }
  .nv-odds-1x2 { justify-content: center; }
  .nv-row-cta .nv-btn { display: block; }
}

.nv-disclaimer { text-align: center; color: var(--c-muted); font-size: .75rem; font-weight: 700; margin-top: 2.5rem; }

/* ---- generic block card (groups/group/match) ---------------------------- */
.nv-block { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-sm); padding: 1.75rem; box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.nv-block:last-child { margin-bottom: 0; }
.nv-block-title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; color: var(--c-ink); margin: 0 0 1.25rem; position: relative; padding-bottom: .6rem; }
.nv-block-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--c-accent); border-radius: 3px; }
.nv-block-title a { text-decoration: none; color: var(--c-ink); }
.nv-block-title a:hover { color: var(--c-accent); }
.nv-block p { color: var(--c-text, var(--c-ink)); margin: 0 0 1.25rem; }
.nv-block p:last-child { margin-bottom: 0; }
.nv-note { color: var(--c-muted); font-size: .85rem; }

/* ---- groups hub grid ---------------------------------------------------- */
.nv-groups-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .nv-groups-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- standings table ---------------------------------------------------- */
.nv-stand-wrap { overflow-x: auto; }
.nv-stand { width: 100%; border-collapse: collapse; font-size: .85rem; text-align: center; white-space: nowrap; }
.nv-stand th { background: var(--c-bg); color: var(--c-muted); font-weight: 600; padding: .7rem .5rem; border-bottom: 2px solid var(--c-line); text-transform: uppercase; font-size: .72rem; letter-spacing: .05em; }
.nv-stand td { padding: .8rem .5rem; border-bottom: 1px solid var(--c-line); color: var(--c-ink); }
.nv-stand tr:last-child td { border-bottom: none; }
.nv-stand-team { text-align: left; font-weight: 600; min-width: 140px; }
.nv-stand-team-inner { display: flex; align-items: center; gap: .6rem; }
.nv-stand-team-inner .flag { width: 22px; height: auto; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.1); }
.nv-stand-team a { text-decoration: none; color: var(--c-ink); }
.nv-stand-team a:hover { color: var(--c-accent); }
.nv-stand td:last-child { font-weight: 700; color: var(--c-ink); }

/* ---- mini match list (group page) --------------------------------------- */
.nv-mini-list { list-style: none; margin: 0; padding: 0; }
.nv-mini-list li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--c-line); }
.nv-mini-list li:last-child { border-bottom: none; }
.nv-mini-list a { text-decoration: none; color: var(--c-ink); font-weight: 600; }
.nv-mini-list a:hover { color: var(--c-accent); }
.nv-mini-list time, .nv-mini-list span { color: var(--c-muted); font-size: .82rem; }

/* ---- match page: hero flag-pair + banner + two-col ---------------------- */
.nv-hero--center .nv-hero-inner { max-width: none; text-align: center; margin: 0 auto; }
.nv-hero--center .nv-crumbs { justify-content: center; }
.nv-flagpair { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.nv-flagpair .flag { width: 72px; height: auto; border-radius: 8px; border: 2px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,.25); }
.nv-flagpair .vs { font-family: var(--font-display); font-size: 1.4rem; color: rgba(255,255,255,.6); font-weight: 700; }
.nv-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
@media (min-width: 992px) { .nv-layout { grid-template-columns: 2fr 1fr; } }
.nv-layout-main .nv-block .nv-btn { margin-top: .5rem; }

/* ---- match meta list ---------------------------------------------------- */
.nv-meta { list-style: none; margin: 0; padding: 0; }
.nv-meta li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--c-line); font-size: .9rem; }
.nv-meta li:last-child { border-bottom: none; }
.nv-meta li::before { content: attr(data-label); font-weight: 600; color: var(--c-ink); }
.nv-meta a { color: var(--c-accent); text-decoration: none; }

/* ---- chips -------------------------------------------------------------- */
.nv-chips { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.nv-chips--col { flex-direction: column; }
.nv-chips a { display: inline-block; padding: .45rem 1.1rem; background: var(--c-bg); color: var(--c-ink); border: 1px solid var(--c-line); border-radius: var(--radius-pill); font-size: .82rem; font-weight: 500; text-decoration: none; transition: all .2s; }
.nv-chips a:hover { background: var(--c-accent); color: var(--c-on-accent); border-color: var(--c-accent); }
.nv-chips--col a { display: block; border-radius: var(--radius-sm); }

/* ---- home: split hero --------------------------------------------------- */
.nv-home-hero {
  /* shared hero photo (same file as .nv-hero) under a cyan glow + dark wash so
     text stays legible; gradients render even if the photo file is missing. */
  background: var(--c-header);
  background-image:
    radial-gradient(circle at top right, rgba(50,168,255,.25) 0%, transparent 55%),
    linear-gradient(115deg, rgba(10,26,42,.92) 0%, rgba(10,26,42,.55) 70%),
    url('/assets/img/hero-bg.webp');
  background-size: cover; background-position: center;
  color: var(--c-on-dark); padding: 4.5rem 0 5rem; border-bottom: 4px solid var(--c-ink-2); overflow: hidden;
}
.nv-home-hero-inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 992px) { .nv-home-hero-inner { grid-template-columns: 1.1fr .9fr; } }
.nv-home-hero-content { max-width: 600px; }
.nv-home-badge { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.nv-home-badge .txt { font-style: italic; color: rgba(255,255,255,.8); font-size: 1.05rem; }
.nv-home-badge .flags { display: inline-flex; align-items: center; }
.nv-home-badge .flags .flag { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--c-header); object-fit: cover; margin-left: -12px; }
.nv-home-badge .flags .flag:first-child { margin-left: 0; }
.nv-home-badge .plus { width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--c-ink); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; border: 2px solid var(--c-header); margin-left: -12px; }
.nv-home-hero h1 { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; font-size: clamp(2.6rem, 6vw, 4.5rem); line-height: 1.05; letter-spacing: -.02em; margin: 0 0 1.25rem; }
.nv-home-hero h1 .accent { color: var(--c-accent); }
.nv-home-hero p { color: rgba(255,255,255,.65); font-size: 1.1rem; margin: 0 0 2.5rem; }
.nv-home-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.nv-play { display: inline-flex; align-items: center; gap: .75rem; color: #fff; font-weight: 600; text-decoration: none; }
.nv-play .ico { width: 52px; height: 52px; border-radius: 50%; background: #fff; color: var(--c-accent); display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; padding-left: 3px; box-shadow: 0 4px 12px rgba(0,0,0,.25); transition: transform .2s, background .2s, color .2s; }
.nv-play:hover .ico { transform: scale(1.06); background: var(--c-accent); color: #fff; }
.nv-home-visual { text-align: center; }
.nv-home-visual img { width: 100%; max-width: 550px; height: auto; border-radius: 16px; box-shadow: 0 25px 50px -12px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.1); transform: perspective(1000px) rotateY(-5deg); transition: transform .4s ease; }
.nv-home-visual img:hover { transform: perspective(1000px) rotateY(0deg); }
.nv-home-main { padding: 4rem 1.5rem; }
.nv-home-links { margin-top: 1.5rem; font-weight: 500; }
.nv-home-links a { color: var(--c-accent); text-decoration: none; }

/* ---- home: match-card grid ---------------------------------------------- */
.nv-match-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.nv-mcard { display: flex; flex-direction: column; align-items: center; gap: .75rem; padding: 1.5rem; border: 1px solid var(--c-line); border-radius: var(--radius-sm); background: var(--c-surface); text-align: center; text-decoration: none; transition: all .2s; }
.nv-mcard:hover { border-color: var(--c-accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.nv-mcard-title { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--c-ink); text-transform: uppercase; }
.nv-mcard-title .vs { color: var(--c-muted); font-size: .8em; font-weight: 400; margin: 0 .4rem; text-transform: lowercase; }
.nv-mcard-date { font-size: .8rem; color: var(--c-muted); font-weight: 600; background: var(--c-bg); padding: .3rem 1rem; border-radius: var(--radius-pill); letter-spacing: .04em; }

/* ---- bookie rows -------------------------------------------------------- */
.nv-bookies { display: flex; flex-direction: column; gap: 1rem; }
.nv-bookie { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.5rem; border: 1px solid var(--c-line); border-radius: var(--radius-sm); background: var(--c-surface); transition: all .2s; }
.nv-bookie:hover { box-shadow: var(--shadow); border-color: #cbd5e1; }
.nv-bookie-name { display: inline-flex; align-items: center; gap: .75rem; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--c-ink); }
.nv-bookie-name img { height: 26px; width: auto; }
.nv-bookie-name a { text-decoration: none; color: var(--c-ink); }
.nv-bookie-name a:hover { color: var(--c-accent); }
@media (max-width: 480px) { .nv-bookie { flex-direction: column; text-align: center; } .nv-bookie .nv-btn { width: 100%; } }

/* chips with flags (home favorites) */
.nv-chips .flag { width: 20px; height: auto; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.1); margin-right: .15rem; }
.nv-chips a { display: inline-flex; align-items: center; gap: .4rem; }

/* ---- narrow column (outright) ------------------------------------------- */
.nv-narrow { max-width: 56rem; }

/* ---- venues: stadium cards ---------------------------------------------- */
.nv-block-title--flag { display: flex; align-items: center; gap: .75rem; }
.nv-block-title--flag .flag { width: 32px; height: auto; border-radius: 4px; box-shadow: 0 0 0 1px rgba(0,0,0,.1); }
.nv-stadium-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.nv-stadium { background: var(--c-bg); border: 1px solid var(--c-line); border-radius: var(--radius-sm); padding: 1.5rem; display: flex; flex-direction: column; transition: all .25s; }
.nv-stadium:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--c-accent); background: var(--c-surface); }
.nv-stadium-city { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; color: var(--c-ink); margin-bottom: .4rem; }
.nv-stadium-name { font-weight: 600; color: var(--c-text-main, var(--c-ink)); font-size: 1rem; margin-bottom: .75rem; }
.nv-stadium-cap { font-size: .82rem; color: var(--c-muted); background: var(--c-line); padding: .3rem .85rem; border-radius: var(--radius-pill); font-weight: 500; width: fit-content; margin-top: auto; }

/* ---- bookmakers-hub: ranking rows --------------------------------------- */
.nv-bookie--rank { flex-direction: column; gap: 1.25rem; background: var(--c-bg); }
@media (min-width: 768px) { .nv-bookie--rank { flex-direction: row; background: var(--c-surface); } }
.nv-bookie-info { display: flex; flex-direction: column; gap: .5rem; text-align: center; flex: 1; align-items: center; }
@media (min-width: 768px) { .nv-bookie-info { text-align: left; align-items: flex-start; } }
.nv-bookie-rating { display: inline-flex; align-items: center; gap: .25rem; background: var(--c-ink); color: #fff; font-weight: 700; padding: .25rem .8rem; border-radius: var(--radius-pill); font-size: .8rem; width: fit-content; }
.nv-bookie-rating::before { content: "★"; color: #ffd54a; }
.nv-bookie-bonus { color: var(--c-muted); font-weight: 500; font-size: .9rem; margin: 0; }
.nv-bookie-action .nv-btn { min-width: 150px; }
@media (max-width: 767px) { .nv-bookie-action { width: 100%; } .nv-bookie-action .nv-btn { display: block; } }

/* ---- teams-hub: chips as 2-col list ------------------------------------- */
.nv-chips--grid { gap: .6rem; }
.nv-chips--grid li { width: 100%; }
@media (min-width: 480px) { .nv-chips--grid li { width: calc(50% - .3rem); } }
.nv-chips--grid a { display: flex; align-items: center; gap: .6rem; width: 100%; border-radius: var(--radius-sm); padding: .65rem 1.1rem; font-size: .95rem; }
.nv-chips--grid .flag { width: 26px; height: auto; }

/* ---- bookmaker page: logo in hero --------------------------------------- */
.nv-bm-logo { margin-bottom: 1.25rem; }
.nv-bm-logo img { height: 40px; width: auto; background: #fff; border-radius: 8px; padding: .4rem .8rem; }

/* ---- breadcrumbs -------------------------------------------------------- */
.nv-crumbs { font-size: .8rem; color: var(--c-muted); padding: 1rem 0; }
.nv-crumbs a { color: var(--c-muted); text-decoration: none; }
.nv-crumbs a:hover { color: var(--c-accent); }

/* ---- footer ------------------------------------------------------------- */
.nv-footer { background: var(--c-header); color: rgba(255,255,255,.7); border-top: 4px solid var(--c-accent); padding: 3.5rem 0 2rem; margin-top: 2rem; }
.nv-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.nv-footer a:hover { color: var(--c-accent); }
.nv-footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 720px) { .nv-footer-cols { grid-template-columns: 1fr; } }
.nv-footer h4 { font-family: var(--font-display); color: #fff; font-size: 1.1rem; margin: 0 0 1rem; }
.nv-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; font-size: .9rem; }
.nv-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; font-size: .8rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
