/* ============================================================
   WM 2026 Tipp-Portal — gemeinsames Stylesheet
   Dunkles Sport-Design im Kutzschbach-Look: Dunkelgrün (#0E1A0E→#243F23)
   + Kutzschbach-Grün #83B735 als Akzent, Gold für Ratings
   ============================================================ */

:root {
  --bg: #0E1A0E;
  --bg-soft: #142314;
  --card: #1C311B;
  --card-hover: #264326;
  --border: #36522F;
  --text: #EAF2E6;
  --text-dim: #A8BAA0;
  --accent: #83B735;          /* Kutzschbach-Grün */
  --accent-soft: rgba(131, 183, 53, 0.14);
  --gold: #f4c542;
  --win: #83B735;
  --draw: #f4c542;
  --loss: #ef5350;
  --radius: 12px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ---------- Kopfbereich ---------- */

.hero {
  background: linear-gradient(135deg, #243F23 0%, #0E1A0E 65%);
  border-bottom: 2px solid var(--accent);
  padding: 40px 20px 32px;
  margin-bottom: 32px;
}

.hero-inner { max-width: 1080px; margin: 0 auto; }

.hero h1 {
  margin: 0 0 6px;
  font-size: 2.1rem;
  letter-spacing: 0.5px;
}

.hero .sub {
  color: var(--text-dim);
  margin: 0;
  font-size: 1.05rem;
}

.hero .meta-badges { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }

.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.badge.gold { background: rgba(244, 197, 66, 0.12); color: var(--gold); border-color: var(--gold); }
.badge.dim  { background: transparent; color: var(--text-dim); border-color: var(--border); }

.backlink {
  display: inline-block;
  margin: 18px 0 0;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.backlink:hover { text-decoration: underline; }

/* ---------- Sektionen & Karten ---------- */

h2 {
  font-size: 1.35rem;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

h2 .emoji { margin-right: 8px; }

h3 { font-size: 1.05rem; margin: 20px 0 10px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 16px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Steckbrief ---------- */

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.fact {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
}

.fact .label { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.6px; }
.fact .value { font-size: 1.1rem; font-weight: 700; margin-top: 2px; }

/* ---------- Stärken / Schwächen ---------- */

.pro-con ul { margin: 8px 0 0; padding-left: 0; list-style: none; }
.pro-con li { padding: 7px 0 7px 28px; position: relative; border-bottom: 1px dashed var(--border); }
.pro-con li:last-child { border-bottom: none; }

.pros li::before { content: "▲"; color: var(--win); position: absolute; left: 4px; font-size: 0.8rem; top: 10px; }
.cons li::before { content: "▼"; color: var(--loss); position: absolute; left: 4px; font-size: 0.8rem; top: 10px; }

.card.pros { border-left: 3px solid var(--win); }
.card.cons { border-left: 3px solid var(--loss); }

/* ---------- Tabellen ---------- */

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.95rem;
}

th, td { padding: 10px 14px; text-align: left; }

thead th {
  background: var(--bg-soft);
  color: var(--text-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid var(--border);
}

tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--card-hover); }

td.num { text-align: center; font-variant-numeric: tabular-nums; }

/* ---------- Spieler ---------- */

.player {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 12px;
}

.player .name { font-weight: 700; font-size: 1.02rem; }
.player .club { color: var(--accent); font-size: 0.88rem; font-weight: 600; }
.player .pos  { color: var(--text-dim); font-size: 0.85rem; margin-left: 8px; }
.player p { margin: 6px 0 0; color: var(--text-dim); font-size: 0.92rem; }

/* ---------- Formkurve ---------- */

.form-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.form-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
  color: #0E1A0E;
}

.form-pill.s { background: var(--win); }
.form-pill.u { background: var(--draw); }
.form-pill.n { background: var(--loss); }

.form-note { color: var(--text-dim); font-size: 0.88rem; margin-top: 8px; }

/* ---------- Sterne & Einschätzung ---------- */

.stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 3px; }
.stars .off { color: var(--border); }

.verdict {
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(244, 197, 66, 0.08), transparent 60%);
}

