/* =========================================================================
   Bergisch Raptors – Designsystem
   Markenfarben: Raptors-Gelb #E0E020 · Hallen-Blau #306090 · Eis/Dark-Navy
   ========================================================================= */

:root {
  --ink-900: #080b16;
  --ink-850: #0b0f1d;
  --ink-800: #0f1424;
  --ink-700: #161d33;
  --ink-650: #1c2540;
  --ink-600: #28324f;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.16);

  --text: #eef1f8;
  --text-dim: #9aa6c4;
  --text-mute: #6b768f;

  --brand: #e6e21a;          /* Raptors-Gelb */
  --brand-bright: #f4f02a;
  --brand-deep: #b8b40f;
  --blue: #3a73b0;           /* Hallen-Blau */
  --blue-bright: #5aa6e6;    /* Eis-Blau (Links/Hover) */
  --ice: #8fd4ff;

  --win: #34d399;
  --loss: #f87171;
  --draw: #fbbf24;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow: 0 18px 40px -18px rgba(0,0,0,.7);
  --shadow-sm: 0 8px 20px -12px rgba(0,0,0,.6);
  --wrap: 1180px;
  --header-h: 72px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Segoe UI", system-ui, var(--font);
}

/* ---- Reset / Basis --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
/* Layout-Spalten dürfen unter ihre Inhaltsbreite schrumpfen (verhindert horizontales Rauslaufen) */
.split > *, .hero__grid > *, .footer-grid > * { min-width: 0; }
img, table { max-width: 100%; }
body {
  font-family: var(--font);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(58,115,176,.18), transparent 60%),
    radial-gradient(900px 500px at -10% 0%, rgba(230,226,26,.08), transparent 55%),
    var(--ink-900);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-bright); text-decoration: none; }
a:hover { color: var(--ice); }
h1, h2, h3, h4 { line-height: 1.15; font-family: var(--font-display); font-weight: 800; letter-spacing: -.01em; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 1rem; top: .5rem; background: var(--brand); color: #000; padding: .6rem 1rem; border-radius: 8px; z-index: 200; }
:focus-visible { outline: 2px solid var(--brand-bright); outline-offset: 2px; }

/* ---- Buttons --------------------------------------------------------- */
.btn {
  --bg: var(--ink-700);
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .72rem 1.3rem; border-radius: 999px; border: 1px solid var(--line-strong);
  background: var(--bg); color: var(--text); font-weight: 700; font-size: .95rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); color: var(--text); }