/* ---------- Tipp-Boxen ---------- */

.tip {
  border: 1px solid var(--accent);
  border-left: 5px solid var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
}

.tip .tip-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}

.tip .tip-main { font-size: 1.15rem; font-weight: 800; margin: 4px 0; }

.prob-bar {
  display: flex;
  height: 22px;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0E1A0E;
  margin-top: 8px;
}

.prob-bar .p1 { background: var(--win); display: flex; align-items: center; justify-content: center; }
.prob-bar .px { background: var(--draw); display: flex; align-items: center; justify-content: center; }
.prob-bar .p2 { background: var(--loss); display: flex; align-items: center; justify-content: center; }

/* ---------- Gruppenkarten (Index) ---------- */

.group-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.group-card h3 {
  margin: 0 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.group-card ol { margin: 0; padding-left: 22px; }
.group-card li { padding: 3px 0; }
.group-card a { color: var(--text); text-decoration: none; }
.group-card a:hover { color: var(--accent); text-decoration: underline; }
.group-card .fav { font-weight: 700; }
.group-card .fav::after { content: " ★"; color: var(--gold); }
.group-card .pick { margin-top: 10px; font-size: 0.85rem; color: var(--text-dim); }

/* ---------- Hinweis-Box ---------- */

.notice {
  border: 1px solid var(--gold);
  border-left: 5px solid var(--gold);
  background: rgba(244, 197, 66, 0.07);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.notice strong { color: var(--gold); }

/* ---------- Footer ---------- */

footer {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.85rem;
}

footer a { color: var(--accent); }

/* ---------- Tippspiel: Formulare ---------- */

input[type="text"], input[type="number"], input[type="password"], select {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 8px 10px;
  font-size: 0.95rem;
  font-family: inherit;
}

input[type="number"] { width: 64px; text-align: center; font-variant-numeric: tabular-nums; }
input:focus, select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }

button, .btn {
  background: var(--accent);
  color: #0E1A0E;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}
button:hover, .btn:hover { filter: brightness(1.1); }
button.sekundaer { background: var(--bg-soft); color: var(--text); border: 1px solid var(--border); }

.tipp-zeile {
  display: grid;
  grid-template-columns: 110px 1fr auto 1fr 150px;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.tipp-zeile:last-child { border-bottom: none; }
.tipp-zeile .heim { text-align: right; font-weight: 600; }
.tipp-zeile .gast { font-weight: 600; }
.tipp-zeile .eingabe { display: flex; gap: 6px; align-items: center; justify-content: center; }
.tipp-zeile .quoten-info { font-size: 0.78rem; color: var(--text-dim); text-align: right; font-variant-numeric: tabular-nums; }
.tipp-zeile .termin { font-size: 0.8rem; color: var(--text-dim); }

@media (max-width: 720px) {
  .tipp-zeile { grid-template-columns: 1fr auto 1fr; }
  .tipp-zeile .termin, .tipp-zeile .quoten-info { display: none; }
}

.bonus-zeile {
  display: grid;
  grid-template-columns: 70px 1fr 230px;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}
.bonus-zeile:last-child { border-bottom: none; }
.bonus-zeile select { width: 100%; }

.meldung { border-radius: var(--radius); padding: 12px 16px; margin: 14px 0; display: none; }
.meldung.ok { display: block; border: 1px solid var(--win); background: rgba(52, 208, 104, 0.1); }
.meldung.fehler { display: block; border: 1px solid var(--loss); background: rgba(239, 83, 80, 0.1); }

.tag {
  display: inline-block;
  padding: 1px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.tag.llm { color: #9b8cff; border-color: #9b8cff; }
.tag.nachgetragen { color: var(--draw); border-color: var(--draw); }

details.spieler-detail summary { cursor: pointer; font-weight: 700; padding: 6px 0; }
details.spieler-detail table { margin: 8px 0 16px; font-size: 0.88rem; }

/* ---------- Tippspiel: Layout-Klassen (statt Inline-Styles) ---------- */

.form-inline { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hf-select { margin: 2px 0; width: 100%; }
.ko-select { margin: 2px; }
hr.trenner { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.tag.verspaetet { color: var(--loss); border-color: var(--loss); }

/* Datengetriebene Balkenbreiten fuer .prob-bar (data-breite statt Inline-Style) */
.prob-bar [data-breite="0"] { width: 0%; }
.prob-bar [data-breite="1"] { width: 1%; }
.prob-bar [data-breite="2"] { width: 2%; }
.prob-bar [data-breite="3"] { width: 3%; }
.prob-bar [data-breite="4"] { width: 4%; }
.prob-bar [data-breite="5"] { width: 5%; }
.prob-bar [data-breite="6"] { width: 6%; }
.prob-bar [data-breite="7"] { width: 7%; }
.prob-bar [data-breite="8"] { width: 8%; }
.prob-bar [data-breite="9"] { width: 9%; }
.prob-bar [data-breite="10"] { width: 10%; }
.prob-bar [data-breite="11"] { width: 11%; }
.prob-bar [data-breite="12"] { width: 12%; }
.prob-bar [data-breite="13"] { width: 13%; }
.prob-bar [data-breite="14"] { width: 14%; }
.prob-bar [data-breite="15"] { width: 15%; }
.prob-bar [data-breite="16"] { width: 16%; }
.prob-bar [data-breite="17"] { width: 17%; }
.prob-bar [data-breite="18"] { width: 18%; }
.prob-bar [data-breite="19"] { width: 19%; }
.prob-bar [data-breite="20"] { width: 20%; }
.prob-bar [data-breite="21"] { width: 21%; }
.prob-bar [data-breite="22"] { width: 22%; }
.prob-bar [data-breite="23"] { width: 23%; }
.prob-bar [data-breite="24"] { width: 24%; }
.prob-bar [data-breite="25"] { width: 25%; }
.prob-bar [data-breite="26"] { width: 26%; }
.prob-bar [data-breite="27"] { width: 27%; }
.prob-bar [data-breite="28"] { width: 28%; }
.prob-bar [data-breite="29"] { width: 29%; }
.prob-bar [data-breite="30"] { width: 30%; }
.prob-bar [data-breite="31"] { width: 31%; }
.prob-bar [data-breite="32"] { width: 32%; }
.prob-bar [data-breite="33"] { width: 33%; }
.prob-bar [data-breite="34"] { width: 34%; }
.prob-bar [data-breite="35"] { width: 35%; }
.prob-bar [data-breite="36"] { width: 36%; }
.prob-bar [data-breite="37"] { width: 37%; }
.prob-bar [data-breite="38"] { width: 38%; }
.prob-bar [data-breite="39"] { width: 39%; }
.prob-bar [data-breite="40"] { width: 40%; }
.prob-bar [data-breite="41"] { width: 41%; }
.prob-bar [data-breite="42"] { width: 42%; }
.prob-bar [data-breite="43"] { width: 43%; }
.prob-bar [data-breite="44"] { width: 44%; }
.prob-bar [data-breite="45"] { width: 45%; }
.prob-bar [data-breite="46"] { width: 46%; }
.prob-bar [data-breite="47"] { width: 47%; }
.prob-bar [data-breite="48"] { width: 48%; }
.prob-bar [data-breite="49"] { width: 49%; }
.prob-bar [data-breite="50"] { width: 50%; }
.prob-bar [data-breite="51"] { width: 51%; }
.prob-bar [data-breite="52"] { width: 52%; }
.prob-bar [data-breite="53"] { width: 53%; }
.prob-bar [data-breite="54"] { width: 54%; }
.prob-bar [data-breite="55"] { width: 55%; }
.prob-bar [data-breite="56"] { width: 56%; }
.prob-bar [data-breite="57"] { width: 57%; }
.prob-bar [data-breite="58"] { width: 58%; }
.prob-bar [data-breite="59"] { width: 59%; }
.prob-bar [data-breite="60"] { width: 60%; }
.prob-bar [data-breite="61"] { width: 61%; }
.prob-bar [data-breite="62"] { width: 62%; }
.prob-bar [data-breite="63"] { width: 63%; }
.prob-bar [data-breite="64"] { width: 64%; }
.prob-bar [data-breite="65"] { width: 65%; }
.prob-bar [data-breite="66"] { width: 66%; }
.prob-bar [data-breite="67"] { width: 67%; }
.prob-bar [data-breite="68"] { width: 68%; }
.prob-bar [data-breite="69"] { width: 69%; }
.prob-bar [data-breite="70"] { width: 70%; }
.prob-bar [data-breite="71"] { width: 71%; }
.prob-bar [data-breite="72"] { width: 72%; }
.prob-bar [data-breite="73"] { width: 73%; }
.prob-bar [data-breite="74"] { width: 74%; }
.prob-bar [data-breite="75"] { width: 75%; }
.prob-bar [data-breite="76"] { width: 76%; }
.prob-bar [data-breite="77"] { width: 77%; }
.prob-bar [data-breite="78"] { width: 78%; }
.prob-bar [data-breite="79"] { width: 79%; }
.prob-bar [data-breite="80"] { width: 80%; }
.prob-bar [data-breite="81"] { width: 81%; }
.prob-bar [data-breite="82"] { width: 82%; }
.prob-bar [data-breite="83"] { width: 83%; }
.prob-bar [data-breite="84"] { width: 84%; }
.prob-bar [data-breite="85"] { width: 85%; }
.prob-bar [data-breite="86"] { width: 86%; }
.prob-bar [data-breite="87"] { width: 87%; }
.prob-bar [data-breite="88"] { width: 88%; }
.prob-bar [data-breite="89"] { width: 89%; }
.prob-bar [data-breite="90"] { width: 90%; }
.prob-bar [data-breite="91"] { width: 91%; }
.prob-bar [data-breite="92"] { width: 92%; }
.prob-bar [data-breite="93"] { width: 93%; }
.prob-bar [data-breite="94"] { width: 94%; }
.prob-bar [data-breite="95"] { width: 95%; }
.prob-bar [data-breite="96"] { width: 96%; }
.prob-bar [data-breite="97"] { width: 97%; }
.prob-bar [data-breite="98"] { width: 98%; }
.prob-bar [data-breite="99"] { width: 99%; }
.prob-bar [data-breite="100"] { width: 100%; }

/* ---------- Quotenblatt (Kicktipp-Optik) ---------- */

.odds-page {
  background: #ffffff;
  color: #111827;
  font-family: Arial, Helvetica, sans-serif;
}

.odds-wrap {
  max-width: 760px;
  margin: 0;
  padding: 7px 5px 20px;
  overflow-x: auto;   /* schmale Viewports: horizontal scrollen statt Überlappung */
}

.odds-tabs {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 9px;
  color: #222;
}

.odds-tabs a {
  color: inherit;
  text-decoration: none;
}

.tab-arrow,
.tab-active,
.tab-bonus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  border: 1px solid #d8d8d8;
  border-bottom: 0;
  background: #fff;
  font-size: 20px;
}

.tab-arrow {
  width: 55px;
  border-right: 0;
  font-size: 18px;
}

.tab-active {
  min-width: 107px;
  padding: 0 10px;
  border-left: 0;
  border-right: 0;
  font-size: 21px;
}

.tab-bonus {
  min-width: 82px;
  margin-left: 4px;
  background: #efefef;
  font-size: 20px;
}

.tab-disabled {
  color: #d6d6d6;
}

/* Voll-Navigation (Chip-Leiste) über alle Spieltage + K.o. + Bonus — wie kicktipp.de */
.tipp-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 9px;
  padding-bottom: 7px;
}
.tipp-nav .nav-label {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
  padding: 0 4px;
}
.tipp-nav a,
.tipp-nav .aktiv {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 7px 11px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #fff;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}
.tipp-nav a:hover { background: #f0f0f0; }
.tipp-nav .aktiv { background: #83B735; border-color: #83B735; color: #16270F; font-weight: 700; }
.tipp-nav .nav-bonus { background: #eef2f7; font-weight: 700; }
.tipp-nav .nav-bonus.aktiv { background: #83B735; color: #16270F; }
.tipp-nav .nav-portal { background: #243F23; border-color: #243F23; color: #fff; font-weight: 700; }
.tipp-nav .nav-portal:hover { background: #36522F; }

.ko-banner {
  display: flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 11px;
  background: #ffc85c;
  color: #8a4f00;
  padding: 0 18px;
  font-size: 14px;
}

.coupon {
  display: grid;
  border-top: 1px solid #e0e0e0;
}

/* Spalten: Zeit | Heim | Gast | Tipp-Eingabe | Fable 1/X/2 | Kicktipp 1/X/2
   Summe = 78+104+104+92 + 6×48 = 666px. min-width erzwingt horizontales Scrollen
   statt Überlappung, wenn der Viewport schmaler ist (.odds-wrap: overflow-x:auto). */
.coupon-row {
  display: grid;
  grid-template-columns: 78px 104px 104px 92px repeat(3, 48px) repeat(3, 48px);
  align-items: center;
  min-width: 666px;
  min-height: 50px;
  border-bottom: 1px solid #e0e0e0;
  column-gap: 0;
  font-size: 13px;
}

/* Kopfzeile über den Quoten-Blöcken: „Fable 5" vs. „Kicktipp" */
.coupon-head {
  display: grid;
  grid-template-columns: 378px 144px 144px;
  align-items: end;
  min-width: 666px;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  padding-bottom: 3px;
  border-bottom: 1px solid #e0e0e0;
}
.coupon-head .ch-fable { color: #5C8A1E; text-align: center; }
.coupon-head .ch-kick { color: #475569; text-align: center; }

/* Quotenblöcke: Fable 5 (grün) und Kicktipp (neutral), je 1/X/2 */
.coupon-row .odds.fable,
.coupon-row .odds.kick { width: 46px; min-height: 30px; font-size: 12px; margin: 0 1px; }
.odds.fable { border-color: #83B735; background: #F5F9EC; }
.odds.fable span { background: #E3EFC9; }
.coupon-row .odds.fable span,
.coupon-row .odds.kick span { width: 15px; font-size: 11px; }

/* Meine eigene errechnete Bewertung (Ergebnis-Tipp + Wahrscheinlichkeit) —
   steht VOR den Quoten; diese sind nur Zusatzinfo. */
.my-eval {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 98px;
  min-height: 38px;
  margin-right: 6px;
  border: 1px solid #83B735;
  border-radius: 5px;
  background: #F5F9EC;
  line-height: 1.1;
}
.my-eval .my-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .5px; color: #5C8A1E; }
.my-eval strong { font-size: 17px; color: #243F23; font-weight: 700; }
.my-eval em { font-size: 11px; font-style: normal; color: #4b5563; }
.my-eval.eval-empty { border-style: dashed; border-color: #c9c9c9; background: #fafafa; }

.eval-hinweis {
  margin: 0 0 8px;
  padding: 8px 12px;
  background: #F5F9EC;
  border-left: 4px solid #83B735;
  border-radius: 4px;
  font-size: 13px;
  color: #1f2937;
}
.eval-hinweis strong { color: #5C8A1E; }

/* Tipp-Kopf auf den Quotenschein-Seiten (Name + Speichern + Status) */
.tipp-kopf {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  padding: 10px 12px;
  background: #F5F9EC;
  border: 1px solid #83B735;
  border-radius: 6px;
  font-size: 15px;
  color: #1f2937;
}
.tipp-kopf input[type="text"],
.tipp-kopf input[type="password"] {
  height: 32px;
  padding: 0 8px;
  border: 1px solid #c9d2cc;
  border-radius: 4px;
  font-size: 15px;
  background: #fff;   /* heller Kicktipp-Bereich — globale Dark-Theme-Inputs überstimmen */
  color: #1f2937;
}
.tipp-kopf input[type="password"] { width: 140px; }
.tipp-kopf button {
  height: 34px;
  padding: 0 18px;
  border: none;
  border-radius: 4px;
  background: #83B735;
  color: #16270F;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.tipp-kopf button:hover { filter: brightness(1.08); }
.tipp-kopf button:disabled { opacity: .6; cursor: default; }
.tipp-status { font-size: 14px; }
.tipp-status.ok { color: #4E7A19; }
.tipp-status.fehler { color: #c0392b; }
.coupon-row.angepfiffen { opacity: .6; }
.coupon-row.angepfiffen .score-inputs input { background: #ececec; }

/* Bonus-Seite */
.bonus-liste { border-top: 1px solid #e0e0e0; }
.bonus-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
}
.bonus-frage { color: #1f2937; }
.bonus-frage em { color: #6b7280; font-size: 13px; }
.bonus-kuerzel {
  display: inline-block;
  min-width: 38px;
  margin-right: 8px;
  padding: 1px 7px;
  border-radius: 999px;
  background: #eef2f7;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.bonus-felder { display: flex; flex-direction: column; gap: 5px; }
.bonus-felder select {
  width: 100%;
  height: 32px;
  border: 1px solid #c9d2cc;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
}
@media (max-width: 720px) {
  .bonus-row { grid-template-columns: 1fr; }
}

.coupon-row.knockout-row {
  grid-template-columns: 128px 78px 78px 106px 43px repeat(3, 58px);
  min-height: 44px;
  font-size: 16px;
}

.coupon-row time {
  padding-left: 6px;
  font-size: 11px;
  line-height: 1.15;
  color: #444;
}

/* Teamnamen: in ihrer Spalte halten, lange Namen sauber kürzen statt überlappen */
.coupon-row .team {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 6px;
}

.score-inputs {
  display: grid;
  grid-template-columns: 38px 38px;
  gap: 5px;
  padding-right: 6px;
  justify-content: center;
}

.score-inputs input {
  width: 38px;
  height: 30px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #111827;
  font-size: 16px;
  text-align: center;
}

.odds {
  display: inline-flex;
  align-items: center;
  width: 67px;
  min-height: 31px;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  font-size: 16px;
}

.odds span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  align-self: stretch;
  background: #f0f0f0;
  font-weight: 400;
}

.odds strong {
  flex: 1;
  text-align: center;
  font-weight: 400;
}

.knockout-row .score-inputs {
  grid-template-columns: 49px 49px;
  gap: 6px;
  padding-right: 6px;
}

.knockout-row .score-inputs input {
  width: 49px;
  height: 27px;
}

.extra-time-note {
  color: #222;
  font-size: 16px;
}

.knockout-row .odds {
  width: 58px;
  min-height: 25px;
  font-size: 14px;
}

.knockout-row .odds span {
  width: 20px;
}

.odds-empty strong {
  min-width: 30px;
}

.coupon { min-width: 666px; }
.knockout-row { min-width: 0; }


/* ---------- Landingpage ---------- */
.lp-lead { font-size: 1.15rem; color: var(--text-dim); max-width: 720px; margin: 8px 0 0; }
.cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .cta-grid { grid-template-columns: 1fr; } }
a.cta-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  transition: transform .12s ease, border-color .12s ease;
}
a.cta-card:hover { transform: translateY(-3px); border-color: var(--accent); }
a.cta-card h3 { color: var(--accent); margin: 0 0 6px; font-size: 1.15rem; }
a.cta-card p { margin: 0 0 10px; color: var(--text-dim); font-size: .92rem; }
a.cta-card .cta-pfeil { color: var(--accent); font-weight: 800; }
.vs-zeile { font-size: 1.4rem; font-weight: 800; text-align: center; letter-spacing: .5px; margin: 4px 0; }
.regel-fakten .value { font-size: 1rem; font-weight: 700; }

.lp-llm-hinweis { margin-top: 24px; }