.btn--primary { --bg: linear-gradient(135deg, var(--brand-bright), var(--brand-deep)); color: #14130a; border-color: transparent; box-shadow: 0 10px 26px -10px rgba(230,226,26,.6); }
.btn--primary:hover { color: #14130a; box-shadow: 0 14px 30px -10px rgba(230,226,26,.8); }
.btn--blue { --bg: linear-gradient(135deg, var(--blue-bright), var(--blue)); color: #fff; border-color: transparent; }
.btn--ghost { background: transparent; }
.btn--sm { padding: .5rem 1rem; font-size: .85rem; }
.btn--block { display: flex; justify-content: center; width: 100%; }

/* ---- Ticker ---------------------------------------------------------- */
.ticker { background: linear-gradient(90deg, var(--blue), #244a73); border-bottom: 1px solid var(--line); font-size: .9rem; }
.ticker__inner { display: flex; align-items: center; gap: .9rem; padding: .5rem 0; flex-wrap: wrap; }
.ticker__tag { background: var(--brand); color: #14130a; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: .72rem; padding: .2rem .6rem; border-radius: 6px; }
.ticker__link { color: #eaf2ff; display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.ticker__link:hover { color: #fff; }
.ticker__vs { color: var(--brand-bright); font-weight: 800; }
.ticker__date { color: #c8d8ee; }

/* ---- Header / Navigation -------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(14px);
  background: rgba(8,11,22,.82); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--text); }
.brand img { filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-size: 1.15rem; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.brand__text small { font-size: .68rem; color: var(--text-dim); letter-spacing: .03em; }

.main-nav > ul { display: flex; align-items: center; gap: .35rem; }
.main-nav a { color: var(--text); font-weight: 600; font-size: .95rem; padding: .6rem .85rem; border-radius: 10px; display: inline-flex; align-items: center; gap: .35rem; }
.main-nav a:hover { background: var(--ink-700); color: #fff; }
.main-nav a.is-active { color: var(--brand-bright); }
.nav-shop { background: var(--brand); color: #14130a !important; font-weight: 800; }
.nav-shop:hover { background: var(--brand-bright); }
.caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .7; }

.has-sub { position: relative; }
.submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 210px;
  background: var(--ink-700); border: 1px solid var(--line-strong); border-radius: 14px;
  padding: .4rem; box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: .18s ease; display: grid; gap: 2px;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { padding: .55rem .8rem; border-radius: 8px; font-weight: 500; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: var(--ink-700); border: 1px solid var(--line-strong); border-radius: 10px; padding: 11px 9px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Sektionen / Layout-Helfer -------------------------------------- */
.section { padding: clamp(2.6rem, 5vw, 4.6rem) 0; }
.section--tight { padding: 2rem 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: uppercase; }
.section-head .eyebrow { color: var(--brand-bright); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; display: block; margin-bottom: .35rem; }
.section-alt { background: linear-gradient(180deg, var(--ink-850), transparent); }
.grid { display: grid; gap: 1.2rem; }
.muted { color: var(--text-dim); }
.center { text-align: center; }
.pill { display: inline-block; padding: .2rem .7rem; border-radius: 999px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; background: var(--ink-650); color: var(--text-dim); }

.card { background: linear-gradient(180deg, var(--ink-700), var(--ink-800)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.card--pad { padding: 1.4rem; }

/* ---- Hero ------------------------------------------------------------ */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(700px 380px at 18% 20%, rgba(230,226,26,.16), transparent 60%),
  radial-gradient(680px 420px at 92% 60%, rgba(58,115,176,.26), transparent 60%); z-index: -1; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }
.hero__eyebrow { color: var(--brand-bright); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); text-transform: uppercase; font-weight: 900; margin: .6rem 0 .8rem; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--brand-bright); -webkit-text-stroke: 0; }
.hero p.lead { font-size: 1.15rem; color: var(--text-dim); max-width: 46ch; }
.hero__actions { display: flex; gap: .8rem; margin-top: 1.6rem; flex-wrap: wrap; }
.hero__badge { display:inline-flex; gap:.5rem; align-items:center; margin-top: 1.4rem; color: var(--text-dim); font-size:.9rem;}

/* ---- Next-Game / Match-Karte ---------------------------------------- */
.gamecard { background: linear-gradient(160deg, var(--ink-650), var(--ink-800)); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); }
.gamecard__meta { display: flex; justify-content: space-between; color: var(--text-dim); font-size: .82rem; margin-bottom: 1.1rem; }
.gamecard__teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .8rem; }
.gamecard__team { display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center; min-width: 0; }
.gamecard__team img { width: 64px; height: 64px; object-fit: contain; }
.gamecard__team span { font-weight: 700; font-size: .95rem; overflow-wrap: anywhere; }
.gamecard__vs { font-size: 1.5rem; font-weight: 900; color: var(--brand-bright); }
.gamecard__score { font-size: 2.4rem; font-weight: 900; letter-spacing: .02em; }
.gamecard__foot { margin-top: 1.2rem; text-align: center; color: var(--text-dim); font-size: .85rem; }

/* ---- Spiel-Liste (Zeilen) ------------------------------------------- */
.matchlist { display: grid; gap: .55rem; }
.match { display: grid; grid-template-columns: auto 1fr auto; gap: .9rem; align-items: center;
  background: var(--ink-700); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .8rem 1rem; }
.match:hover { border-color: var(--line-strong); }
.match__date { text-align: center; min-width: 52px; line-height: 1.1; }
.match__date b { display: block; font-size: 1.25rem; font-weight: 900; }
.match__date small { color: var(--text-dim); font-size: .72rem; text-transform: uppercase; }
.match__teams { display: flex; flex-direction: column; min-width: 0; }
.match__teams .vs { color: var(--text-dim); font-size: .82rem; overflow-wrap: anywhere; }
.match__teams strong { font-weight: 700; overflow-wrap: anywhere; }
.match__teams .home-mark { color: var(--brand-bright); }
.match__res { text-align: right; font-weight: 900; font-size: 1.1rem; min-width: 56px; flex-shrink: 0; }
.res-W { color: var(--win); } .res-L { color: var(--loss); } .res-D { color: var(--draw); }
.badge-res { display:inline-block; min-width:1.4em; text-align:center; font-size:.72rem; font-weight:900; padding:.12rem .4rem; border-radius:6px; }
.badge-W { background: rgba(52,211,153,.16); color: var(--win); }
.badge-L { background: rgba(248,113,113,.16); color: var(--loss); }
.badge-D { background: rgba(251,191,36,.16); color: var(--draw); }

/* ---- Tabelle (Standings) -------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.standings { width: 100%; border-collapse: collapse; min-width: 560px; font-variant-numeric: tabular-nums; }
.standings th, .standings td { padding: .72rem .6rem; text-align: center; border-bottom: 1px solid var(--line); }
.standings thead th { background: var(--ink-800); color: var(--text-dim); font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; position: sticky; top: 0; }
.standings td.team, .standings th.team { text-align: left; }
.standings .team-cell { display: flex; align-items: center; gap: .6rem; font-weight: 700; }
.standings .team-cell img { width: 26px; height: 26px; object-fit: contain; }
.standings tbody tr:hover { background: var(--ink-700); }
.standings .rank { font-weight: 900; color: var(--text-dim); }
.standings .pts { font-weight: 900; color: var(--brand-bright); }
.standings tr.own { background: linear-gradient(90deg, rgba(230,226,26,.10), transparent); }
.standings tr.own td.team { color: #fff; }
.standings .note { font-size: .68rem; color: var(--blue-bright); }
.standings tr.promo td.rank { box-shadow: inset 3px 0 0 var(--win); }

/* ---- News ------------------------------------------------------------ */
.news-grid { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.news-card { overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, border-color .2s; }
.news-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.news-card__img { aspect-ratio: 16/9; background: var(--ink-650); overflow: hidden; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; }
.news-card__img--ph { display: grid; place-items: center; background: linear-gradient(135deg, var(--ink-650), var(--ink-800)); }
.news-card__img--ph img { width: 46%; height: auto; opacity: .35; object-fit: contain; }
.news-card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.news-card__meta { font-size: .76rem; color: var(--text-dim); display: flex; gap: .6rem; align-items: center; }
.news-card h3 { font-size: 1.12rem; }
.news-card h3 a { color: var(--text); }
.news-card h3 a:hover { color: var(--brand-bright); }
.news-card p { color: var(--text-dim); font-size: .92rem; }
.news-card .more { margin-top: auto; font-weight: 700; color: var(--brand-bright); font-size: .88rem; }

/* ---- Artikel --------------------------------------------------------- */
.article { max-width: 760px; margin-inline: auto; }
.article__cover { border-radius: var(--radius); overflow: hidden; margin: 1.4rem 0; max-height: 440px; }
.article__cover img { width: 100%; object-fit: cover; }
.article__body { font-size: 1.06rem; }
.article__body p { margin: 1rem 0; }
.article__body h2, .article__body h3 { margin: 1.8rem 0 .6rem; }

/* ---- Team-Seite ------------------------------------------------------ */
.team-hero { display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; align-items: center; padding: 2.4rem 0; }
.team-hero img { width: 120px; height: 120px; object-fit: contain; }
.team-hero h1 { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; }
.tabs { display: flex; gap: .4rem; border-bottom: 1px solid var(--line); margin-bottom: 1.6rem; flex-wrap: wrap; }
.tabs a, .tabs button { padding: .7rem 1.1rem; color: var(--text-dim); font-weight: 700; border-bottom: 2px solid transparent; background: none; border-radius: 0; }
.tabs a:hover { color: var(--text); }
.tabs .is-active { color: var(--brand-bright); border-bottom-color: var(--brand-bright); }

.roster-group { margin-bottom: 2rem; }
.roster-group h3 { text-transform: uppercase; letter-spacing: .05em; font-size: 1rem; color: var(--text-dim); margin-bottom: .9rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line); }
.roster { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); }
.player-card { background: var(--ink-700); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; text-align: center; position: relative; transition: transform .15s, border-color .2s; }
.player-card:hover { transform: translateY(-3px); border-color: var(--brand); }
/* Bild-/Nummern-Bereich füllt die Karte komplett aus */
/* 2:3 = exakt das Seitenverhältnis der Spielerfotos -> ganzes Bild inkl. Logo, kein Crop */
.player-card__media { aspect-ratio: 2 / 3; position: relative; display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(160deg, var(--ink-650), var(--ink-800)); }
.player-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.player-card__num { font-size: 2.8rem; font-weight: 900; color: var(--brand-bright); line-height: 1; }
.player-card__info { padding: .6rem .5rem .8rem; }
.player-card__name { font-weight: 700; font-size: .95rem; line-height: 1.2; }
.player-card__no { color: var(--text-dim); font-size: .8rem; margin-top: .15rem; }
.player-card .cap { position: absolute; top: .55rem; right: .55rem; z-index: 2; background: var(--brand); color:#14130a; font-weight:900; font-size:.66rem; padding:.12rem .4rem; border-radius:5px; box-shadow: 0 2px 6px rgba(0,0,0,.4); }
.staff-row { display:flex; flex-wrap:wrap; gap:1rem; }
.staff-card { display:flex; align-items:center; gap:.7rem; background:var(--ink-700); border:1px solid var(--line); border-radius:var(--radius-sm); padding:.7rem 1rem; }
.staff-card b{ font-size:.95rem;} .staff-card small{ color:var(--text-dim); display:block;}
.staff-photo{ width:48px; height:48px; border-radius:50%; object-fit:cover; border:2px solid var(--line-strong); flex-shrink:0; }
.team-cover{ margin:0 0 2rem; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); }
.team-cover img{ width:100%; max-height:460px; object-fit:cover; display:block; }

/* ---- Sponsoren ------------------------------------------------------- */
.sponsor-tier { margin-bottom: 2.4rem; }
.sponsor-tier h3 { text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; color: var(--text-dim); margin-bottom: 1rem; }
.sponsor-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
.sponsor { background: #fff; border-radius: var(--radius-sm); padding: 1.2rem; display: grid; place-items: center; min-height: 120px; transition: transform .15s; }
.sponsor:hover { transform: translateY(-4px); }
.sponsor img { max-height: 80px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.sponsor--text { background: var(--ink-700); color: var(--text); text-align: center; font-weight: 700; }
.sponsor--premium { min-height: 150px; }
.sponsor--premium img { max-height: 110px; }

/* ---- Teaser-Reihen (Home) ------------------------------------------- */
.split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.6rem; }
.teamchips { display:flex; flex-wrap:wrap; gap:.6rem; }
.teamchip { display:inline-flex; align-items:center; gap:.5rem; background:var(--ink-700); border:1px solid var(--line); padding:.5rem .9rem; border-radius:999px; color:var(--text); font-weight:700; font-size:.9rem;}
.teamchip:hover { border-color: var(--brand); color:#fff; }

/* ---- Instagram (DSGVO Click-to-load) -------------------------------- */
.ig-embed { background: var(--ink-700); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; text-align: center; }
.ig-embed h3 { margin-bottom: .5rem; }
.ig-consent { display: grid; place-items: center; gap: .8rem; }

/* ---- Info-/Kontaktboxen --------------------------------------------- */
.infobox { background: var(--ink-700); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.prose { max-width: 760px; }
.prose p { margin: 1rem 0; color: var(--text); }
.prose h2 { margin: 1.8rem 0 .6rem; }
.dl-list { display: grid; gap: .6rem; }
.dl-item { display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: var(--ink-700); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1.1rem; }

/* ---- Footer ---------------------------------------------------------- */
.site-footer { margin-top: 3rem; border-top: 1px solid var(--line); background: var(--ink-850); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 1.8rem; padding: 2.6rem 0; }
.footer-brand p { color: var(--text-dim); margin-top: .6rem; font-size: .92rem; }
.footer-brand strong { color: var(--text); }
.footer-tagline { font-style: italic; }
.site-footer h4 { text-transform: uppercase; font-size: .82rem; letter-spacing: .06em; color: var(--text-dim); margin-bottom: .9rem; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { color: var(--text); font-size: .92rem; }
.footer-links a:hover { color: var(--brand-bright); }
.social { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.social a { background: var(--ink-700); border: 1px solid var(--line); padding: .45rem .9rem; border-radius: 999px; color: var(--text); font-weight: 700; font-size: .85rem; }
.social a:hover { border-color: var(--brand); color: var(--brand-bright); }
.footer-contact { color: var(--text-dim); font-size: .88rem; font-style: normal; line-height: 1.7; }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; flex-wrap: wrap; color: var(--text-dim); font-size: .82rem; }

/* ---- Cookie-Banner --------------------------------------------------- */
.cookie-banner { position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%); width: min(100% - 2rem, 720px);
  background: var(--ink-700); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow); z-index: 300; display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cookie-banner[hidden] { display: none; }   /* wichtig: überstimmt display:flex, damit "wegklicken" wirkt */
.cookie-banner p { font-size: .88rem; color: var(--text-dim); flex: 1 1 320px; }
.cookie-banner__btns { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ---- Breadcrumb / page header --------------------------------------- */
.page-head { padding: 2.4rem 0 1rem; }
.page-head h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; }
.breadcrumb { color: var(--text-dim); font-size: .82rem; margin-bottom: .4rem; }
.breadcrumb a { color: var(--text-dim); }

/* ---- Empty state ----------------------------------------------------- */
.empty { text-align: center; color: var(--text-dim); padding: 2.4rem; border: 1px dashed var(--line-strong); border-radius: var(--radius); }

/* ---- Responsive ------------------------------------------------------ */
@media (max-width: 920px) {
  .hero__grid, .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-hero { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .main-nav { position: fixed; inset: var(--header-h) 0 auto 0; background: var(--ink-850);
    border-bottom: 1px solid var(--line-strong); padding: 1rem; transform: translateY(-120%);
    transition: transform .26s ease; max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .main-nav.open { transform: translateY(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: .2rem; }
  .main-nav a { padding: .85rem 1rem; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: transparent; border: none; border-left: 2px solid var(--line-strong); border-radius: 0;
    margin: 0 0 .4rem .8rem; padding-left: .4rem; }
  .has-sub > a .caret { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gamecard__team img { width: 50px; height: 50px; }
  .gamecard__score { font-size: 1.9rem; }
  .footer-bottom .wrap { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
