:root {
  --page: #141514;
  --phone: #030403;
  --panel: #080908;
  --text: #f6f4f0;
  --muted: #bebbb4;
  --line: rgba(255, 255, 255, 0.18);
  --line-soft: rgba(255, 255, 255, 0.105);
  --paper: #f2efea;
  --paper-dim: #d8d3ca;
  --accent: #d8d2c7;
  --red: #d31527;
  --radius: 8px;
  --shadow-panel: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  --bottom-nav-height: 84px;
  --font-ui: "Inter", "Aptos", "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Barlow Condensed", Bahnschrift, "DIN Condensed", "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  --font-num: "Barlow Condensed", Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.075), transparent 32%),
    radial-gradient(ellipse at 50% 110%, rgba(255, 255, 255, 0.035), transparent 44%),
    linear-gradient(135deg, #171817, #070807 58%, #121312);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 430;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
  text-rendering: geometricPrecision;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 16px;
}

.phone {
  --bottom-nav-total: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0px));
  position: relative;
  width: min(100%, 390px);
  height: min(812px, calc(100vh - 32px));
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.075), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 22%),
    var(--phone);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.54),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.content {
  height: calc(100% - var(--bottom-nav-total));
  overflow: auto;
  padding: 12px 16px 18px;
  scrollbar-width: none;
}

.content::-webkit-scrollbar {
  display: none;
}

.topbar {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: start;
  min-height: 44px;
  margin-bottom: 7px;
}

.brand {
  grid-column: 2;
  text-align: center;
}

.brand h1 {
  margin: 0;
  color: #f6f3ee;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 640;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand span {
  display: block;
  margin-top: 2px;
  color: #c5c2bc;
  font-size: 12.5px;
  font-weight: 430;
  line-height: 1.1;
  letter-spacing: 0;
}

.bell-button {
  position: relative;
  grid-column: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #f8f6f0;
  padding: 0;
}

.notify-dot {
  position: absolute;
  top: 2px;
  right: 1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f11224;
  box-shadow: 0 0 0 2px var(--phone);
}

.screen-title {
  margin: 0 0 11px 4px;
  color: #f8f5f0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.155);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0)),
    var(--panel);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

.hero-field {
  position: relative;
  min-height: 176px;
  padding: 13px 14px 11px;
  isolation: isolate;
  overflow: hidden;
}

.hero-field::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 83% 13%, rgba(255, 255, 255, 0.86) 0 2px, rgba(255, 255, 255, 0.28) 3px 13px, transparent 31px),
    radial-gradient(circle at 91% 16%, rgba(255, 255, 255, 0.62) 0 2px, rgba(255, 255, 255, 0.18) 3px 10px, transparent 26px),
    repeating-radial-gradient(ellipse at 50% 123%, transparent 0 29px, rgba(255, 255, 255, 0.05) 29px 30px, transparent 30px 50px),
    radial-gradient(ellipse at 50% 118%, rgba(255, 255, 255, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(0, 0, 0, 0.48) 58%, rgba(0, 0, 0, 0.9)),
    linear-gradient(135deg, #232625, #050606);
  filter: saturate(0.6) contrast(1.04);
}

.hero-field::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 8%, rgba(255, 255, 255, 0.04), transparent 52%),
    radial-gradient(ellipse at 50% 124%, transparent 0 38%, rgba(255, 255, 255, 0.06) 38% 38.7%, transparent 39%),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.045) 42.2% 43%, transparent 43.3%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 24% 76%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent 48%, rgba(0, 0, 0, 0.5));
  opacity: 0.92;
}

.hero-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 21px;
  color: #ded8cc;
  font-family: var(--font-display);
  font-size: 13.2px;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker.live {
  color: var(--red);
  letter-spacing: 0;
}

.teams {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 12px;
  align-items: center;
  justify-items: center;
  margin: 10px 0 7px;
}

.teams.scoreline {
  grid-template-columns: 92px 1fr 92px;
}

.team-mark {
  position: relative;
  width: 78px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 0;
  clip-path: polygon(50% 3%, 91% 17%, 88% 69%, 50% 96%, 12% 69%, 9% 17%);
  background:
    linear-gradient(#f2efea, #f2efea),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 30%),
    #050706;
  box-shadow: 0 13px 20px rgba(0, 0, 0, 0.4);
}

.team-mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  clip-path: polygon(50% 3%, 91% 17%, 88% 69%, 50% 96%, 12% 69%, 9% 17%);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 0 16%, transparent 16% 42%, rgba(255, 255, 255, 0.07) 42% 53%, transparent 53%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), transparent 34%),
    #050706;
}

.team-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.78);
  transform: translateX(-50%);
}

.team-mark::after {
  top: 63px;
}

.team-mark span,
.score,
.match-name,
.news-hero h3 {
  font-family: var(--font-display);
}

.team-mark span {
  position: relative;
  z-index: 1;
  color: #fffdf7;
  font-size: 34px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 4px 9px rgba(0, 0, 0, 0.52);
}

.versus {
  display: grid;
  place-items: center;
  color: #dcd7ce;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 0;
}

.score {
  color: #f8f5ef;
  font-family: var(--font-num);
  font-size: 59px;
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.44);
  white-space: nowrap;
}

.match-name {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #f8f5ef;
  font-size: 23px;
  font-weight: 720;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
}

.match-meta {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: #eee8df;
  font-size: 12.5px;
  font-weight: 430;
  line-height: 1.2;
  text-align: center;
}

.match-meta span {
  color: #c9c5bd;
  padding: 0 6px;
}

.countdown-strip {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.88) 0 8px, transparent 8px),
    linear-gradient(180deg, #fbfaf5, #ded9cf);
  color: #080808;
  font-size: 18.5px;
  font-family: var(--font-display);
  font-weight: 730;
  letter-spacing: 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 84px;
  margin-top: 11px;
}

.quick-grid > div,
.menu-grid > div {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-left: 1px solid var(--line-soft);
  color: var(--text);
  font-size: 12px;
  font-weight: 520;
  line-height: 1.1;
  text-align: center;
}

.quick-grid > div:first-child,
.menu-grid > div:first-child {
  border-left: 0;
}

.quick-grid svg,
.menu-grid svg {
  color: var(--accent);
}

.section {
  margin-top: 11px;
  padding: 12px 13px 6px;
}

.section h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 14.5px;
  font-family: var(--font-display);
  font-weight: 730;
  letter-spacing: 0;
  text-transform: uppercase;
}

.row {
  min-height: 43px;
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  gap: 11px;
  align-items: center;
  border-top: 1px solid var(--line-soft);
  color: #f6f3ee;
  font-size: 15.4px;
  font-weight: 520;
  line-height: 1.15;
}

.row-button {
  width: 100%;
  padding: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  text-align: left;
}

.row:first-of-type {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.row svg {
  color: #f3f1ec;
}

.row small {
  color: #d8d3ca;
  text-align: right;
}

.arrow {
  color: #e3ddd3;
  font-size: 24px;
  font-weight: 360;
  justify-self: end;
}

.action {
  min-height: 48px;
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  align-items: center;
  margin-top: 11px;
  padding: 0 14px;
  color: var(--text);
  font-size: 18.2px;
  font-family: var(--font-display);
  font-weight: 690;
  letter-spacing: 0;
}

.action.bright {
  border-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(90deg, #050505 0 8px, transparent 8px),
    linear-gradient(115deg, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(180deg, #fffdfa, #ded9cf);
  color: #080808;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.action.bright .arrow {
  color: #080808;
}

.table-strip {
  min-height: 58px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 0 17px;
  color: #f5f2ed;
  font-size: 19px;
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: 0;
}

.table-strip svg,
.table-strip strong {
  color: var(--accent);
}

.news-hero {
  position: relative;
  min-height: 154px;
  padding: 14px;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #141615, #070807);
}

.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 13%, transparent 13% 29%, rgba(255, 255, 255, 0.045) 29% 37%, transparent 37%),
    radial-gradient(ellipse at 50% 116%, rgba(255, 255, 255, 0.09), transparent 44%);
  opacity: 0.66;
}

.news-hero > * {
  position: relative;
  z-index: 1;
}

.news-hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 670;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-hero h3 {
  margin: 20px 0 7px;
  color: #fbfaf7;
  font-size: 23px;
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: 0;
}

.news-hero p {
  max-width: 300px;
  margin: 0;
  color: #d7d2ca;
  font-size: 14px;
  font-weight: 430;
  line-height: 1.28;
}

.source-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.source-pills span,
.sheet-tags span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #f2efea;
  background: rgba(0, 0, 0, 0.22);
  font-size: 11px;
  font-weight: 580;
  letter-spacing: 0;
}

.feed-tabs {
  min-height: 43px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 10px;
}

.feed-tabs button {
  display: grid;
  place-items: center;
  border: 0;
  border-left: 1px solid var(--line-soft);
  color: #d6d1c8;
  background: transparent;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0;
}

.feed-tabs button:first-child {
  border-left: 0;
}

.feed-tabs button.active {
  background: var(--paper);
  color: #080808;
}

.news-list {
  padding-bottom: 6px;
}

.news-row {
  width: 100%;
  min-height: 70px;
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  gap: 10px;
  align-items: center;
  border: 0;
  border-top: 1px solid var(--line-soft);
  background: transparent;
  color: inherit;
  text-align: left;
}

.news-row:first-of-type {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.news-badge {
  width: 32px;
  min-height: 32px;
  display: grid;
  place-items: center;
  color: #f5f2ed;
  background: transparent;
}

.news-badge svg {
  width: 22px;
  height: 22px;
  color: var(--paper);
  stroke-width: 1.95;
}

.news-copy strong {
  display: block;
  margin-bottom: 5px;
  color: #f6f4ef;
  font-size: 15.2px;
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: 0;
}

.news-copy small {
  display: flex;
  flex-wrap: wrap;
  column-gap: 6px;
  row-gap: 2px;
  align-items: center;
  color: #bcb7ae;
  font-size: 11.2px;
  font-weight: 430;
  line-height: 1.1;
}

.hub-signal {
  min-height: 54px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  padding: 0 13px;
}

.hub-signal strong {
  display: block;
  color: #f6f4ef;
  font-size: 15.4px;
  font-weight: 650;
  line-height: 1.15;
}

.hub-signal span {
  display: block;
  margin-top: 3px;
  color: #bbb6ae;
  font-size: 12px;
  font-weight: 430;
  line-height: 1.2;
}

.back-link {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px 2px;
  border: 0;
  background: transparent;
  color: #d8d3ca;
  font-size: 12.5px;
  font-weight: 560;
  padding: 0;
}

.pk-video {
  margin-top: 4px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.12), transparent 28%),
    #050605;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  display: grid;
  gap: 3px;
  padding: 12px 13px 13px;
}

.video-caption span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 680;
  text-transform: uppercase;
}

.video-caption strong {
  color: #f8f5ef;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 720;
  line-height: 1.05;
}

.video-caption small {
  color: #bbb6ae;
  font-size: 12.5px;
  line-height: 1.25;
}

.pk-status {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 0 13px;
}

.pk-status svg {
  color: var(--paper);
}

.pk-status strong,
.point-row strong {
  display: block;
  color: #f6f4ef;
  font-size: 15px;
  font-weight: 660;
  line-height: 1.15;
}

.pk-status span,
.point-row small {
  display: block;
  margin-top: 3px;
  color: #bcb7ae;
  font-size: 12.2px;
  font-weight: 430;
  line-height: 1.28;
}

.pk-summary {
  margin-top: 10px;
  padding: 12px 13px;
}

.pk-summary strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 680;
  text-transform: uppercase;
}

.pk-summary p {
  margin: 7px 0 0;
  color: #f0ece5;
  font-size: 13.8px;
  font-weight: 430;
  line-height: 1.35;
}

.point-row {
  min-height: 68px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
}

.point-row:first-of-type {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.point-row > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #080808;
  background: var(--paper);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 760;
  line-height: 1;
}

.transcript-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
}

.transcript-row:first-of-type {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.transcript-row > span {
  color: var(--accent);
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.transcript-row strong {
  display: block;
  color: #f6f4ef;
  font-size: 14.2px;
  font-weight: 650;
  line-height: 1.15;
}

.transcript-row small {
  display: block;
  margin-top: 3px;
  color: #bcb7ae;
  font-size: 12px;
  font-weight: 430;
  line-height: 1.28;
}

.pk-link {
  text-decoration: none;
}

.lineup-match-card {
  margin-top: 4px;
  padding: 10px 13px 11px;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(255, 255, 255, 0.07), transparent 43%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    #080908;
}

.lineup-status {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}

.lineup-status span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 680;
  text-transform: uppercase;
}

.lineup-status strong {
  color: #f8f5ef;
  font-family: var(--font-num);
  font-size: 47px;
  font-weight: 790;
  line-height: 1.08;
}

.lineup-status small {
  color: #bdb8af;
  font-size: 12px;
  font-weight: 430;
}

.lineup-teamline {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  text-align: center;
}

.lineup-teamline .team-mark {
  width: 46px;
  height: 48px;
}

.lineup-teamline .team-mark span {
  font-size: 20px;
}

.lineup-teamline .team-mark::after {
  top: 36px;
  width: 17px;
}

.lineup-teamline strong {
  color: #f8f5ef;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 730;
  line-height: 1.05;
}

.lineup-panel {
  margin-top: 11px;
}

.lineup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-soft);
}

.lineup-head span {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 12.2px;
  font-weight: 730;
  text-transform: uppercase;
}

.lineup-head strong {
  display: block;
  margin-top: 2px;
  color: #f8f5ef;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 740;
  line-height: 1.05;
}

.lineup-head em {
  min-width: 58px;
  min-height: 29px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #080808;
  background: var(--paper);
  font-family: var(--font-num);
  font-size: 18px;
  font-style: normal;
  font-weight: 760;
}

.pitch {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 10px 11px 11px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(238, 246, 235, 0.2) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 50% -10px, transparent 0 66px, rgba(238, 246, 235, 0.2) 67px 68px, transparent 69px),
    radial-gradient(circle at 50% calc(100% - 48px), rgba(238, 246, 235, 0.58) 0 1.4px, transparent 2.4px),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.055), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%, rgba(0, 0, 0, 0.2)),
    linear-gradient(135deg, #183923 0%, #0d2a1a 55%, #06160f 100%);
  box-shadow:
    inset 0 18px 42px rgba(255, 255, 255, 0.03),
    inset 0 -20px 36px rgba(0, 0, 0, 0.26);
}

.pitch::before,
.pitch::after {
  content: "";
  position: absolute;
  bottom: -1px;
  border: 1px solid rgba(238, 246, 235, 0.18);
  border-bottom: 0;
  pointer-events: none;
}

.pitch::before {
  left: 20%;
  right: 20%;
  height: 56px;
}

.pitch::after {
  left: 37%;
  right: 37%;
  height: 22px;
}

.pitch.compact {
  gap: 4px;
  padding: 10px 9px 11px;
}

.formation-row {
  position: relative;
  z-index: 1;
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 5px;
}

.formation-row.count-1 {
  grid-template-columns: minmax(62px, 80px);
}

.formation-row.count-2 {
  grid-template-columns: repeat(2, minmax(64px, 82px));
}

.formation-row.count-4 {
  grid-template-columns: repeat(4, minmax(56px, 74px));
}

.kit-card {
  width: 100%;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 2px;
}

.kit-wrap,
.mini-kit-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
  overflow: visible;
}

.kit-shirt {
  position: relative;
  width: 49px;
  height: 54px;
  display: grid;
  place-items: center;
  clip-path: polygon(18% 0, 34% 0, 41% 10%, 59% 10%, 66% 0, 82% 0, 100% 19%, 88% 36%, 80% 30%, 80% 100%, 20% 100%, 20% 30%, 12% 36%, 0 19%);
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.22))
    drop-shadow(0 10px 11px rgba(0, 0, 0, 0.42));
}

.kit-shirt::before {
  content: "";
  position: absolute;
  inset: 3px 16px auto;
  height: 8px;
  border-radius: 0 0 999px 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.48);
}

.kit-shirt::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(142deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 59% 63%, transparent 64%),
    radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.1), transparent 58%);
  pointer-events: none;
}

.kit-shirt.sturm {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0 2px, transparent 2px 18%, rgba(255, 255, 255, 0.11) 18% 21%, transparent 21% 79%, rgba(255, 255, 255, 0.09) 79% 82%, transparent 82% calc(100% - 2px), rgba(255, 255, 255, 0.7) calc(100% - 2px)),
    linear-gradient(90deg, #040504 0 50%, #1a1b1c 50% 100%),
    linear-gradient(180deg, transparent 0 68%, rgba(255, 255, 255, 0.055) 68% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 10px),
    linear-gradient(180deg, #222420 0%, #080908 58%, #020302 100%);
}

.kit-shirt.lustenau {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0 2px, transparent 2px 22%, rgba(255, 255, 255, 0.26) 22% 25%, transparent 25% 75%, rgba(255, 255, 255, 0.22) 75% 78%, transparent 78% calc(100% - 2px), rgba(255, 255, 255, 0.78) calc(100% - 2px)),
    linear-gradient(90deg, #054a27 0 50%, #0b733d 50% 100%),
    linear-gradient(180deg, transparent 0 68%, rgba(255, 255, 255, 0.1) 68% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 10px),
    linear-gradient(180deg, #108449 0%, #06592f 58%, #02351d 100%);
}

.kit-shirt.sturm-gk,
.mini-shirt.sturm-gk {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0 2px, transparent 2px 19%, rgba(255, 255, 255, 0.2) 19% 22%, transparent 22% 78%, rgba(255, 255, 255, 0.18) 78% 81%, transparent 81% calc(100% - 2px), rgba(255, 255, 255, 0.8) calc(100% - 2px)),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.22), transparent 38%),
    linear-gradient(180deg, #19a35c 0%, #087643 58%, #044425 100%);
}

.kit-shirt.lustenau-gk,
.mini-shirt.lustenau-gk,
.kit-shirt.rapid-gk,
.mini-shirt.rapid-gk,
.kit-shirt.austria-wien-gk,
.mini-shirt.austria-wien-gk {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0 2px, transparent 2px 20%, rgba(0, 0, 0, 0.08) 20% 23%, transparent 23% 77%, rgba(0, 0, 0, 0.08) 77% 80%, transparent 80% calc(100% - 2px), rgba(255, 255, 255, 0.58) calc(100% - 2px)),
    radial-gradient(circle at 50% 21%, rgba(255, 255, 255, 0.32), transparent 36%),
    linear-gradient(180deg, #ffb23c 0%, #f5821f 58%, #b85112 100%);
  color: #111111;
}

.kit-shirt.lask,
.mini-shirt.lask {
  background:
    linear-gradient(90deg, #111111 0 16%, transparent 16% 45%, #e46f9d 45% 52%, transparent 52% 84%, #111111 84%),
    linear-gradient(180deg, #ffffff 0%, #f2f3f1 58%, #dfe2dc 100%);
  color: #111111;
}

.kit-shirt.lask-gk,
.mini-shirt.lask-gk {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0 2px, transparent 2px 20%, rgba(255, 255, 255, 0.2) 20% 23%, transparent 23% 77%, rgba(255, 255, 255, 0.2) 77% 80%, transparent 80% calc(100% - 2px), rgba(255, 255, 255, 0.62) calc(100% - 2px)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.3), transparent 35%),
    linear-gradient(180deg, #ff93bf 0%, #e46f9d 58%, #b8376b 100%);
  color: #111111;
}

.kit-shirt.rapid,
.mini-shirt.rapid {
  background:
    linear-gradient(90deg, #087b3f 0 18%, transparent 18% 46%, rgba(8, 123, 63, 0.22) 46% 54%, transparent 54% 82%, #087b3f 82%),
    linear-gradient(180deg, #ffffff 0%, #f4faf6 60%, #e3efe7 100%);
  color: #087b3f;
}

.kit-shirt.austria-wien,
.mini-shirt.austria-wien {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 2px, transparent 2px 22%, rgba(255, 255, 255, 0.18) 22% 25%, transparent 25% 75%, rgba(255, 255, 255, 0.15) 75% 78%, transparent 78% calc(100% - 2px), rgba(255, 255, 255, 0.72) calc(100% - 2px)),
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.2), transparent 38%),
    linear-gradient(180deg, #6f37a0 0%, #4a1970 60%, #2f0c48 100%);
}

.kit-shirt.salzburg,
.mini-shirt.salzburg {
  background:
    linear-gradient(110deg, #c8102e 0 48%, #ffffff 48% 56%, #163b78 56% 100%),
    linear-gradient(180deg, #d91934 0%, #9b0e24 100%);
}

.kit-shirt.salzburg-gk,
.mini-shirt.salzburg-gk {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0 2px, transparent 2px 22%, rgba(0, 0, 0, 0.08) 22% 25%, transparent 25% 75%, rgba(0, 0, 0, 0.08) 75% 78%, transparent 78% calc(100% - 2px), rgba(0, 0, 0, 0.18) calc(100% - 2px)),
    linear-gradient(180deg, #f7f7f2 0%, #e6e4dc 60%, #c8c6bd 100%);
  color: #141414;
}

.kit-shirt.hartberg,
.mini-shirt.hartberg,
.kit-shirt.fac,
.mini-shirt.fac {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 2px, transparent 2px 22%, rgba(255, 255, 255, 0.18) 22% 25%, transparent 25% 75%, rgba(255, 255, 255, 0.15) 75% 78%, transparent 78% calc(100% - 2px), rgba(255, 255, 255, 0.72) calc(100% - 2px)),
    linear-gradient(180deg, #226ac5 0%, #124a94 62%, #082b5f 100%);
}

.kit-shirt.gak,
.mini-shirt.gak,
.kit-shirt.admira,
.mini-shirt.admira,
.kit-shirt.kapfenberg,
.mini-shirt.kapfenberg {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 2px, transparent 2px 22%, rgba(255, 255, 255, 0.18) 22% 25%, transparent 25% 75%, rgba(255, 255, 255, 0.15) 75% 78%, transparent 78% calc(100% - 2px), rgba(255, 255, 255, 0.72) calc(100% - 2px)),
    linear-gradient(180deg, #d71920 0%, #9d1018 62%, #5f070d 100%);
}

.kit-shirt.wsg,
.mini-shirt.wsg {
  background:
    linear-gradient(105deg, #168653 0 48%, #ffffff 48% 54%, #1d5f9e 54% 100%),
    linear-gradient(180deg, #168653 0%, #0c4f34 100%);
}

.kit-shirt.wac,
.mini-shirt.wac {
  background:
    linear-gradient(90deg, #111111 0 50%, #d71920 50% 100%),
    linear-gradient(180deg, #282828 0%, #090909 100%);
}

.kit-shirt.ried,
.mini-shirt.ried,
.kit-shirt.lafnitz,
.mini-shirt.lafnitz {
  background:
    linear-gradient(90deg, #15813b 0 50%, #111111 50% 100%),
    linear-gradient(180deg, #189346 0%, #064c25 100%);
}

.kit-shirt.altach,
.mini-shirt.altach {
  background:
    linear-gradient(90deg, #111111 0 50%, #f4c430 50% 100%),
    linear-gradient(180deg, #232323 0%, #0a0a0a 100%);
}

.kit-shirt.stpoelten,
.mini-shirt.stpoelten,
.kit-shirt.vienna,
.mini-shirt.vienna {
  background:
    linear-gradient(90deg, #173a7a 0 50%, #f4c430 50% 100%),
    linear-gradient(180deg, #214f99 0%, #0e2f69 100%);
}

.kit-shirt.fenerbahce,
.mini-shirt.fenerbahce {
  background:
    linear-gradient(90deg, #f5cf16 0 50%, #113a78 50% 100%),
    linear-gradient(180deg, #f5cf16 0%, #bf9906 100%);
}

.kit-shirt.hearts,
.mini-shirt.hearts {
  background:
    linear-gradient(180deg, #7a1230 0%, #4c0c1e 62%, #2b0510 100%);
}

.kit-shirt.seekirchen,
.mini-shirt.seekirchen {
  background:
    linear-gradient(180deg, #234f9f 0%, #102a63 62%, #071a42 100%);
}

.kit-shirt.voitsberg,
.mini-shirt.voitsberg,
.kit-shirt.neutral,
.mini-shirt.neutral {
  background:
    linear-gradient(90deg, #111111 0 50%, #434a55 50% 100%),
    linear-gradient(180deg, #343941 0%, #111318 100%);
}

.kit-shirt.hartberg-gk,
.mini-shirt.hartberg-gk,
.kit-shirt.wsg-gk,
.mini-shirt.wsg-gk,
.kit-shirt.wac-gk,
.mini-shirt.wac-gk,
.kit-shirt.ried-gk,
.mini-shirt.ried-gk,
.kit-shirt.altach-gk,
.mini-shirt.altach-gk,
.kit-shirt.admira-gk,
.mini-shirt.admira-gk,
.kit-shirt.stpoelten-gk,
.mini-shirt.stpoelten-gk,
.kit-shirt.vienna-gk,
.mini-shirt.vienna-gk,
.kit-shirt.kapfenberg-gk,
.mini-shirt.kapfenberg-gk,
.kit-shirt.fac-gk,
.mini-shirt.fac-gk,
.kit-shirt.lafnitz-gk,
.mini-shirt.lafnitz-gk,
.kit-shirt.fenerbahce-gk,
.mini-shirt.fenerbahce-gk,
.kit-shirt.hearts-gk,
.mini-shirt.hearts-gk,
.kit-shirt.seekirchen-gk,
.mini-shirt.seekirchen-gk,
.kit-shirt.voitsberg-gk,
.mini-shirt.voitsberg-gk,
.kit-shirt.keeper,
.mini-shirt.keeper {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0 2px, transparent 2px 20%, rgba(255, 255, 255, 0.18) 20% 23%, transparent 23% 77%, rgba(255, 255, 255, 0.18) 77% 80%, transparent 80% calc(100% - 2px), rgba(255, 255, 255, 0.58) calc(100% - 2px)),
    radial-gradient(circle at 50% 21%, rgba(255, 255, 255, 0.3), transparent 36%),
    linear-gradient(180deg, #1dd1c1 0%, #0d8e84 58%, #07514b 100%);
}

.kit-shirt.lask .kit-number,
.kit-shirt.lask i,
.kit-shirt.lask-gk .kit-number,
.kit-shirt.lask-gk i,
.kit-shirt.lustenau-gk .kit-number,
.kit-shirt.lustenau-gk i,
.kit-shirt.rapid .kit-number,
.kit-shirt.rapid i,
.kit-shirt.rapid-gk .kit-number,
.kit-shirt.rapid-gk i,
.kit-shirt.austria-wien-gk .kit-number,
.kit-shirt.austria-wien-gk i,
.kit-shirt.salzburg-gk .kit-number,
.kit-shirt.salzburg-gk i {
  color: #111111;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.55);
}

.kit-shirt.lask::before,
.kit-shirt.rapid::before,
.kit-shirt.lask-gk::before,
.kit-shirt.lustenau-gk::before,
.kit-shirt.rapid-gk::before,
.kit-shirt.austria-wien-gk::before,
.kit-shirt.salzburg-gk::before {
  background: rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
}

.kit-shirt i {
  position: absolute;
  z-index: 2;
  max-width: 41px;
  color: #f8f5ef;
  font-family: var(--font-display);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.82);
}

.kit-shirt i {
  top: 6px;
  font-size: 6.3px;
  font-style: normal;
  font-weight: 730;
  letter-spacing: 1.7px;
}

.kit-number {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  color: #f8f5ef;
  font-family: var(--font-num);
  font-size: 25px;
  font-weight: 820;
  line-height: 0.9;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.72);
}

.kit-shirt.sturm .kit-number {
  background: transparent;
}

.kit-shirt.lustenau::before {
  background: rgba(255, 255, 255, 0.28);
}

.kit-shirt.lustenau .kit-number,
.kit-shirt.lustenau i {
  color: #fffdf7;
}

.kit-card strong {
  max-width: 100%;
  color: #f6f4ef;
  font-size: 9.6px;
  font-weight: 780;
  line-height: 1.02;
  text-align: center;
  overflow-wrap: anywhere;
}

.event-badges {
  position: absolute;
  z-index: 6;
  top: -5px;
  right: -8px;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  pointer-events: none;
}

.event-badges.empty {
  display: none;
}

.event-badge {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border: 2px solid #06120d;
  border-radius: 999px;
  color: #f6f4ef;
  background: #0a0b0a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 4px 9px rgba(0, 0, 0, 0.38);
}

.event-badge + .event-badge {
  margin-left: -5px;
}

.event-badge svg {
  width: 8px;
  height: 8px;
  stroke-width: 2.3;
}

.event-badge.goal {
  color: #090909;
  background: #f7f4ee;
  border-color: rgba(255, 255, 255, 0.82);
}

.event-badge.sub {
  color: #d5b063;
  background: rgba(10, 11, 11, 0.82);
  border-color: rgba(213, 176, 99, 0.46);
}

.event-badge.card::before {
  content: "";
  width: 6px;
  height: 9px;
  border-radius: 1px;
  transform: rotate(-7deg);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18), 0 2px 4px rgba(0, 0, 0, 0.28);
}

.event-badge.card.yellow::before {
  background: linear-gradient(180deg, #ffe46d, #d2a921);
}

.event-badge.card.red::before {
  background: linear-gradient(180deg, #e42135, #95101b);
}

.kit-card.compact .kit-shirt {
  width: 43px;
  height: 47px;
}

.kit-card.compact .kit-number {
  font-size: 21px;
}

.kit-card.compact .kit-shirt i {
  top: 5px;
  font-size: 5.6px;
  letter-spacing: 1.1px;
}

.kit-card.compact strong {
  font-size: 8.8px;
  line-height: 1.02;
}

.kit-card.compact .event-badges {
  top: -4px;
  right: -7px;
  min-height: 0;
}

.kit-card.compact .event-badge {
  width: 13px;
  height: 13px;
}

.kit-card.compact .event-badge svg {
  width: 8px;
  height: 8px;
}

.kit-card.compact .event-badge.card::before {
  width: 5px;
  height: 8px;
}

.bench-section {
  padding-bottom: 13px;
}

.bench-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 11px;
  row-gap: 9px;
}

.bench-player {
  min-width: 0;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 8px;
  align-items: center;
}

.mini-kit-wrap {
  width: 45px;
  justify-items: start;
}

.mini-shirt {
  width: 29px;
  height: 26px;
  display: grid;
  place-items: center;
  clip-path: polygon(18% 0, 34% 0, 41% 10%, 59% 10%, 66% 0, 82% 0, 100% 19%, 88% 36%, 80% 30%, 80% 100%, 20% 100%, 20% 30%, 12% 36%, 0 19%);
  color: #f8f5ef;
  font-family: var(--font-num);
  font-size: 13.4px;
  font-weight: 780;
}

.mini-number {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  line-height: 1;
}

.mini-shirt.sturm {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0 2px, transparent 2px 20%, rgba(255, 255, 255, 0.11) 20% 23%, transparent 23% 77%, rgba(255, 255, 255, 0.09) 77% 80%, transparent 80% calc(100% - 2px), rgba(255, 255, 255, 0.7) calc(100% - 2px)),
    linear-gradient(90deg, #040504 0 50%, #1a1b1c 50% 100%),
    linear-gradient(180deg, transparent 0 68%, rgba(255, 255, 255, 0.055) 68% 100%),
    linear-gradient(180deg, #222420 0%, #080908 64%, #020302 100%);
}

.mini-shirt.lustenau {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0 2px, transparent 2px 22%, rgba(255, 255, 255, 0.26) 22% 25%, transparent 25% 75%, rgba(255, 255, 255, 0.22) 75% 78%, transparent 78% calc(100% - 2px), rgba(255, 255, 255, 0.78) calc(100% - 2px)),
    linear-gradient(90deg, #054a27 0 50%, #0b733d 50% 100%),
    linear-gradient(180deg, #108449 0%, #06592f 64%, #02351d 100%);
  color: #fffdf7;
}

.bench-player strong {
  display: block;
  color: #f1eee8;
  font-size: 12.4px;
  font-weight: 760;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.mini-kit-wrap .event-badges {
  top: -5px;
  right: 7px;
}

.mini-kit-wrap .event-badge {
  width: 12px;
  height: 12px;
  border-width: 1.5px;
}

.mini-kit-wrap .event-badge svg {
  width: 7px;
  height: 7px;
}

.profile-card {
  min-height: 96px;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 11px;
  align-items: center;
  padding: 11px 13px;
}

.profile-mark {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 16%, transparent 16% 40%, rgba(255, 255, 255, 0.08) 40% 52%, transparent 52%),
    #080908;
  color: #f7f5f0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 720;
}

.profile-card h3 {
  margin: 0 0 4px;
  color: #f8f5ef;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
}

.profile-card p {
  margin: 0;
  color: #bbb6ae;
  font-size: 11.7px;
  font-weight: 430;
  line-height: 1.25;
}

.profile-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.profile-button {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 10px;
  color: #f2efea;
  background: rgba(255, 255, 255, 0.04);
  font-size: 11.2px;
  font-weight: 600;
  text-decoration: none;
}

.profile-button.primary {
  border-color: rgba(255, 255, 255, 0.62);
  background: var(--paper);
  color: #080808;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 64px;
  margin-top: 8px;
}

.menu-section {
  margin-top: 8px;
  padding: 8px 13px 3px;
}

.menu-section .row {
  min-height: 34px;
  font-size: 13.8px;
}

.menu-section h3 {
  margin-bottom: 5px;
  font-size: 12.5px;
}

.bottom-nav {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--bottom-nav-total);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background:
    linear-gradient(180deg, #fffdfa, #ede8df);
  color: #090909;
  box-shadow: 0 -18px 34px rgba(0, 0, 0, 0.24);
}

.nav-item {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 11.8px;
  font-weight: 560;
  line-height: 1;
}

.nav-item.active::before {
  content: "";
  position: absolute;
  left: 21px;
  right: 21px;
  top: 0;
  height: 4px;
  border-radius: 0 0 2px 2px;
  background: #080808;
}

.nav-item.active svg {
  stroke-width: 2.2;
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: end center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.58);
  z-index: 10;
}

.preview-sheet {
  width: min(100%, 390px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px 16px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    #090a09;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.52);
  padding: 10px 16px 16px;
}

.sheet-handle {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  margin: 0 auto 14px;
  background: rgba(255, 255, 255, 0.36);
}

.sheet-meta {
  display: flex;
  justify-content: space-between;
  color: var(--accent);
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 670;
  letter-spacing: 0;
  text-transform: uppercase;
}

.preview-sheet h2 {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: 0;
}

.preview-sheet p {
  margin: 0;
  color: #d4cec5;
  font-size: 14px;
  font-weight: 430;
  line-height: 1.35;
}

.sheet-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 14px 0;
}

.primary-link,
.ghost-link {
  min-height: 42px;
  display: grid;
  place-items: center;
  width: 100%;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 650;
}

.primary-link {
  background: var(--paper);
  color: #080808;
}

.ghost-link {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #f2efea;
}

body {
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 255, 255, 0.105), transparent 30%),
    radial-gradient(ellipse at 50% 112%, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(145deg, #121312 0%, #050605 52%, #101110 100%);
}

.phone {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), transparent 145px),
    radial-gradient(ellipse at 50% -8%, rgba(255, 255, 255, 0.08), transparent 34%),
    #030403;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.64),
    0 0 0 1px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.04) 12% 13%, transparent 13% 50%, rgba(255, 255, 255, 0.028) 50% 51%, transparent 51%),
    radial-gradient(ellipse at 50% 0, rgba(255, 255, 255, 0.055), transparent 44%);
  opacity: 0.62;
}

.content {
  position: relative;
  z-index: 1;
  padding: 14px 16px 20px;
}

.topbar {
  min-height: 50px;
  margin-bottom: 10px;
  align-items: center;
}

.topbar::before {
  content: "ST";
  grid-column: 1;
  width: 28px;
  height: 30px;
  display: grid;
  place-items: center;
  justify-self: start;
  clip-path: polygon(50% 3%, 90% 17%, 86% 70%, 50% 96%, 14% 70%, 10% 17%);
  color: #f8f7f3;
  background: linear-gradient(90deg, #050605 0 50%, #191a19 50% 100%);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 820;
  line-height: 1;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.86);
}

.brand h1 {
  font-size: 22px;
  font-weight: 760;
}

.brand span {
  color: #d4d0c8;
  font-size: 12px;
  font-weight: 520;
}

.bell-button {
  color: #fbfaf6;
}

.screen-title {
  margin: 0 0 12px 1px;
  font-size: 33px;
  font-weight: 820;
  line-height: 0.96;
}

.panel {
  border-color: rgba(255, 255, 255, 0.17);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.018) 46%, rgba(0, 0, 0, 0.12)),
    #080908;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.hero-field {
  min-height: 184px;
  padding: 14px 14px 12px;
}

.hero-field::before {
  background:
    radial-gradient(circle at 78% 11%, rgba(255, 255, 255, 0.95) 0 1.5px, rgba(255, 255, 255, 0.24) 2px 16px, transparent 34px),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.72) 0 1.4px, rgba(255, 255, 255, 0.18) 2px 12px, transparent 30px),
    repeating-radial-gradient(ellipse at 50% 124%, transparent 0 28px, rgba(255, 255, 255, 0.055) 28px 29px, transparent 29px 48px),
    radial-gradient(ellipse at 50% 118%, rgba(255, 255, 255, 0.115), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(0, 0, 0, 0.54) 58%, rgba(0, 0, 0, 0.94)),
    linear-gradient(135deg, #222423, #050606 62%, #111211);
  filter: saturate(0.35) contrast(1.12);
}

.hero-field::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 26% 74%, rgba(0, 0, 0, 0.48)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent 44%, rgba(0, 0, 0, 0.58));
  opacity: 1;
}

.hero-kicker,
.section h3,
.news-hero-head,
.lineup-status span,
.lineup-head span,
.video-caption span,
.pk-summary strong,
.sheet-meta {
  color: #e5e1da;
  font-weight: 780;
}

.team-mark {
  width: 76px;
  height: 78px;
  background:
    linear-gradient(#f7f5f0, #f7f5f0),
    #050706;
  box-shadow:
    0 14px 20px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.team-mark::before {
  inset: 3px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 16%, transparent 16% 49%, rgba(255, 255, 255, 0.06) 49% 52%, transparent 52%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), transparent 35%),
    #050706;
}

.team-mark span {
  font-size: 33px;
  font-weight: 820;
}

.match-name {
  font-size: 23.5px;
  font-weight: 780;
}

.match-meta {
  color: #d8d4cc;
  font-size: 12.3px;
}

.countdown-strip {
  min-height: 46px;
  border-top-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(90deg, #050505 0 8px, transparent 8px),
    linear-gradient(180deg, #f7f5f0, #e4e0d8);
  font-size: 18.8px;
  font-weight: 800;
}

.quick-grid {
  min-height: 86px;
  margin-top: 10px;
}

.quick-grid > div,
.menu-grid > div {
  gap: 7px;
  color: #f2f0eb;
  font-size: 11.8px;
  font-weight: 620;
}

.quick-grid svg,
.menu-grid svg,
.row svg,
.pk-status svg,
.table-strip svg {
  color: #f5f3ee;
}

.section {
  margin-top: 10px;
  padding: 12px 13px 7px;
}

.section h3 {
  margin-bottom: 9px;
  font-size: 14px;
}

.row {
  min-height: 46px;
  grid-template-columns: 32px 1fr 20px;
  gap: 10px;
  color: #f7f5f0;
  font-size: 15px;
  font-weight: 590;
}

.row:first-of-type,
.news-row:first-of-type,
.point-row:first-of-type,
.transcript-row:first-of-type {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.action {
  min-height: 50px;
  grid-template-columns: 46px 1fr 24px;
  font-size: 18.5px;
  font-weight: 780;
}

.action.bright,
.feed-tabs button.active,
.profile-button.primary,
.primary-link {
  background: #f6f4ef;
  color: #060706;
}

.action.bright {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.news-hero {
  min-height: 168px;
  padding: 15px;
  background:
    linear-gradient(90deg, #f6f4ef 0 5px, transparent 5px),
    radial-gradient(circle at 82% 13%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 34%),
    linear-gradient(180deg, #161817, #070807);
}

.news-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 14%, transparent 14% 31%, rgba(255, 255, 255, 0.04) 31% 39%, transparent 39%),
    radial-gradient(ellipse at 50% 116%, rgba(255, 255, 255, 0.09), transparent 44%);
  opacity: 0.52;
}

.news-hero h3 {
  margin-top: 22px;
  font-size: 26px;
  font-weight: 820;
}

.news-hero p {
  color: #d8d4cc;
  font-size: 14.2px;
}

.source-pills span,
.sheet-tags span {
  min-height: 25px;
  border-radius: 6px;
  color: #f5f3ee;
  background: rgba(255, 255, 255, 0.045);
}

.feed-tabs {
  min-height: 45px;
  gap: 3px;
  padding: 3px;
}

.feed-tabs button {
  border-left: 0;
  border-radius: 5px;
  font-size: 11.6px;
  font-weight: 650;
}

.news-row {
  min-height: 76px;
  grid-template-columns: 38px 1fr 18px;
  gap: 11px;
}

.news-badge {
  width: 34px;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(255, 255, 255, 0.03);
}

.news-copy strong {
  font-size: 15.6px;
  font-weight: 720;
}

.news-copy small {
  color: #aaa59d;
  font-size: 11px;
  font-weight: 520;
}

.hub-signal,
.pk-status,
.table-strip {
  border-color: rgba(255, 255, 255, 0.15);
}

.lineup-match-card {
  background:
    radial-gradient(ellipse at 50% 112%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 46%),
    #080908;
}

.lineup-status strong {
  font-size: 50px;
  font-weight: 840;
}

.lineup-teamline strong,
.lineup-head strong,
.video-caption strong {
  font-weight: 800;
}

.lineup-head {
  min-height: 54px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
}

.lineup-head em {
  background: #f6f4ef;
  border-color: rgba(255, 255, 255, 0.7);
  font-weight: 820;
}

.pitch {
  background:
    linear-gradient(180deg, rgba(238, 246, 235, 0.18) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 50% -10px, transparent 0 66px, rgba(238, 246, 235, 0.2) 67px 68px, transparent 69px),
    radial-gradient(circle at 50% calc(100% - 48px), rgba(238, 246, 235, 0.58) 0 1.4px, transparent 2.4px),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.045), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 31%, rgba(0, 0, 0, 0.22)),
    linear-gradient(135deg, #14351f 0%, #092416 56%, #04130d 100%);
}

.kit-shirt {
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.18))
    drop-shadow(0 9px 10px rgba(0, 0, 0, 0.46));
}

.kit-card strong {
  font-weight: 820;
}

.event-badge.sub {
  color: #f1eee8;
  border-color: rgba(255, 255, 255, 0.36);
}

.event-badge.goal {
  background: #f6f4ef;
}

.profile-card,
.preview-sheet {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), transparent 48%),
    #080908;
}

.bottom-nav {
  border-top-color: rgba(0, 0, 0, 0.14);
  background:
    linear-gradient(180deg, #f9f8f5, #ece8df);
  color: #050605;
  box-shadow:
    0 -18px 34px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.nav-item {
  gap: 5px;
  font-size: 11.3px;
  font-weight: 640;
}

.nav-item.active {
  font-weight: 760;
}

.nav-item.active::before {
  left: 23px;
  right: 23px;
  height: 4px;
  background: #050605;
}

.nav-item svg {
  width: 22px;
  height: 22px;
}

.preview-sheet {
  border-color: rgba(255, 255, 255, 0.2);
}

.editorial-hero {
  min-height: 236px;
  display: grid;
  align-content: end;
  padding: 14px;
  background:
    linear-gradient(90deg, #f6f4ef 0 5px, transparent 5px),
    radial-gradient(circle at 73% 18%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.35) 58%, rgba(0, 0, 0, 0.9)),
    linear-gradient(135deg, #202220 0%, #090a09 62%, #171817 100%);
}

.editorial-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 14%, transparent 14% 31%, rgba(255, 255, 255, 0.052) 31% 40%, transparent 40%),
    radial-gradient(ellipse at 50% 110%, rgba(255, 255, 255, 0.08), transparent 46%);
  opacity: 0.62;
}

.editorial-art {
  position: absolute;
  top: 50px;
  right: 18px;
  width: 132px;
  height: 106px;
  border-radius: 13px;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.82) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 20%, rgba(255, 255, 255, 0.7) 0 1.5px, transparent 3px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 50%, rgba(255, 255, 255, 0.08) 50% calc(50% + 2px), transparent calc(50% + 2px)),
    linear-gradient(120deg, #030403 0 46%, #1c1e1c 46% 100%);
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.editorial-art::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 0;
}

.editorial-art span {
  position: absolute;
  left: 14px;
  bottom: 13px;
  color: #f8f6f0;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 840;
  line-height: 1;
}

.ghost-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #f7f5f0;
  background: rgba(0, 0, 0, 0.24);
}

.editorial-hero h3,
.editorial-hero p,
.editorial-hero .source-pills,
.hero-cta {
  position: relative;
  z-index: 1;
}

.editorial-hero h3 {
  max-width: 210px;
  margin-top: 64px;
  font-size: 29px;
  line-height: 0.98;
}

.editorial-hero p {
  max-width: 230px;
}

.hero-cta {
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  color: #060706;
  background: #f6f4ef;
  font-size: 13px;
  font-weight: 800;
}

.home-match-card {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 13px;
}

.home-match-card span,
.home-match-card small {
  display: block;
  color: #aaa59d;
  font-size: 11.5px;
  font-weight: 620;
}

.home-match-card strong {
  display: block;
  margin: 3px 0;
  color: #f8f6f0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 820;
  line-height: 1;
}

.home-match-card button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 11px;
  color: #f6f4ef;
  background: rgba(255, 255, 255, 0.045);
  font-size: 11.5px;
  font-weight: 740;
  white-space: nowrap;
}

.social-audio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.integration-card {
  position: relative;
  min-height: 154px;
  display: grid;
  align-content: end;
  gap: 7px;
  border: 0;
  padding: 12px;
  color: #f8f6f0;
  font: inherit;
  text-align: left;
  text-decoration: none;
  overflow: hidden;
}

.integration-card strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 820;
  line-height: 1;
}

.integration-card small {
  color: #d1ccc4;
  font-size: 11.4px;
  font-weight: 520;
  line-height: 1.18;
}

.integration-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
}

.instagram-card {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74)),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(135deg, #272927 0%, #080908 62%, #171817 100%);
}

.instagram-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 15%, transparent 15% 48%, rgba(255, 255, 255, 0.052) 48% 52%, transparent 52%),
    radial-gradient(ellipse at 50% 115%, rgba(255, 255, 255, 0.08), transparent 48%);
  opacity: 0.65;
}

.instagram-card > * {
  position: relative;
  z-index: 1;
}

.x-card {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76)),
    linear-gradient(135deg, #050605 0%, #252825 54%, #f6f4ef 54% 57%, #0e0f0e 57% 100%);
}

.podcast-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), transparent 46%),
    linear-gradient(135deg, #111211 0%, #070807 66%, #1d1f1d 100%);
}

.podcast-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}

.podcast-links a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 8px;
  color: #060706;
  background: #f6f4ef;
  font-size: 10.8px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.news-row {
  min-height: 84px;
  grid-template-columns: 92px 1fr 16px;
  gap: 12px;
}

.news-thumb {
  position: relative;
  width: 88px;
  height: 58px;
  display: grid;
  place-items: end start;
  overflow: hidden;
  border-radius: 8px;
  color: #f8f6f0;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72)),
    linear-gradient(135deg, #222422, #060706);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.11);
}

.news-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 14%, transparent 14% 49%, rgba(255, 255, 255, 0.055) 49% 52%, transparent 52%);
  opacity: 0.86;
}

.news-thumb.video {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76)),
    linear-gradient(135deg, #2a2c2a, #070807);
}

.news-thumb.official {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76)),
    linear-gradient(135deg, #111211, #2a2c2a);
}

.news-thumb.tickets {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7)),
    linear-gradient(135deg, #f6f4ef 0 11%, #1b1d1b 11% 100%);
}

.news-thumb.media {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76)),
    linear-gradient(135deg, #101110, #303230);
}

.news-thumb svg {
  position: relative;
  z-index: 1;
  margin: 0 0 8px 8px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.55));
}

.news-copy strong {
  font-size: 15.8px;
  line-height: 1.1;
}

.menu-sheet {
  margin-top: 10px;
  padding: 20px 16px 18px;
  border-radius: 22px 22px 10px 10px;
  background: #f8f7f3;
  color: #060706;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.compact-profile {
  grid-template-columns: 49px 1fr auto;
}

.compact-profile .profile-button {
  min-height: 32px;
  border-radius: 999px;
  white-space: nowrap;
}

.menu-group + .menu-group {
  margin-top: 24px;
}

.menu-group h3 {
  margin: 0 0 12px;
  color: #060706;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 840;
  line-height: 1;
  text-transform: uppercase;
}

.menu-line {
  width: 100%;
  min-height: 50px;
  display: grid;
  grid-template-columns: 38px 1fr 18px;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #060706;
  padding: 0;
  text-align: left;
}

.menu-line svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.85;
}

.menu-line span {
  font-size: 20px;
  font-weight: 760;
  line-height: 1;
}

.menu-line .arrow {
  color: rgba(0, 0, 0, 0.34);
}

.event-badge,
.event-badge.goal,
.event-badge.sub,
.event-badge.card {
  border-color: #06120d;
}

/* Light club-app direction: closer to Bayern/United/Real app structure, with Sturm colors. */
body {
  background:
    linear-gradient(180deg, #dfe3df 0%, #f4f4f1 36%, #e4e3df 100%);
  color: #101210;
}

.app-shell {
  padding: 0;
}

.phone {
  border-color: rgba(0, 0, 0, 0.08);
  background: #f7f7f4;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.82);
}

.phone::before {
  display: none;
}

.content {
  padding: 0 0 18px;
  background:
    linear-gradient(180deg, #101110 0 104px, #f7f7f4 104px 100%);
}

.topbar {
  min-height: 86px;
  margin: 0;
  padding: 18px 22px 12px;
  background: #101110;
  color: #f8f7f3;
  grid-template-columns: 40px 1fr 40px;
}

.topbar::before {
  width: 32px;
  height: 34px;
  justify-self: start;
  background: #101110;
  color: #f8f7f3;
  box-shadow: inset 0 0 0 2px #f8f7f3;
}

.brand h1 {
  color: #f8f7f3;
  font-size: 21px;
  font-weight: 820;
}

.brand span {
  color: rgba(248, 247, 243, 0.68);
}

.bell-button {
  color: #f8f7f3;
}

.notify-dot {
  box-shadow: 0 0 0 2px #101110;
}

.screen-title {
  margin: 18px 22px 14px;
  color: #151715;
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 820;
  line-height: 1.04;
}

.panel {
  margin-right: 18px;
  margin-left: 18px;
  border: 1px solid rgba(10, 12, 10, 0.08);
  border-radius: 16px;
  background: #ffffff;
  color: #121412;
  box-shadow:
    0 8px 22px rgba(14, 16, 14, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.editorial-hero,
.news-hero {
  min-height: 278px;
  margin-top: 0;
  border-radius: 0 0 24px 24px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #222522 0%, #080908 62%, #171917 100%);
  color: #f8f7f3;
  box-shadow: 0 16px 34px rgba(14, 16, 14, 0.16);
}

.editorial-hero::before,
.news-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 0 13%, transparent 13% 33%, rgba(255, 255, 255, 0.055) 33% 42%, transparent 42%),
    radial-gradient(ellipse at 50% 112%, rgba(255, 255, 255, 0.1), transparent 48%);
}

.news-hero-head {
  color: rgba(248, 247, 243, 0.76);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.editorial-art {
  top: 58px;
  right: 18px;
  width: 145px;
  height: 118px;
  border-radius: 18px;
}

.editorial-hero h3 {
  max-width: 238px;
  margin-top: 86px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 840;
  line-height: 0.95;
}

.editorial-hero p {
  max-width: 274px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14.6px;
}

.source-pills span {
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #f8f7f3;
  background: rgba(0, 0, 0, 0.32);
}

.hero-cta {
  min-height: 46px;
  color: #101110;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.home-match-card {
  margin-top: 14px;
  background: #ffffff;
}

.home-match-card span,
.home-match-card small {
  color: #667064;
}

.home-match-card strong {
  color: #101210;
  font-size: 23px;
}

.home-match-card button {
  border-color: rgba(16, 17, 16, 0.14);
  color: #ffffff;
  background: #101110;
}

.feed-tabs {
  margin-top: 12px;
  border-radius: 999px;
  background: #ececea;
  box-shadow: none;
}

.feed-tabs button {
  color: #697067;
}

.feed-tabs button.active {
  color: #ffffff;
  background: #101110;
}

.social-audio {
  margin: 12px 18px 0;
}

.social-audio .panel {
  margin: 0;
}

.integration-card {
  min-height: 164px;
  border-radius: 18px;
}

.integration-card strong {
  font-size: 20px;
}

.podcast-links a {
  color: #101110;
  background: #ffffff;
}

.news-list {
  margin-top: 12px;
  padding-top: 14px;
}

.section h3 {
  color: #101210;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.news-row {
  min-height: 92px;
  border-top-color: rgba(12, 14, 12, 0.08);
  color: #101210;
}

.news-copy strong {
  color: #172017;
  font-size: 16px;
  font-weight: 780;
}

.news-copy small {
  color: #727a70;
}

.arrow {
  color: #8d938a;
}

.hub-signal,
.pk-status,
.table-strip {
  background: #ffffff;
  color: #101210;
}

.hub-signal strong,
.table-strip,
.pk-status strong,
.point-row strong,
.transcript-row strong {
  color: #101210;
}

.hub-signal span,
.pk-status span,
.point-row small,
.transcript-row small,
.video-caption small,
.pk-summary p {
  color: #687166;
}

.hero:not(.editorial-hero) {
  background: transparent;
}

.hero-field {
  border-radius: 16px 16px 0 0;
}

.quick-grid,
.section,
.action,
.lineup-match-card,
.lineup-panel,
.profile-card,
.menu-grid {
  background: #ffffff;
  color: #101210;
}

.quick-grid > div,
.menu-grid > div,
.row {
  color: #101210;
}

.quick-grid svg,
.menu-grid svg,
.row svg,
.pk-status svg,
.table-strip svg {
  color: #101110;
}

.row {
  border-top-color: rgba(12, 14, 12, 0.08);
}

.action.bright {
  color: #ffffff;
  background: #101110;
}

.action.bright svg,
.action.bright .arrow {
  color: #ffffff;
}

.lineup-match-card {
  background: #ffffff;
}

.lineup-status span,
.lineup-status small {
  color: #687166;
}

.lineup-status strong,
.lineup-teamline strong,
.lineup-head strong {
  color: #101210;
}

.lineup-status strong {
  line-height: 1.04;
}

.lineup-teamline {
  border-top-color: rgba(12, 14, 12, 0.08);
}

.lineup-panel {
  overflow: hidden;
}

.lineup-head {
  background: #ffffff;
}

.lineup-head span {
  color: #667064;
}

.bench-player strong {
  color: #101210;
}

.pitch .kit-card strong {
  color: #f6f4ef;
}

.event-badge.goal {
  background: #ffffff;
}

.menu-sheet {
  margin-right: 18px;
  margin-left: 18px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(14, 16, 14, 0.08);
}

.profile-card {
  border-radius: 18px;
}

.profile-card h3,
.profile-card p {
  color: #101210;
}

.profile-card p {
  color: #687166;
}

.bottom-nav {
  background: rgba(255, 255, 255, 0.96);
  color: #101110;
  border-top-color: rgba(10, 12, 10, 0.08);
  box-shadow: 0 -12px 28px rgba(14, 16, 14, 0.1);
  backdrop-filter: blur(16px);
}

.nav-item {
  color: #6b7169;
}

.nav-item.active {
  color: #101110;
}

.nav-item.active::before {
  background: #101110;
}

.preview-sheet {
  background: #ffffff;
  color: #101210;
}

.preview-sheet h2,
.preview-sheet p,
.sheet-meta {
  color: #101210;
}

/* Polish pass: native club-app hierarchy and less generic card rhythm. */
.content {
  background:
    linear-gradient(180deg, #101110 0 74px, #f7f7f4 74px 100%);
}

.topbar {
  min-height: 74px;
  padding: 14px 22px 9px;
}

.brand h1 {
  font-size: 20px;
  line-height: 1;
}

.brand span {
  margin-top: 3px;
  font-size: 11.5px;
}

.screen-title {
  margin: 22px 24px 14px;
  font-size: 34px;
  letter-spacing: -0.01em;
}

.panel {
  margin-right: 20px;
  margin-left: 20px;
  border-color: rgba(12, 14, 12, 0.065);
  border-radius: 20px;
  box-shadow:
    0 7px 20px rgba(14, 16, 14, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.editorial-hero,
.news-hero {
  min-height: 270px;
  border-radius: 24px;
  box-shadow:
    0 18px 38px rgba(14, 16, 14, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.editorial-art {
  top: 52px;
  right: 20px;
  width: 136px;
  height: 112px;
  transform: rotate(1.5deg);
}

.editorial-hero h3 {
  max-width: 246px;
  margin-top: 66px;
  font-size: 34px;
}

.editorial-hero p {
  max-width: 282px;
  font-size: 14.4px;
}

.hero-cta {
  min-height: 44px;
  margin-top: 13px;
  font-size: 13.4px;
}

.home-match-card {
  min-height: 98px;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 15px;
}

.home-match-card button {
  width: fit-content;
  min-height: 38px;
}

.feed-tabs {
  margin-top: 14px;
  padding: 4px;
}

.feed-tabs button {
  min-height: 37px;
  font-size: 12px;
}

.social-audio {
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 14px 20px 0;
}

.integration-card {
  min-height: 104px;
  grid-template-columns: 42px 1fr;
  align-content: center;
  align-items: center;
  column-gap: 12px;
  row-gap: 6px;
  padding: 14px;
}

.integration-card strong,
.integration-card small {
  grid-column: 2;
}

.integration-icon {
  grid-row: 1 / span 2;
}

.podcast-links {
  grid-column: 1 / -1;
  margin-top: 5px;
}

.podcast-links a {
  min-height: 27px;
  padding: 0 10px;
}

.news-list {
  padding: 16px 14px 10px;
}

.news-list h3 {
  margin-left: 2px;
  font-size: 13.5px;
}

.news-list .news-row:first-of-type {
  grid-template-columns: 1fr;
  gap: 11px;
  min-height: 0;
  padding: 0 0 15px;
  border-top: 0;
}

.news-list .news-row:first-of-type .news-thumb {
  width: 100%;
  height: 156px;
  border-radius: 18px;
}

.news-list .news-row:first-of-type .news-thumb svg {
  width: 26px;
  height: 26px;
  margin: 0 0 12px 12px;
}

.news-list .news-row:first-of-type .news-copy {
  padding: 0 3px;
}

.news-list .news-row:first-of-type .news-copy strong {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 840;
  line-height: 1;
}

.news-list .news-row:first-of-type .news-copy small {
  margin-top: 7px;
  font-size: 11.6px;
}

.news-list .news-row:first-of-type .arrow {
  display: none;
}

.news-list .news-row:not(:first-of-type) {
  padding: 13px 0;
}

.news-row {
  grid-template-columns: 84px 1fr 14px;
  gap: 12px;
}

.news-thumb {
  width: 80px;
  height: 56px;
  border-radius: 12px;
}

.news-copy strong {
  font-size: 15.5px;
}

.hub-signal {
  margin-top: 12px;
  min-height: 70px;
}

.hero.panel {
  margin-top: 0;
}

.quick-grid {
  min-height: 92px;
  border-radius: 18px;
}

.section {
  padding: 14px 15px 8px;
}

.row {
  min-height: 49px;
}

.lineup-match-card {
  padding: 14px 15px;
}

.lineup-panel,
.bench-section {
  border-radius: 20px;
}

.menu-sheet {
  margin-top: 14px;
  padding: 24px 18px 22px;
  border-radius: 28px 28px 18px 18px;
}

.menu-group h3 {
  font-size: 30px;
}

.menu-line {
  min-height: 54px;
}

.bottom-nav {
  height: var(--bottom-nav-total);
}

.nav-item {
  font-size: 11.5px;
}

.nav-item.active::before {
  left: 27px;
  right: 27px;
  height: 3px;
  border-radius: 0 0 3px 3px;
}

@media (max-width: 430px) {
  .app-shell {
    padding: 0;
  }

  .phone {
    width: 100%;
    height: 100vh;
    min-height: 0;
    border-radius: 0;
  }
}

/* Premium media pass v38: white club-app structure, real imagery, tighter typography. */
:root {
  --page: #eef0ed;
  --phone: #f7f7f4;
  --panel: #ffffff;
  --text: #111311;
  --muted: #6f766d;
  --line: rgba(12, 14, 12, 0.1);
  --line-soft: rgba(12, 14, 12, 0.075);
  --paper: #ffffff;
  --paper-dim: #ececea;
  --accent: #101110;
  --red: #d91528;
  --radius: 10px;
  --shadow-panel: 0 8px 22px rgba(12, 14, 12, 0.07);
  --bottom-nav-height: 82px;
}

body,
button,
a {
  letter-spacing: 0;
}

body {
  background:
    linear-gradient(180deg, #111311 0 178px, #eef0ed 178px 100%);
  color: var(--text);
  font-weight: 450;
}

.app-shell {
  min-height: 100svh;
  padding: 12px;
}

.phone {
  width: min(100%, 430px);
  max-width: 430px;
  height: min(900px, calc(100svh - 24px));
  min-height: 720px;
  border-color: rgba(0, 0, 0, 0.12);
  border-radius: 22px;
  background: var(--phone);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.88);
}

.phone::before {
  display: none;
}

.content {
  padding: 0 0 20px;
  background:
    linear-gradient(180deg, #101110 0 74px, #f7f7f4 74px 100%);
}

.topbar {
  min-height: 74px;
  margin: 0;
  padding: 15px 22px 10px;
  background: #101110;
  color: #f7f7f4;
  grid-template-columns: 42px 1fr 42px;
}

.topbar::before {
  width: 30px;
  height: 32px;
  color: #ffffff;
  background:
    linear-gradient(90deg, #050605 0 50%, #202220 50% 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.92);
}

.brand h1 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  line-height: 0.98;
}

.brand span {
  color: rgba(247, 247, 244, 0.68);
  font-size: 11.5px;
  font-weight: 600;
}

.bell-button {
  color: #ffffff;
}

.screen-title {
  margin: 22px 22px 14px;
  color: #111311;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.panel {
  margin-right: 18px;
  margin-left: 18px;
  border-color: rgba(12, 14, 12, 0.075);
  border-radius: var(--radius);
  background: #ffffff;
  color: #111311;
  box-shadow: var(--shadow-panel);
}

.media-hero,
.editorial-hero,
.news-hero {
  position: relative;
  min-height: 276px;
  display: grid;
  align-content: end;
  gap: 0;
  margin-top: 0;
  padding: 16px;
  border: 0;
  border-radius: 14px;
  background: #101110;
  color: #ffffff;
  isolation: isolate;
  box-shadow:
    0 18px 38px rgba(12, 14, 12, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.media-hero::before,
.editorial-hero::before,
.news-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 6px, transparent 6px 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 16%, transparent 16% 45%, rgba(255, 255, 255, 0.045) 45% 52%, transparent 52%);
  opacity: 0.64;
}

.media-hero::after,
.editorial-hero::after,
.news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.06) 58%, rgba(0, 0, 0, 0.22));
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04) brightness(0.96);
  transform: scale(1.01);
}

.media-hero > :not(.hero-image),
.editorial-hero > :not(.hero-image),
.news-hero > :not(.hero-image) {
  position: relative;
  z-index: 2;
}

.news-hero-head {
  align-self: start;
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 850;
}

.ghost-icon {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
}

.editorial-hero h3 {
  max-width: 322px;
  margin: 46px 0 8px;
  color: #ffffff;
  font-size: 35px;
  font-weight: 800;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
}

.editorial-hero p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14.5px;
  font-weight: 560;
  line-height: 1.32;
}

.source-pills {
  margin-top: 13px;
}

.source-pills span,
.sheet-tags span {
  min-height: 27px;
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.35);
  font-size: 11px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.hero-cta {
  min-height: 46px;
  margin-top: 14px;
  border-radius: 999px;
  color: #101110;
  background: #ffffff;
  font-size: 13.5px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.home-match-card {
  min-height: 96px;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
  padding: 15px;
}

.home-match-card span,
.home-match-card small {
  color: #687066;
  font-size: 11.5px;
  font-weight: 700;
}

.home-match-card strong {
  color: #101110;
  font-size: 24px;
  font-weight: 800;
}

.home-match-card button {
  width: fit-content;
  min-height: 38px;
  border-color: rgba(16, 17, 16, 0.12);
  color: #ffffff;
  background: #101110;
  font-size: 11.8px;
  font-weight: 850;
  align-self: center;
}

.feature-rail {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding: 0 18px 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.feature-rail::-webkit-scrollbar {
  display: none;
}

.feature-card {
  position: relative;
  flex: 0 0 180px;
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 4px;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 12px;
  padding: 12px;
  color: #ffffff;
  background: #101110;
  text-decoration: none;
  box-shadow: 0 9px 22px rgba(12, 14, 12, 0.1);
  isolation: isolate;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0 25%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 72%);
}

.feature-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.feature-label,
.feature-icon,
.feature-card strong,
.feature-card small {
  position: relative;
  z-index: 2;
}

.feature-label {
  width: fit-content;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: #101110;
  background: #ffffff;
  font-size: 10.5px;
  font-weight: 850;
}

.feature-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(9px);
}

.feature-card strong {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  line-height: 0.98;
}

.feature-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.18;
}

.feed-tabs {
  margin-top: 14px;
  padding: 4px;
  border: 0;
  border-radius: 999px;
  background: #ebecea;
  box-shadow: none;
}

.feed-tabs button {
  min-height: 37px;
  border: 0;
  color: #666e64;
  font-weight: 750;
}

.feed-tabs button.active {
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
}

.social-audio {
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 14px 18px 0;
}

.social-audio .panel {
  margin: 0;
}

.integration-card {
  min-height: 104px;
  grid-template-columns: 42px 1fr;
  align-content: center;
  align-items: center;
  column-gap: 12px;
  row-gap: 5px;
  border-radius: 10px;
  padding: 14px;
}

.integration-card strong,
.integration-card small {
  grid-column: 2;
}

.integration-card strong {
  font-size: 20px;
  font-weight: 800;
}

.integration-icon {
  grid-row: 1 / span 2;
  background: #101110;
}

.podcast-links {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.podcast-links a {
  min-height: 28px;
  color: #101110;
  background: #ffffff;
  font-weight: 850;
}

.news-list {
  margin-top: 14px;
  padding: 16px 14px 10px;
}

.section h3,
.news-list h3 {
  color: #101110;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 850;
  letter-spacing: 0;
}

.news-row {
  min-height: 94px;
  grid-template-columns: 86px 1fr 14px;
  gap: 12px;
  border-top-color: rgba(12, 14, 12, 0.08);
  color: #101110;
}

.news-list .news-row:first-of-type {
  grid-template-columns: 1fr;
  gap: 12px;
  padding-bottom: 16px;
}

.news-list .news-row:first-of-type .news-thumb {
  width: 100%;
  height: 168px;
  border-radius: 12px;
}

.news-list .news-row:first-of-type .news-copy strong {
  color: #101110;
  font-size: 28px;
  font-weight: 800;
  line-height: 0.96;
}

.news-thumb {
  width: 82px;
  height: 58px;
  border-radius: 10px;
  background: #101110;
  isolation: isolate;
}

.news-thumb::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.74)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 14%, transparent 14% 100%);
  opacity: 1;
}

.news-thumb-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}

.thumb-glyph {
  position: absolute;
  z-index: 2;
  left: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #101110;
  background: #ffffff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.22);
}

.news-thumb svg,
.news-list .news-row:first-of-type .news-thumb svg {
  width: 17px;
  height: 17px;
  margin: 0;
  color: currentColor;
  filter: none;
}

.news-copy strong {
  color: #182018;
  font-size: 15.8px;
  font-weight: 780;
}

.news-copy small {
  color: #71786e;
  font-weight: 560;
}

.hero-field {
  min-height: 190px;
  border-radius: 10px 10px 0 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) saturate(0.88) contrast(1.08);
}

.hero-field::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.72)),
    radial-gradient(ellipse at 50% 118%, rgba(255, 255, 255, 0.18), transparent 42%);
  filter: none;
}

.hero-field::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 7px, transparent 7px 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 32% 68%, rgba(0, 0, 0, 0.42));
}

.team-mark {
  background:
    linear-gradient(#ffffff, #ffffff),
    #050605;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.26);
}

.team-mark span {
  font-weight: 800;
}

.countdown-strip {
  background: #101110;
  color: #ffffff;
  border-top-color: rgba(255, 255, 255, 0.18);
}

.quick-grid,
.section,
.action,
.lineup-match-card,
.lineup-panel,
.profile-card,
.hub-signal,
.pk-status,
.pk-summary,
.table-strip {
  background: #ffffff;
  color: #101110;
}

.row,
.quick-grid > div,
.menu-grid > div {
  color: #101110;
}

.row svg,
.quick-grid svg,
.pk-status svg,
.table-strip svg {
  color: #101110;
}

.action.bright {
  color: #ffffff;
  background: #101110;
}

.action.bright svg,
.action.bright .arrow {
  color: #ffffff;
}

.pitch {
  gap: 8px;
  padding: 18px 10px 14px;
  background:
    radial-gradient(circle at 50% -44px, transparent 0 92px, rgba(255, 255, 255, 0.34) 93px 95px, transparent 96px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 50% 28px, rgba(255, 255, 255, 0.26) 0 2px, transparent 3px),
    linear-gradient(180deg, #17633d 0%, #0d4d2f 52%, #07351f 100%);
  box-shadow:
    inset 0 18px 38px rgba(255, 255, 255, 0.08),
    inset 0 -26px 42px rgba(0, 0, 0, 0.22);
}

.pitch::before {
  left: 27%;
  right: 27%;
  bottom: auto;
  top: 0;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.pitch::after {
  left: 42%;
  right: 42%;
  bottom: auto;
  top: 0;
  height: 21px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.formation-row {
  gap: 6px;
}

.kit-card strong {
  color: #ffffff;
  font-size: 9.8px;
  font-weight: 850;
}

.bench-player strong {
  color: #101110;
}

.sheet-backdrop {
  padding: 12px;
  background: rgba(0, 0, 0, 0.52);
}

.preview-sheet {
  width: min(100%, 430px);
  max-height: calc(100svh - 24px);
  overflow: auto;
  border: 0;
  border-radius: 18px 18px 12px 12px;
  background: #ffffff;
  color: #101110;
  padding: 10px 16px 16px;
}

.sheet-image-wrap {
  height: 188px;
  margin: 4px -8px 14px;
  overflow: hidden;
  border-radius: 12px;
  background: #101110;
}

.sheet-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sheet-handle {
  background: rgba(16, 17, 16, 0.22);
}

.sheet-meta {
  color: #687066;
  font-family: var(--font-ui);
  font-weight: 850;
}

.preview-sheet h2 {
  color: #101110;
  font-size: 29px;
  font-weight: 800;
  line-height: 0.98;
}

.preview-sheet p {
  color: #5d655b;
  font-size: 14.5px;
}

.preview-sheet .sheet-tags span {
  color: #ffffff;
  background: #101110;
}

.primary-link {
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
}

.ghost-link {
  border-color: rgba(16, 17, 16, 0.12);
  border-radius: 999px;
  color: #101110;
}

.bottom-nav {
  height: var(--bottom-nav-total);
  border-top-color: rgba(12, 14, 12, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #101110;
  box-shadow: 0 -12px 28px rgba(12, 14, 12, 0.1);
  backdrop-filter: blur(16px);
}

.nav-item {
  color: #6d746b;
  font-size: 11.4px;
  font-weight: 700;
}

.nav-item.active {
  color: #101110;
}

.nav-item.active::before {
  left: 28px;
  right: 28px;
  height: 3px;
  background: #101110;
}

.nav-item svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 430px) {
  .app-shell {
    padding: 0;
  }

  .phone {
    width: 100%;
    max-width: none;
    height: 100svh;
    min-height: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .preview-sheet {
    width: 100%;
  }
}

@media (max-width: 374px) {
  .screen-title {
    margin-right: 16px;
    margin-left: 16px;
    font-size: 34px;
  }

  .panel {
    margin-right: 14px;
    margin-left: 14px;
  }

  .media-hero,
  .editorial-hero,
  .news-hero {
    min-height: 264px;
    padding: 14px;
  }

  .editorial-hero h3 {
    max-width: 282px;
    margin-top: 38px;
    font-size: 32px;
  }

  .feature-rail {
    padding-right: 14px;
    padding-left: 14px;
  }

  .feature-card {
    flex-basis: 166px;
  }

  .news-row {
    grid-template-columns: 76px 1fr 12px;
    gap: 10px;
  }

  .news-thumb {
    width: 72px;
    height: 54px;
  }

  .formation-row.count-4 {
    grid-template-columns: repeat(4, minmax(50px, 1fr));
  }

  .kit-shirt {
    width: 45px;
    height: 50px;
  }
}

.screen-title {
  line-height: 1.16;
  padding-bottom: 2px;
}

/* Real-style competition area in German, adapted to Sturm black/white. */
.games-page {
  min-height: 100%;
  padding: 18px 0 22px;
  background: #ffffff;
  color: #151a24;
}

.games-control-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 0 18px 28px;
}

.games-control-row.has-filter {
  grid-template-columns: minmax(0, 1fr) 42px;
}

.games-control-row .games-segment {
  min-height: 54px;
  margin: 0;
  padding: 5px;
  border-radius: 999px;
  background: #f1f2f5;
  box-shadow: none;
}

.games-control-row .games-segment button {
  border: 0;
  border-radius: 999px;
  color: #687183;
  background: transparent;
  font-size: 16px;
  font-weight: 590;
}

.games-control-row .games-segment button.active {
  color: #ffffff;
  background: #101110;
  box-shadow: 0 8px 16px rgba(16, 17, 16, 0.16);
}

.games-filter {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  color: #6e7686;
  background: transparent;
}

.competition-picker {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin: 0 18px 42px;
  text-align: center;
}

.competition-picker button {
  min-height: 35px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  color: #101110;
  background: transparent;
  font-size: 23px;
  font-weight: 590;
}

.competition-picker strong {
  color: #151a24;
  font-size: 17px;
  font-weight: 520;
}

.standings-card {
  margin: 0;
  padding: 0 26px 22px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  overflow: visible;
}

.standings-table {
  padding: 0;
}

.standings-row {
  min-height: 66px;
  grid-template-columns: 44px minmax(0, 1fr) 42px 50px 42px;
  border-top: 1px solid #e7e9ed;
  color: #4f5a6c;
  font-size: 16px;
  font-weight: 500;
}

.standings-row.table-head {
  min-height: 42px;
  border-top: 0;
  color: #536073;
  font-size: 12px;
  font-weight: 780;
}

.standings-row::before {
  left: 1px;
  top: 16px;
  bottom: 16px;
  width: 5px;
  border-radius: 999px;
}

.standings-row.sturm-row {
  min-height: 66px;
  margin: 0 -4px;
  padding-right: 4px;
  border-top: 0;
  border-radius: 11px;
  background: #f3f4f8;
  box-shadow: 0 8px 18px rgba(18, 24, 36, 0.06);
}

.standings-row.sturm-row + .standings-row {
  border-top: 0;
}

.standings-row.sturm-row::before {
  left: 4px;
  top: 12px;
  bottom: 12px;
  background: #d9a23a;
}

.standings-row.zone-title::before {
  background: #91dea1;
}

.standings-row.zone-europe::before {
  background: #9f85e6;
}

.standings-row.zone-split::before {
  background: #d9a23a;
}

.standings-row.zone-risk::before {
  background: #d91528;
}

.rank {
  color: #536073;
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 690;
}

.club-cell {
  gap: 11px;
}

.club-cell strong {
  color: #1f2937;
  font-size: 17px;
  font-weight: 610;
}

.table-team-mark {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  color: #101110;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1.4px rgba(16, 17, 16, 0.24),
    0 2px 7px rgba(18, 24, 36, 0.08);
  font-size: 11px;
}

.table-team-mark.sturm {
  color: #ffffff;
}

.standings-row > span:not(.club-cell):not(.rank) {
  color: #536073;
  text-align: center;
}

.standings-row .points,
.sturm-row .points {
  color: #111827;
  font-weight: 760;
}

.table-source {
  display: block;
  margin-top: 8px;
  color: #737d8e;
  font-size: 11.5px;
  font-weight: 650;
  text-align: right;
  text-decoration: none;
}

.sturm-row .rank,
.sturm-row .club-cell strong,
.sturm-row > span:not(.club-cell):not(.rank) {
  color: #111827;
}

.month-rail {
  display: flex;
  gap: 26px;
  margin: 0 0 18px;
  padding: 0 18px 8px;
  overflow-x: auto;
  border-bottom: 1px solid #e5e8ef;
  scrollbar-width: none;
}

.month-rail::-webkit-scrollbar {
  display: none;
}

.month-rail button {
  position: relative;
  flex: 0 0 auto;
  min-height: 38px;
  border: 0;
  color: #697386;
  background: transparent;
  font-size: 17px;
  font-weight: 520;
}

.month-rail button.active {
  color: #101110;
}

.month-rail button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 4px;
  border-radius: 999px;
  background: #101110;
}

.calendar-board {
  padding: 0 25px 24px;
}

.weekday-row,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.weekday-row {
  margin-bottom: 15px;
}

.weekday-row span {
  color: #111827;
  font-size: 12px;
  font-weight: 760;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid {
  row-gap: 18px;
}

.calendar-day {
  position: relative;
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  color: #111827;
  background: transparent;
  font-size: 20px;
  font-weight: 560;
}

.calendar-day > span:first-child {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.calendar-day.selected > span:first-child {
  background: #eef0ff;
}

.calendar-day.has-match .table-team-mark {
  position: absolute;
  right: 2px;
  top: 2px;
  width: 29px;
  height: 29px;
  flex-basis: 29px;
  font-size: 10px;
}

.calendar-day.selected .table-team-mark {
  right: -1px;
  top: -1px;
  outline: 3px solid #101110;
  outline-offset: 2px;
}

.calendar-card {
  position: relative;
  margin: 0 28px 18px;
  padding: 24px 22px 20px;
  border-radius: 28px 28px 14px 14px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(18, 24, 36, 0.11);
  text-align: center;
}

.calendar-card > span {
  color: #6d7688;
  font-size: 15px;
  font-weight: 720;
}

.calendar-card > strong {
  display: block;
  margin-top: 3px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 560;
}

.calendar-match {
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.calendar-match > div {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 0;
}

.calendar-match .table-team-mark {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
  font-size: 20px;
}

.calendar-match b {
  max-width: 112px;
  overflow: hidden;
  color: #111827;
  font-size: 14px;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-match button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px solid #677386;
  border-radius: 10px;
  color: #677386;
  background: #ffffff;
}

.calendar-card small {
  display: block;
  margin-top: 18px;
  color: #6d7688;
  font-size: 12.5px;
  font-weight: 560;
}

.squad-list {
  margin: 0 24px 18px;
  border-top: 1px solid #e7e9ed;
}

.squad-row {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: 92px 1fr 42px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid #e7e9ed;
  color: #111827;
  background: transparent;
  text-align: left;
}

.squad-row span {
  color: #697386;
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.squad-row strong {
  min-width: 0;
  overflow: hidden;
  font-size: 18px;
  font-weight: 630;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.squad-row em {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
  font-style: normal;
  font-weight: 780;
}

@media (max-width: 374px) {
  .games-control-row {
    margin-right: 14px;
    margin-left: 14px;
  }

  .games-control-row .games-segment button {
    font-size: 14px;
  }

  .standings-card {
    padding-right: 16px;
    padding-left: 16px;
  }

  .standings-row {
    grid-template-columns: 35px minmax(0, 1fr) 34px 42px 34px;
    font-size: 13px;
  }

  .club-cell strong {
    font-size: 14.5px;
  }

  .calendar-board {
    padding-right: 18px;
    padding-left: 18px;
  }

  .calendar-card {
    margin-right: 18px;
    margin-left: 18px;
  }
}

.games-segment {
  min-height: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 0 18px 18px;
  padding: 5px;
  border-radius: 999px;
  background: #eceeeb;
}

.games-segment button {
  min-width: 0;
  border: 0;
  border-radius: 999px;
  color: #697168;
  background: transparent;
  font-size: 14px;
  font-weight: 760;
}

.games-segment button.active {
  color: #ffffff;
  background: #101110;
  box-shadow: 0 8px 16px rgba(16, 17, 16, 0.16);
}

.competition-picker {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin: 0 18px 18px;
  text-align: center;
}

.competition-picker button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  color: #101110;
  background: transparent;
  font-size: 22px;
  font-weight: 780;
}

.competition-picker button svg {
  width: 18px;
  height: 18px;
}

.competition-picker strong {
  color: #5e665c;
  font-size: 15px;
  font-weight: 620;
}

.standings-card {
  padding: 0;
  overflow: hidden;
}

.standings-header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 15px 13px;
  border-bottom: 1px solid rgba(12, 14, 12, 0.075);
}

.standings-header span {
  display: block;
  color: #687066;
  font-size: 11.5px;
  font-weight: 850;
  text-transform: uppercase;
}

.standings-header strong {
  display: block;
  margin-top: 3px;
  color: #101110;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.standings-header em {
  min-width: 52px;
  min-height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.standings-table {
  padding: 8px 10px 6px;
}

.standings-row {
  position: relative;
  min-height: 56px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 30px 28px 28px 28px 36px 34px;
  align-items: center;
  column-gap: 0;
  border-top: 1px solid rgba(12, 14, 12, 0.07);
  color: #172017;
  font-size: 14px;
  font-weight: 650;
}

.standings-row:first-child {
  border-top: 0;
}

.standings-row::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: transparent;
}

.standings-row.zone-title::before {
  background: #101110;
}

.standings-row.zone-europe::before {
  background: #8fbf91;
}

.standings-row.zone-split::before {
  background: #c9b36c;
}

.standings-row.zone-risk::before {
  background: #d91528;
}

.standings-row.table-head {
  min-height: 34px;
  border: 0;
  color: #758073;
  font-size: 10.5px;
  font-weight: 850;
  text-transform: uppercase;
}

.standings-row.table-head::before {
  display: none;
}

.standings-row.table-head span {
  text-align: center;
}

.standings-row.table-head span:nth-child(2) {
  text-align: left;
}

.standings-row.sturm-row {
  min-height: 62px;
  margin: 4px -2px;
  padding-right: 2px;
  border: 0;
  border-radius: 12px;
  background: #f0f1ee;
  box-shadow:
    0 9px 20px rgba(12, 14, 12, 0.08),
    inset 0 0 0 1px rgba(16, 17, 16, 0.05);
}

.standings-row.sturm-row::before {
  top: 12px;
  bottom: 12px;
  left: 3px;
  background: #101110;
}

.rank {
  color: #5f685d;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.club-cell {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.club-cell strong {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: #172017;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table-team-mark {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 4%, 88% 17%, 84% 70%, 50% 96%, 16% 70%, 12% 17%);
  color: #101110;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1.5px rgba(16, 17, 16, 0.28),
    0 3px 8px rgba(12, 14, 12, 0.08);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.table-team-mark.sturm {
  color: #ffffff;
  background:
    linear-gradient(90deg, #050605 0 50%, #202220 50% 100%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.96),
    0 5px 10px rgba(12, 14, 12, 0.16);
}

.standings-row > span:not(.club-cell):not(.rank) {
  text-align: center;
  color: #4f584d;
}

.standings-row .points {
  color: #101110;
  font-weight: 850;
}

.sturm-row .rank,
.sturm-row .club-cell strong,
.sturm-row > span:not(.club-cell):not(.rank),
.sturm-row .points {
  color: #101110;
}

.standings-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 15px 15px;
  color: #667064;
  font-size: 11.5px;
  font-weight: 680;
}

.standings-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.standings-legend i {
  width: 7px;
  height: 18px;
  border-radius: 999px;
  display: inline-block;
}

.standings-legend .zone-title {
  background: #101110;
}

.standings-legend .zone-risk {
  background: #d91528;
}

.squad-preview {
  margin-top: 0;
}

@media (max-width: 374px) {
  .games-segment,
  .competition-picker {
    margin-right: 14px;
    margin-left: 14px;
  }

  .standings-table {
    padding-right: 8px;
    padding-left: 8px;
  }

  .standings-row {
    grid-template-columns: 29px minmax(0, 1fr) 26px 24px 24px 24px 31px 29px;
    font-size: 12.5px;
  }

  .club-cell {
    gap: 7px;
  }

  .club-cell strong {
    font-size: 14px;
  }

  .table-team-mark {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    font-size: 10px;
  }
}

.standings-meta {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 24px 8px;
  color: #667064;
  font-size: 11.5px;
  font-weight: 760;
}

.standings-meta.live span::before,
.standings-meta.loading span::before,
.standings-meta.stale span::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 999px;
  background: #86d78c;
  vertical-align: 1px;
}

.standings-meta.loading span::before {
  background: #d9a23a;
}

.standings-meta.stale span::before {
  background: #d91528;
}

.standings-meta button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #101110;
  background: #f0f1ee;
}

.standings-meta.loading button svg {
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.standings-card {
  padding-top: 4px;
  border-radius: 0;
}

.standings-table {
  padding: 4px 20px 8px;
}

.standings-row {
  min-height: 60px;
  grid-template-columns: 36px minmax(0, 1fr) 30px 28px 28px 28px 38px 38px;
  color: #4c5562;
  font-size: 14.5px;
  font-weight: 610;
}

.standings-row.table-head {
  min-height: 34px;
  color: #7b8490;
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0;
}

.standings-row.table-head span {
  text-align: center;
}

.standings-row.table-head span:nth-child(2) {
  text-align: left;
}

.standings-row.sturm-row {
  min-height: 64px;
  margin: 3px -2px;
  border-radius: 12px;
  background: #f3f4f6;
}

.rank {
  font-size: 20px;
}

.club-cell {
  gap: 8px;
}

.club-cell strong {
  font-size: 15.5px;
  font-weight: 760;
}

.table-team-mark {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
  font-size: 10.5px;
}

.standings-row > span:not(.club-cell):not(.rank) {
  color: #536071;
  font-variant-numeric: tabular-nums;
}

.standings-row .points {
  color: #101110;
  font-size: 15.5px;
  font-weight: 870;
}

.table-source {
  margin: 4px 20px 0;
  padding-bottom: 14px;
  color: #7c8490;
  font-size: 11px;
}

@media (max-width: 374px) {
  .standings-meta {
    padding-right: 16px;
    padding-left: 16px;
  }

  .standings-table {
    padding-right: 12px;
    padding-left: 12px;
  }

  .standings-row {
    grid-template-columns: 28px minmax(0, 1fr) 25px 22px 22px 22px 31px 31px;
    font-size: 12.5px;
  }

  .club-cell {
    gap: 6px;
  }

  .club-cell strong {
    font-size: 13.5px;
  }

  .rank {
    font-size: 18px;
  }

  .table-team-mark {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
    font-size: 9.5px;
  }

  .standings-row .points {
    font-size: 13.5px;
  }
}

.squad-overview {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 24px 18px;
  padding: 0 0 16px;
  border-bottom: 1px solid #e7e9ed;
}

.squad-overview span {
  display: block;
  color: #6d7688;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.squad-overview strong {
  display: block;
  margin-top: 3px;
  color: #101110;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 850;
  line-height: 1;
}

.squad-overview a {
  max-width: 145px;
  color: #737d8e;
  font-size: 11px;
  font-weight: 680;
  line-height: 1.25;
  text-align: right;
  text-decoration: none;
}

.squad-groups {
  margin: 0 18px 24px;
}

.squad-group {
  margin-bottom: 18px;
}

.squad-group header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 6px 8px;
}

.squad-group h3 {
  margin: 0;
  color: #101110;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 820;
  line-height: 1;
}

.squad-group header span {
  min-width: 30px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
  font-size: 12px;
  font-weight: 820;
}

.squad-group .squad-list {
  margin: 0;
  border-top: 1px solid #e7e9ed;
}

.squad-row {
  min-height: 66px;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px;
  padding: 0 4px;
}

.squad-row em {
  width: 40px;
  height: 40px;
  border-radius: 10px 10px 14px 14px;
  color: #ffffff;
  background:
    linear-gradient(90deg, #060706 0 50%, #222522 50% 100%);
  box-shadow:
    inset 0 0 0 1.3px rgba(255, 255, 255, 0.95),
    0 6px 14px rgba(12, 14, 12, 0.14);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 860;
}

.squad-row > span {
  min-width: 0;
}

.squad-row strong {
  display: block;
  color: #101110;
  font-size: 17px;
  font-weight: 730;
}

.squad-row small {
  display: block;
  margin-top: 3px;
  color: #717b89;
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

@media (max-width: 374px) {
  .squad-overview {
    margin-right: 18px;
    margin-left: 18px;
  }

  .squad-groups {
    margin-right: 14px;
    margin-left: 14px;
  }

  .squad-overview strong {
    font-size: 24px;
  }

  .squad-row strong {
    font-size: 15.5px;
  }
}

.club-badge {
  --badge-bg: #101110;
  --badge-bg-2: #30343a;
  --badge-ring: #ffffff;
  --badge-fg: #ffffff;
  --badge-accent: #ffffff;
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  clip-path: polygon(50% 2%, 90% 15%, 87% 68%, 50% 96%, 13% 68%, 10% 15%);
  color: var(--badge-fg);
  background:
    linear-gradient(var(--badge-ring), var(--badge-ring)),
    linear-gradient(135deg, var(--badge-bg) 0 62%, var(--badge-bg-2) 62% 100%);
  box-shadow:
    0 9px 18px rgba(12, 14, 12, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  isolation: isolate;
}

.club-badge::before {
  content: "";
  position: absolute;
  inset: 3px;
  clip-path: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 13%, transparent 13% 44%, rgba(255, 255, 255, 0.1) 44% 54%, transparent 54%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(135deg, var(--badge-bg) 0 62%, var(--badge-bg-2) 62% 100%);
  z-index: 0;
}

.club-badge::after,
.lineup-teamline .club-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: 34%;
  height: 2px;
  border-radius: 999px;
  background: var(--badge-accent);
  opacity: 0.88;
  transform: translateX(-50%);
}

.club-badge span {
  position: relative;
  z-index: 1;
  color: var(--badge-fg);
  font-family: var(--font-display);
  font-weight: 860;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.42);
}

.club-badge-large {
  width: 78px;
  height: 80px;
}

.club-badge-large span {
  font-size: 32px;
}

.lineup-teamline .club-badge-large {
  width: 46px;
  height: 48px;
}

.lineup-teamline .club-badge-large span {
  font-size: 18px;
}

.table-team-mark.club-badge-small {
  width: 28px;
  height: 29px;
  flex-basis: 28px;
  background:
    linear-gradient(var(--badge-ring), var(--badge-ring)),
    linear-gradient(135deg, var(--badge-bg) 0 62%, var(--badge-bg-2) 62% 100%);
  box-shadow:
    0 5px 10px rgba(12, 14, 12, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.table-team-mark.club-badge-small::before {
  inset: 2px;
}

.table-team-mark.club-badge-small::after {
  bottom: 15%;
  width: 33%;
  height: 1.5px;
}

.table-team-mark.club-badge-small span,
.table-team-mark.club-badge-small {
  color: var(--badge-fg);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 880;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.38);
}

.calendar-day.has-match .table-team-mark.club-badge-small {
  width: 25px;
  height: 26px;
  font-size: 9px;
}

.calendar-match .table-team-mark.club-badge-small {
  width: 44px;
  height: 46px;
  flex-basis: 44px;
  font-size: 15px;
}

@media (max-width: 374px) {
  .table-team-mark.club-badge-small {
    width: 24px;
    height: 25px;
    flex-basis: 24px;
    font-size: 8.5px;
  }
}

/* v53: softer Real-style typography and curved generic crests. */
:root {
  --font-display: "Inter", "Aptos Display", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-num: "Barlow Condensed", Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
}

.phone,
.phone * {
  letter-spacing: 0;
}

.brand h1,
.screen-title,
.match-name,
.hero-copy h2,
.hero-copy h3,
.news-hero h3,
.story-card h3,
.summary-card h3,
.panel-title,
.competition-picker button,
.standings-header strong,
.club-cell strong,
.squad-overview strong,
.squad-group h3,
.squad-row strong {
  font-family: var(--font-ui);
}

.brand h1 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.08;
}

.brand span {
  font-size: 11.5px;
  font-weight: 560;
}

.screen-title {
  font-size: 29px;
  font-weight: 700;
  line-height: 1.08;
}

.match-name {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.12;
}

.games-segment button {
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 610;
}

.games-segment button.active {
  font-weight: 700;
}

.competition-picker button {
  font-size: 22px;
  font-weight: 650;
  line-height: 1.12;
}

.competition-picker strong {
  font-size: 15px;
  font-weight: 540;
}

.standings-header strong {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.08;
}

.standings-row {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 560;
}

.standings-row.table-head {
  font-size: 10.5px;
  font-weight: 700;
}

.rank {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 650;
}

.club-cell strong {
  font-size: 16px;
  font-weight: 620;
  line-height: 1.12;
}

.standings-row > span:not(.club-cell):not(.rank) {
  font-weight: 520;
  font-variant-numeric: tabular-nums;
}

.standings-row .points {
  font-weight: 700;
}

.squad-overview strong {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.08;
}

.squad-group h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.12;
}

.squad-row strong {
  font-size: 16.5px;
  font-weight: 620;
  line-height: 1.14;
}

.squad-row small {
  font-weight: 600;
}

.score,
.lineup-status strong,
.kit-number,
.mini-number,
.squad-row em {
  font-family: var(--font-num);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.club-badge {
  display: block;
  overflow: visible;
  clip-path: none !important;
  color: var(--badge-fg);
  background: transparent !important;
  box-shadow: none !important;
  isolation: auto;
}

.club-badge::before,
.club-badge::after,
.lineup-teamline .club-badge::after {
  display: none;
  content: none;
}

.club-badge .badge-ring {
  fill: var(--badge-ring);
  stroke: var(--badge-outline, rgba(16, 17, 16, 0.28));
  stroke-width: 1.15px;
  paint-order: stroke fill;
  filter: drop-shadow(0 8px 14px rgba(12, 14, 12, 0.18));
}

.club-badge .badge-base {
  fill: var(--badge-bg);
}

.club-badge .badge-panel {
  fill: var(--badge-bg-2);
  opacity: 0.96;
}

.club-badge .badge-shine {
  fill: #ffffff;
  opacity: 0.11;
}

.club-badge .badge-accent-line {
  fill: none;
  stroke: var(--badge-accent);
  stroke-width: 2.3;
  stroke-linecap: round;
  opacity: 0.86;
}

.club-badge .badge-vertical-accent {
  fill: var(--badge-accent);
  opacity: 0.9;
}

.club-badge .badge-code {
  fill: var(--badge-fg);
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-anchor: middle;
  dominant-baseline: middle;
  paint-order: stroke;
  stroke: rgba(0, 0, 0, 0.24);
  stroke-width: 0.55px;
}

.club-badge[data-code-length="3"] .badge-code {
  font-size: 19.5px;
}

.club-badge-large {
  width: 78px;
  height: 86px;
}

.lineup-teamline .club-badge-large {
  width: 46px;
  height: 52px;
}

.table-team-mark.club-badge-small {
  width: 30px;
  height: 34px;
  flex-basis: 30px;
  font-size: inherit;
}

.calendar-day.has-match .table-team-mark.club-badge-small {
  width: 26px;
  height: 30px;
}

.calendar-match .table-team-mark.club-badge-small {
  width: 48px;
  height: 54px;
  flex-basis: 48px;
}

@media (max-width: 374px) {
  .screen-title {
    font-size: 27px;
  }

  .club-cell strong {
    font-size: 14.5px;
  }

  .table-team-mark.club-badge-small {
    width: 26px;
    height: 30px;
    flex-basis: 26px;
  }
}

/* v55: Real-style standings density so full club names have room. */
.standings-table {
  padding: 6px 14px 8px;
}

.standings-row {
  min-height: 58px;
  grid-template-columns: 26px minmax(0, 1fr) 24px 21px 21px 21px 29px 29px;
  color: #515a66;
  font-size: 13.25px;
  font-weight: 500;
}

.standings-row.table-head {
  min-height: 32px;
  color: #697382;
  font-size: 10px;
  font-weight: 700;
}

.standings-row.sturm-row {
  min-height: 60px;
  margin: 3px -1px;
  border-radius: 13px;
}

.rank {
  color: #566071;
  font-size: 16px;
  font-weight: 560;
}

.club-cell {
  gap: 7px;
}

.club-cell strong {
  color: #182235;
  font-size: 13.6px;
  font-weight: 560;
  line-height: 1.08;
  text-overflow: clip;
}

.standings-row > span:not(.club-cell):not(.rank) {
  color: #515d6c;
  font-size: 13.15px;
  font-weight: 480;
}

.standings-row .points {
  color: #111827;
  font-size: 13.6px;
  font-weight: 690;
}

.table-team-mark.club-badge-small {
  width: 24px;
  height: 27px;
  flex-basis: 24px;
}

.table-team-mark.club-badge-small .badge-ring {
  filter: drop-shadow(0 4px 8px rgba(12, 14, 12, 0.13));
}

.table-team-mark.club-badge-small .badge-code {
  font-size: 21px;
  stroke-width: 0.45px;
}

.table-team-mark.club-badge-small[data-code-length="3"] .badge-code {
  font-size: 17px;
}

@media (max-width: 374px) {
  .standings-table {
    padding-right: 9px;
    padding-left: 9px;
  }

  .standings-row {
    grid-template-columns: 24px minmax(0, 1fr) 22px 19px 19px 19px 27px 27px;
    font-size: 12.35px;
  }

  .club-cell {
    gap: 6px;
  }

  .club-cell strong {
    font-size: 12.45px;
  }

  .standings-row > span:not(.club-cell):not(.rank),
  .standings-row .points {
    font-size: 12.1px;
  }

  .table-team-mark.club-badge-small {
    width: 22px;
    height: 25px;
    flex-basis: 22px;
  }
}

/* v58: give the stats columns a little more air without making club names cramped. */
.standings-table {
  padding-right: 10px;
  padding-left: 12px;
}

.standings-row {
  grid-template-columns: 26px minmax(0, 1fr) 26px 23px 23px 23px 32px 31px;
  column-gap: 2px;
}

.standings-row.table-head {
  column-gap: 2px;
}

.standings-row .points {
  font-weight: 560;
}

.sturm-row .points {
  font-weight: 560;
}

@media (max-width: 374px) {
  .standings-table {
    padding-right: 8px;
    padding-left: 8px;
  }

  .standings-row {
    grid-template-columns: 23px minmax(0, 1fr) 24px 21px 21px 21px 29px 28px;
    column-gap: 1px;
  }
}

#root .phone .standings-row > span.points,
#root .phone .standings-row.sturm-row > span.points {
  font-weight: 560;
}

/* v61: keep the club header fixed while the screen content scrolls. */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #101110;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(16, 17, 16, 0.08);
}

.topbar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

/* v62: replace rank-side zone markers with the playoff divider after sixth place. */
#root .phone .standings-row::before,
#root .phone .standings-row.sturm-row::before,
#root .phone .standings-row.zone-title::before,
#root .phone .standings-row.zone-europe::before,
#root .phone .standings-row.zone-split::before,
#root .phone .standings-row.zone-risk::before {
  display: none;
}

#root .phone .standings-row.playoff-split {
  margin-top: 8px;
  border-top: 3px solid #d2d6dd;
}

#root .phone .standings-row.playoff-split::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: #d2d6dd;
  pointer-events: none;
}

/* v63: shared team selector for calendar, table and squad. */
.team-picker {
  position: relative;
  z-index: 35;
  margin-bottom: 18px;
}

.team-picker .team-picker-button {
  min-height: 36px;
  padding: 0 8px;
  border-radius: 999px;
  color: #101110;
  font-size: 22px;
  font-weight: 640;
}

.team-picker .team-picker-button svg {
  transition: transform 180ms ease;
}

.team-picker.open .team-picker-button svg {
  transform: rotate(180deg);
}

.team-picker-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  width: min(332px, calc(100vw - 42px));
  padding: 8px;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 44px rgba(17, 24, 39, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.team-picker-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(17, 24, 39, 0.09);
  border-left: 1px solid rgba(17, 24, 39, 0.09);
  background: rgba(255, 255, 255, 0.98);
  transform: translateX(-50%) rotate(45deg);
}

.team-picker-menu .team-picker-option {
  position: relative;
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border: 0;
  border-radius: 14px;
  color: #172033;
  background: transparent;
  text-align: left;
}

.team-picker-option + .team-picker-option {
  margin-top: 2px;
}

.team-picker-option strong,
.team-picker-option small {
  display: block;
}

.team-picker-option strong {
  color: inherit;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.12;
}

.team-picker-option small {
  margin-top: 3px;
  color: #6d7688;
  font-size: 11.5px;
  font-weight: 520;
  line-height: 1.2;
}

.team-picker-option.active {
  color: #ffffff;
  background: #101110;
}

.team-picker-option.active small {
  color: rgba(255, 255, 255, 0.66);
}

.team-picker-option svg {
  flex: 0 0 auto;
}

.data-empty {
  padding: 18px;
}

.data-empty h3 {
  margin: 0 0 8px;
  color: #111827;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.14;
}

.data-empty p {
  margin: 0;
  color: #6d7688;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
}

@media (max-width: 374px) {
  .team-picker .team-picker-button {
    font-size: 20px;
  }

  .team-picker-menu {
    width: min(316px, calc(100vw - 28px));
  }
}

/* v64: app-wide Real-style type system. Inter leads; condensed type is reserved for numbers and badge codes. */
:root {
  --font-display: "Inter", "Aptos Display", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-num: "Barlow Condensed", Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
}

#root .phone,
#root .phone button,
#root .phone a {
  font-family: var(--font-ui);
  letter-spacing: 0;
}

#root .phone :is(
  .brand h1,
  .brand span,
  .screen-title,
  .hero-kicker,
  .match-name,
  .match-meta,
  .countdown-strip,
  .menu-grid strong,
  .menu-grid small,
  .section h3,
  .row,
  .action,
  .news-hero-head,
  .news-hero h3,
  .news-hero p,
  .editorial-hero h3,
  .editorial-hero p,
  .hero-cta,
  .feature-label,
  .feature-card strong,
  .feature-card small,
  .news-row,
  .news-copy strong,
  .news-copy small,
  .pk-status,
  .pk-summary strong,
  .pk-summary p,
  .point-row strong,
  .point-row small,
  .transcript-row strong,
  .transcript-row small,
  .lineup-status span,
  .lineup-status small,
  .lineup-teamline strong,
  .lineup-head span,
  .lineup-head strong,
  .kit-card strong,
  .bench-player strong,
  .profile-mark,
  .profile-card h3,
  .profile-card p,
  .profile-button,
  .menu-group h3,
  .menu-line span,
  .nav-item,
  .games-segment button,
  .team-picker .team-picker-button,
  .team-picker-option strong,
  .team-picker-option small,
  .month-rail button,
  .weekday-row span,
  .calendar-day span,
  .calendar-card,
  .calendar-card b,
  .competition-picker button,
  .competition-picker strong,
  .standings-row,
  .standings-row.table-head,
  .club-cell strong,
  .squad-overview span,
  .squad-overview strong,
  .squad-overview a,
  .squad-group h3,
  .squad-group header span,
  .squad-row strong,
  .squad-row small,
  .data-empty h3,
  .data-empty p
) {
  font-family: var(--font-ui);
}

#root .phone .brand h1 {
  font-size: 18px;
  font-weight: 650;
  line-height: 1.08;
}

#root .phone .brand span {
  font-size: 11.5px;
  font-weight: 480;
  line-height: 1.18;
}

#root .phone .screen-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
}

#root .phone :is(.editorial-hero h3, .news-hero h3) {
  font-size: 32px;
  font-weight: 690;
  line-height: 1.08;
}

#root .phone :is(.editorial-hero p, .news-hero p) {
  font-size: 14.5px;
  font-weight: 450;
  line-height: 1.4;
}

#root .phone .news-hero-head,
#root .phone .feature-label,
#root .phone .hero-kicker,
#root .phone .calendar-card > span,
#root .phone .squad-overview span,
#root .phone .standings-header span,
#root .phone .lineup-status span,
#root .phone .lineup-head span,
#root .phone .pk-status span {
  font-size: 11px;
  font-weight: 620;
  line-height: 1.16;
  text-transform: uppercase;
}

#root .phone .match-name {
  font-size: 20.5px;
  font-weight: 650;
  line-height: 1.12;
}

#root .phone :is(.section h3, .profile-card h3, .data-empty h3) {
  font-size: 17px;
  font-weight: 660;
  line-height: 1.16;
}

#root .phone .menu-group h3 {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.04;
}

#root .phone :is(.row, .menu-line span, .action, .profile-button, .hero-cta) {
  font-size: 14px;
  font-weight: 560;
  line-height: 1.22;
}

#root .phone .action.bright {
  font-weight: 630;
}

#root .phone .feature-card strong {
  font-size: 19px;
  font-weight: 640;
  line-height: 1.12;
}

#root .phone .feature-card small {
  font-size: 12.5px;
  font-weight: 450;
  line-height: 1.35;
}

#root .phone .news-copy strong,
#root .phone .news-list .news-row:first-of-type .news-copy strong {
  font-size: 16px;
  font-weight: 640;
  line-height: 1.18;
}

#root .phone .news-copy small,
#root .phone .news-list .news-row:first-of-type .news-copy small {
  font-size: 11.5px;
  font-weight: 460;
  line-height: 1.3;
}

#root .phone :is(.pk-status strong, .point-row strong, .transcript-row strong) {
  font-size: 14.5px;
  font-weight: 620;
  line-height: 1.24;
}

#root .phone :is(.point-row small, .transcript-row small, .pk-summary p, .profile-card p, .data-empty p) {
  font-size: 13px;
  font-weight: 450;
  line-height: 1.42;
}

#root .phone .pk-summary strong {
  font-size: 20px;
  font-weight: 670;
  line-height: 1.12;
}

#root .phone .lineup-teamline strong,
#root .phone .lineup-head strong {
  font-size: 16px;
  font-weight: 640;
  line-height: 1.15;
}

#root .phone .kit-card strong,
#root .phone .bench-player strong {
  font-size: 11px;
  font-weight: 620;
  line-height: 1.08;
}

#root .phone .nav-item {
  font-size: 11.5px;
  font-weight: 540;
}

#root .phone .nav-item.active {
  font-weight: 650;
}

#root .phone .games-segment button {
  font-size: 14.5px;
  font-weight: 520;
}

#root .phone .games-segment button.active {
  font-weight: 650;
}

#root .phone .team-picker .team-picker-button,
#root .phone .competition-picker button {
  font-size: 21px;
  font-weight: 620;
  line-height: 1.14;
}

#root .phone .competition-picker strong {
  font-size: 14px;
  font-weight: 450;
}

#root .phone .month-rail button {
  font-size: 16px;
  font-weight: 450;
}

#root .phone .month-rail button.active {
  font-weight: 620;
}

#root .phone .calendar-card > strong {
  font-size: 20px;
  font-weight: 620;
  line-height: 1.14;
}

#root .phone .calendar-card b {
  font-size: 13.5px;
  font-weight: 560;
  line-height: 1.15;
}

#root .phone .squad-overview strong {
  font-size: 24px;
  font-weight: 660;
}

#root .phone .squad-group h3 {
  font-size: 20px;
  font-weight: 660;
}

#root .phone .squad-row strong {
  font-size: 16px;
  font-weight: 560;
}

#root .phone .squad-row small {
  font-size: 11.5px;
  font-weight: 500;
}

#root .phone :is(.score, .versus, .lineup-status strong, .kit-number, .mini-number, .squad-row em, .transcript-row > span, .club-badge .badge-code) {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
}

#root .phone .score {
  font-weight: 780;
}

#root .phone .versus {
  font-weight: 700;
}

#root .phone .lineup-status strong {
  font-size: 42px;
  font-weight: 780;
  line-height: 0.95;
}

@media (max-width: 374px) {
  #root .phone .screen-title {
    font-size: 28px;
  }

  #root .phone :is(.editorial-hero h3, .news-hero h3) {
    font-size: 29px;
  }

  #root .phone .team-picker .team-picker-button,
  #root .phone .competition-picker button {
    font-size: 19px;
  }
}

/* Pressespiegel pass v65: compact external-source previews with three-sentence sheets. */
#root .phone .section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

#root .phone .section-head h3 {
  margin: 0;
}

#root .phone .section-head :is(span, a) {
  color: #7f8792;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.3;
  text-align: right;
  text-decoration: none;
}

#root .phone .section-note {
  margin: -2px 0 11px;
  color: #77808a;
  font-size: 12.5px;
  font-weight: 450;
  line-height: 1.35;
}

#root .phone .press-intro {
  display: grid;
  gap: 7px;
  margin-bottom: 10px;
  padding: 18px 16px;
  border: 1px solid rgba(6, 7, 6, 0.08);
  border-radius: 18px;
  color: #070807;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.92) 0 4px, transparent 4px),
    linear-gradient(135deg, #ffffff, #f5f6f8);
  box-shadow: 0 14px 28px rgba(9, 13, 18, 0.08);
}

#root .phone .press-intro span {
  color: #757d86;
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .press-intro strong {
  font-size: 21px;
  font-weight: 680;
  line-height: 1.12;
}

#root .phone .press-intro p {
  margin: 0;
  color: #606872;
  font-size: 13px;
  font-weight: 430;
  line-height: 1.42;
}

#root .phone .news-thumb.press {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.78)),
    linear-gradient(135deg, #0b0c0b 0 34%, #f5f4f0 34% 38%, #242724 38% 100%);
}

#root .phone .press-list .news-row {
  min-height: 92px;
}

#root .phone .press-list .news-copy strong {
  font-size: 15.5px;
  font-weight: 590;
  line-height: 1.22;
}

#root .phone .press-list .news-copy small {
  font-size: 11.2px;
  font-weight: 430;
}

#root .phone .sheet-summary {
  display: block;
  margin: 10px 0 4px;
}

#root .phone .sheet-summary p {
  margin: 0;
  padding-left: 0;
  color: #29313a;
  font-size: 14px;
  font-weight: 430;
  line-height: 1.42;
}

#root .phone .sheet-summary p::before {
  content: none;
}

#root .phone :is(
  .section-head h3,
  .section-head span,
  .section-head a,
  .section-note,
  .press-intro,
  .press-intro span,
  .press-intro strong,
  .press-intro p,
  .sheet-summary p,
  .primary-link
) {
  font-family: var(--font-ui);
  letter-spacing: 0;
}

/* Badge distinction: shared shield system plus optional variants. */
#root .phone .club-badge[data-variant="lask"] .badge-vertical-accent {
  fill: var(--badge-accent);
  opacity: 0.9;
}

#root .phone .club-badge[data-variant="lask"] .badge-panel {
  opacity: 0.62;
}

#root .phone .club-badge[data-variant="lask"] .badge-accent-line {
  opacity: 0;
}

#root .phone .club-badge[data-variant="rapid"] .badge-panel {
  fill: #087b3f;
  opacity: 0.1;
}

#root .phone .club-badge[data-variant="rapid"] .badge-shine {
  fill: #087b3f;
  opacity: 0.06;
}

#root .phone .club-badge[data-variant="rapid"] .badge-accent-line {
  stroke: #087b3f;
  stroke-width: 2.45;
  opacity: 0.95;
}

#root .phone .club-badge[data-variant="rapid"] .badge-code {
  fill: #087b3f;
  paint-order: normal;
  stroke: transparent;
  stroke-width: 0;
}

#root .phone .club-badge[data-shape="round"] .badge-ring {
  filter: drop-shadow(0 7px 12px rgba(12, 14, 12, 0.14));
}

#root .phone .club-badge[data-shape="round"] .badge-shine {
  opacity: 0.28;
}

#root .phone .club-badge[data-shape="round"] .badge-accent-line {
  stroke-width: 3;
  opacity: 1;
}

#root .phone .club-badge[data-shape="round"] .badge-code {
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 720;
  stroke: transparent;
}

#root .phone .table-team-mark.club-badge-small[data-shape="round"] .badge-code {
  font-size: 18px;
  font-weight: 720;
}

#root .phone .calendar-day.has-match .table-team-mark.club-badge-small[data-shape="round"] .badge-code {
  font-size: 17px;
}

/* Lineup v69: keep event badges on the shirt without expanding the layout box. */
#root .phone .kit-wrap .event-badges,
#root .phone .kit-card.compact .event-badges {
  right: 0;
}

/* v71: Live season calendar from July 2026 to June 2027. */
#root .phone .month-rail {
  gap: 23px;
  padding-inline: 24px;
}

#root .phone .calendar-day {
  min-height: 56px;
}

#root .phone .calendar-day.empty {
  display: block;
  pointer-events: none;
}

#root .phone .calendar-day:not(.has-match) {
  color: #a4abb5;
}

#root .phone .calendar-day.has-match {
  cursor: pointer;
}

#root .phone .calendar-day .today-dot {
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #101110;
  transform: translateX(-50%);
}

#root .phone .calendar-day em {
  position: absolute;
  right: -2px;
  top: -3px;
  min-width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
  font-size: 9px;
  font-style: normal;
  font-weight: 720;
  line-height: 1;
}

#root .phone .calendar-card {
  overflow: hidden;
}

#root .phone .calendar-card.played .calendar-match button {
  border-color: #101110;
  color: #ffffff;
  background: #101110;
}

#root .phone .calendar-day.selected > span:first-child {
  background: transparent;
  font-weight: 760;
}

#root .phone .calendar-day.selected .table-team-mark {
  right: 2px;
  top: 2px;
  outline: 0;
  outline-offset: 0;
}

#root .phone .calendar-day.selected.has-match::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: #101110;
  transform: translateX(-50%);
}

#root .phone .calendar-match button span {
  font-size: 18px;
  font-weight: 690;
  line-height: 1;
  white-space: nowrap;
}

#root .phone .calendar-source {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px auto 0;
  color: #697386;
  font-size: 11.5px;
  font-weight: 520;
  line-height: 1.2;
  text-decoration: none;
}

#root .phone .calendar-source span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* v72: Free social hub without paid X API. */
#root .phone .social-hub-card,
#root .phone .social-search-panel {
  margin: 14px 18px 0;
  border-radius: 12px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(18, 24, 36, 0.08);
}

#root .phone .social-back-link {
  margin: 14px 18px 0;
  color: #101110;
  font-size: 13px;
  font-weight: 610;
}

#root .phone .social-back-link svg {
  stroke-width: 2.15;
}

#root .phone .social-hub-head {
  display: grid;
  grid-template-columns: 40px 1fr 34px;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

#root .phone .social-hub-head > span,
#root .phone .social-hub-head > a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
  text-decoration: none;
}

#root .phone .social-hub-head strong {
  display: block;
  color: #101110;
  font-size: 18px;
  font-weight: 680;
  line-height: 1.14;
}

#root .phone .social-hub-head small {
  color: #697386;
  font-size: 12px;
  font-weight: 460;
}

#root .phone .x-embed-frame {
  min-height: 372px;
  overflow: hidden;
  border: 1px solid #e5e8ef;
  border-radius: 10px;
  background: #f7f8fa;
}

#root .phone .x-embed-frame > a {
  min-height: 372px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #101110;
  font-size: 14px;
  font-weight: 620;
  text-align: center;
  text-decoration: none;
}

#root .phone .social-search-grid {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

#root .phone .social-search-grid a {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e5e8ef;
  border-radius: 9px;
  padding: 0 12px;
  color: #101110;
  background: #ffffff;
  font-size: 14px;
  font-weight: 560;
  text-decoration: none;
}

#root .phone .social-detail-grid {
  margin-top: 14px;
}

/* v99: Curated social hub with X embed, Instagram cards and podcast groups. */
#root .phone .x-live-card .social-hub-head > span {
  color: #101110;
  background: transparent;
  border-radius: 0;
}

#root .phone .social-hub-brand {
  width: 24px;
  height: 24px;
}

#root .phone .x-live-card .social-hub-head > a {
  color: #101110;
  background: #f4f4ef;
}

#root .phone .x-live-card .x-embed-frame {
  min-height: 420px;
  border-color: rgba(16, 17, 16, 0.08);
  border-radius: 14px;
  background: #f5f5f2;
}

#root .phone .instagram-social-panel {
  margin: 14px 18px 0;
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(18, 24, 36, 0.08);
}

#root .phone .instagram-card-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

#root .phone .instagram-card-rail::-webkit-scrollbar {
  display: none;
}

#root .phone .instagram-post-card {
  flex: 0 0 76%;
  min-height: 292px;
  display: grid;
  align-content: start;
  gap: 10px;
  scroll-snap-align: start;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 16px;
  padding: 13px;
  background: linear-gradient(180deg, #ffffff, #f7f7f3);
  box-shadow: 0 10px 22px rgba(16, 17, 16, 0.07);
}

#root .phone .instagram-post-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #101110;
  font-size: 11px;
  font-weight: 680;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .instagram-post-brand,
#root .phone .instagram-fallback-brand {
  width: 20px;
  height: 20px;
}

#root .phone .instagram-post-card strong {
  color: #101110;
  font-size: 20px;
  font-weight: 680;
  line-height: 1.05;
}

#root .phone .instagram-embed {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 13px;
  background: #f1f1ec;
}

#root .phone .instagram-fallback-card {
  min-height: 178px;
  display: grid;
  place-items: center;
  gap: 8px;
  border-radius: 13px;
  color: #101110;
  background:
    repeating-linear-gradient(90deg, rgba(16, 17, 16, 0.06) 0 1px, transparent 1px 44px),
    linear-gradient(135deg, #f8f8f3, #eeeeea);
  text-align: center;
  text-decoration: none;
}

#root .phone .instagram-fallback-card span {
  font-size: 13px;
  font-weight: 650;
}

#root .phone .instagram-open-link {
  justify-self: start;
  color: #101110;
  font-size: 12px;
  font-weight: 690;
  text-decoration: none;
}

#root .phone .wide-podcast-card {
  min-height: auto;
  grid-column: 1 / -1;
}

#root .phone .podcast-groups {
  display: block;
  grid-column: 1 / -1;
  margin-top: 8px;
}

#root .phone .podcast-link-group {
  display: grid;
  gap: 5px;
}

#root .phone .podcast-group-break {
  display: block;
  content: "";
  margin: 8px 0 0;
}

#root .phone .podcast-group-break + .podcast-link-group {
  margin-top: 8px;
}

#root .phone .podcast-link-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#root .phone .podcast-link-title > span:last-child {
  color: #101110;
  font-size: 11.2px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .podcast-card .podcast-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  max-width: 100%;
  margin-top: 0;
  overflow-x: visible;
  padding-bottom: 1px;
}

#root .phone .podcast-card .podcast-links a {
  min-width: 0;
  justify-content: center;
  gap: 4px;
  padding-right: 4px;
  padding-left: 4px;
  background: #f4f4ef;
  color: #101110;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.1;
  white-space: nowrap;
}

#root .phone .podcast-platform-brand {
  width: 14px;
  height: 14px;
  color: #101110;
}

#root .phone .podcast-group-brand {
  width: 16px;
  height: 16px;
  color: #101110;
}

#root .phone .podcast-main-icon {
  grid-row: 1;
  align-self: center;
  color: #101110;
}

#root .phone .podcast-main-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.75;
}

#root .phone .podcast-group-brand.brand-mark-hoibe,
#root .phone .podcast-platform-brand.brand-mark-hoibe {
  border-radius: 4px;
  overflow: hidden;
}

#root .phone .podcast-group-brand.brand-mark-blackfm,
#root .phone .podcast-platform-brand.brand-mark-blackfm {
  border-radius: 3px;
  overflow: hidden;
}

@media (max-width: 374px) {
  #root .phone .instagram-post-card {
    flex-basis: 84%;
  }
}

/* v83: Matchday-only hero imagery. */
#root .phone .hero .asset-credit {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
  margin: 7px auto 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9.5px;
  font-weight: 430;
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* v85: Home match hub cleanup and light stadium treatment. */
#root .phone .home-matchday-hero {
  border: 1px solid rgba(16, 17, 16, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(246, 246, 241, 0.88)),
    linear-gradient(90deg, rgba(16, 17, 16, 0.05) 0 16%, transparent 16% 39%, rgba(16, 17, 16, 0.035) 39% 50%, transparent 50% 100%);
  color: #101110;
  box-shadow:
    0 18px 38px rgba(14, 16, 14, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

#root .phone .home-matchday-hero .home-hero-stadium {
  opacity: 0.58;
  object-position: center 54%;
  filter: grayscale(1) contrast(1.12) brightness(1.22);
  mix-blend-mode: multiply;
  transform: scale(1.02);
}

#root .phone .home-matchday-hero .home-hero-liebenau {
  opacity: 0.54;
  object-position: center 52%;
  filter: grayscale(1) contrast(1.08) brightness(1.24);
  transform: scale(1.01);
}

#root .phone .home-matchday-hero .home-hero-away {
  opacity: 0.6;
  object-position: center 56%;
  filter: grayscale(1) contrast(1.24) brightness(1.1);
  transform: scale(1.015);
}

#root .phone .home-matchday-hero::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18) 42%, rgba(246, 246, 241, 0.62)),
    linear-gradient(90deg, rgba(16, 17, 16, 0.055) 0 7px, transparent 7px 100%),
    linear-gradient(90deg, rgba(16, 17, 16, 0.038) 0 16%, transparent 16% 45%, rgba(16, 17, 16, 0.026) 45% 52%, transparent 52%);
  opacity: 1;
}

#root .phone .home-matchday-hero::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(16, 17, 16, 0.04)),
    radial-gradient(circle at 84% 16%, rgba(16, 17, 16, 0.09), transparent 25%);
}

#root .phone .home-matchday-hero .news-hero-head {
  color: rgba(16, 17, 16, 0.62);
}

#root .phone .home-matchday-hero h3 {
  color: #101110;
  text-shadow: none;
}

#root .phone .home-matchday-hero p {
  color: rgba(16, 17, 16, 0.74);
}

#root .phone .home-matchday-hero .source-pills span {
  border-color: rgba(16, 17, 16, 0.11);
  color: #101110;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
}

#root .phone .home-matchday-hero .hero-cta {
  color: #ffffff;
  background: #101110;
  box-shadow: 0 12px 26px rgba(16, 17, 16, 0.2);
}

#root .phone .home-matchday-hero .asset-credit {
  position: absolute;
  z-index: 3;
  right: 14px;
  top: 48px;
  max-width: 180px;
  overflow: hidden;
  color: rgba(16, 17, 16, 0.44);
  font-size: 8.5px;
  font-weight: 430;
  line-height: 1.1;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
}

#root .phone .hero-photo-liebenau {
  object-position: center 52%;
}

#root .phone .hero-photo-away {
  object-position: center 58%;
  filter: grayscale(1) saturate(0.86) contrast(1.04) brightness(0.9);
}

#root .phone .home-match-card {
  min-height: 94px;
  grid-template-columns: 1fr;
}

#root .phone .feature-rail {
  margin: 14px 18px 0;
  padding: 0 0 2px;
}

#root .phone .feature-card {
  border: 0;
  font: inherit;
  text-align: left;
}

#root .phone .feature-icon {
  border: 0;
  color: #ffffff;
  background: transparent;
  backdrop-filter: none;
}

#root .phone .integration-card {
  grid-template-columns: 30px 1fr;
  column-gap: 14px;
}

#root .phone .integration-icon {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  color: #101110;
  background: transparent;
  box-shadow: none;
}

#root .phone .integration-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.9;
}

#root .phone :is(.x-card, .instagram-card, .podcast-card) .integration-icon {
  color: #101110;
}

@media (max-width: 374px) {
  #root .phone .feature-rail {
    margin-right: 14px;
    margin-left: 14px;
    padding-right: 0;
    padding-left: 0;
  }
}

/* v86: Cleaner News page, compact Presse naming, no explainer blocks. */
#root .phone .news-page-stack {
  display: grid;
  gap: 12px;
  margin: 0 18px;
}

#root .phone .news-featured {
  width: 100%;
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 18px;
  padding: 0;
  color: #101110;
  background: #ffffff;
  text-align: left;
  box-shadow:
    0 14px 32px rgba(14, 16, 14, 0.095),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

#root .phone .news-featured-image-wrap {
  position: relative;
  min-height: 186px;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(135deg, #101110 0 48%, #f5f4ef 48% 52%, #252925 52% 100%);
  isolation: isolate;
}

#root .phone .news-featured-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 16%, transparent 16% 100%);
}

#root .phone .news-featured-image {
  width: 100%;
  height: 186px;
  display: block;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.04);
}

#root .phone .news-featured .thumb-glyph {
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: auto;
  width: 38px;
  height: 38px;
}

#root .phone .news-featured-copy {
  display: grid;
  gap: 7px;
  padding: 15px 16px 16px;
}

#root .phone .news-featured-copy span {
  color: #71786e;
  font-size: 11px;
  font-weight: 680;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .news-featured-copy strong {
  color: #101110;
  font-size: 25px;
  font-weight: 690;
  line-height: 1.03;
}

#root .phone .news-featured-copy small {
  color: #697064;
  font-size: 12px;
  font-weight: 480;
  line-height: 1.2;
}

#root .phone .news-feed-tabs {
  margin: 0;
}

#root .phone .news-page-list {
  margin-top: 14px;
  padding: 14px 0 6px;
}

#root .phone .news-page-list .section-head {
  padding: 0 14px;
  margin-bottom: 4px;
}

#root .phone .news-page-list .news-row,
#root .phone .news-page-list .news-row:first-of-type {
  min-height: 84px;
  grid-template-columns: 74px 1fr 14px;
  gap: 12px;
  padding: 10px 14px;
  border-top: 1px solid rgba(12, 14, 12, 0.075);
}

#root .phone .news-page-list .news-row:first-of-type {
  padding-bottom: 10px;
}

#root .phone .news-page-list .news-row:first-of-type .news-thumb,
#root .phone .news-page-list .news-thumb {
  width: 74px;
  height: 56px;
  border-radius: 10px;
}

#root .phone .news-page-list .news-row:first-of-type .news-copy,
#root .phone .news-page-list .news-copy {
  align-self: center;
}

#root .phone .news-page-list .news-row:first-of-type .news-copy strong,
#root .phone .news-page-list .news-copy strong,
#root .phone .news-page-list.press-list .news-copy strong {
  color: #101110;
  font-size: 15.2px;
  font-weight: 580;
  line-height: 1.2;
}

#root .phone .news-page-list .news-row:first-of-type .news-copy small,
#root .phone .news-page-list .news-copy small,
#root .phone .news-page-list.press-list .news-copy small {
  color: #71786e;
  font-size: 11.2px;
  font-weight: 430;
  line-height: 1.28;
}

#root .phone .news-page-list .news-row:first-of-type .arrow {
  display: inline;
}

@media (max-width: 374px) {
  #root .phone .news-page-stack {
    margin-right: 14px;
    margin-left: 14px;
  }

  #root .phone .news-featured-image-wrap,
  #root .phone .news-featured-image {
    min-height: 168px;
    height: 168px;
  }

  #root .phone .news-featured-copy strong {
    font-size: 22px;
  }
}

/* v91: Echte Social- und Quellenmarken statt generischer Icon-Kreise. */
#root .phone .brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  color: currentColor;
}

#root .phone .brand-mark svg,
#root .phone .brand-logo {
  display: block;
  width: 100%;
  height: 100%;
}

#root .phone .brand-mark:not(.brand-mark-instagram) svg path {
  fill: currentColor;
}

#root .phone .brand-logo {
  object-fit: contain;
}

#root .phone .brand-mark-laola1 .brand-logo {
  width: 100%;
  height: 100%;
  padding: 16%;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
  background: #ffffff;
  filter: grayscale(1) contrast(2.35);
  transform: none;
}

#root .phone .brand-mark-kleine .brand-logo {
  border-radius: inherit;
  object-fit: contain;
  filter: none;
}

#root .phone .brand-mark-krone .brand-logo {
  object-fit: contain;
  filter: none;
  transform: scale(1.08);
}

#root .phone .brand-mark-hoibe .brand-logo {
  border-radius: inherit;
  object-fit: cover;
  filter: grayscale(1) invert(1) contrast(1.18) brightness(1.04);
}

#root .phone .brand-mark-blackfm .brand-logo {
  object-fit: contain;
  filter: none;
  transform: scale(1.08);
}

#root .phone .brand-wordmark-shell,
#root .phone .brand-letter-shell {
  display: inline-grid;
  place-items: center;
  color: currentColor;
}

#root .phone .brand-wordmark {
  display: block;
  color: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-0.5px);
}

#root .phone .brand-letter {
  display: block;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

#root .phone .brand-mark-kicker.brand-letter-shell {
  border-radius: inherit;
  background: transparent;
  color: #101110;
}

#root .phone .brand-letter-kicker {
  font-family: "Barlow Condensed", "Arial Narrow", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 15px;
  font-weight: 850;
  line-height: 0.9;
  text-transform: lowercase;
  transform: skew(-8deg);
}

#root .phone .brand-mark-sturmnetz .brand-sturmnetz-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: currentColor;
  font-family: "Barlow Condensed", "Arial Narrow", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: scaleX(0.72) skew(-7deg);
}

#root .phone .brand-mark-sturmnetz .brand-sturmnetz-lockup span {
  display: block;
}

#root .phone .brand-flag-shell svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#root .phone .brand-mark-spotify .brand-cutout {
  fill: none !important;
  stroke: #ffffff;
  stroke-width: 1.35;
  stroke-linecap: round;
}

#root .phone .brand-mark-amazonmusic .brand-stroke {
  fill: none !important;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#root .phone .brand-fallback {
  display: none;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 7px;
  color: #ffffff;
  background: #101110;
  font-size: 10px;
  font-weight: 760;
  line-height: 1;
}

#root .phone .brand-mark.is-fallback .brand-fallback {
  display: grid;
}

#root .phone .brand-mark-laola1 .brand-fallback {
  background: #e30613;
}

#root .phone .brand-mark-kleine .brand-fallback {
  background: #004f9e;
}

#root .phone .brand-mark-krone .brand-fallback {
  background: #c6002b;
}

#root .phone .integration-brand-mark {
  width: 24px;
  height: 24px;
}

#root .phone .feature-brand-mark {
  width: 22px;
  height: 22px;
}

#root .phone .feature-icon .brand-mark-instagram,
#root .phone .integration-icon .brand-mark-instagram {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

#root .phone .integration-icon .brand-mark-x {
  width: 25px;
  height: 25px;
}

#root .phone .integration-icon .brand-mark-hoibe {
  width: 23px;
  height: 23px;
  border-radius: 5px;
  overflow: hidden;
}

#root .phone .feature-icon .brand-mark-hoibe {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

#root .phone .press-source-marks {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

#root .phone .press-head-meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

#root .phone .press-source-mark {
  width: 18px;
  height: 18px;
  padding: 2px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 999px;
  color: #101110;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(16, 17, 16, 0.09);
  overflow: hidden;
}

#root .phone .press-source-mark .brand-fallback {
  font-size: 7.5px;
}

#root .phone .press-source-mark.brand-mark-kleine .brand-logo {
  filter: none;
  transform: scale(1.82);
}

#root .phone .press-source-mark.brand-mark-laola1 .brand-logo {
  width: 100%;
  height: 100%;
  padding: 16%;
  background: #ffffff;
  filter: grayscale(1) contrast(2.45);
  transform: none;
}

#root .phone .press-source-mark.brand-mark-krone .brand-logo {
  filter: none;
  transform: scale(1.5);
}

#root .phone .press-source-mark.brand-mark-sturmnetz .brand-sturmnetz-lockup {
  font-size: 8px;
}

#root .phone .thumb-glyph.brand-source-badge {
  width: 24px;
  height: 24px;
  left: 7px;
  bottom: 5px;
  padding: 2px;
  color: #101110;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(12, 14, 12, 0.08);
  box-shadow:
    0 7px 18px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

#root .phone .thumb-glyph.brand-source-badge .brand-mark {
  overflow: hidden;
  border-radius: inherit;
}

#root .phone .thumb-glyph.brand-source-badge .brand-mark-laola1 .brand-logo {
  width: 100%;
  height: 100%;
  padding: 16%;
  background: #ffffff;
  filter: grayscale(1) contrast(2.35);
  transform: none;
}

#root .phone .thumb-glyph.brand-source-badge .brand-mark-kleine .brand-logo {
  background: #ffffff;
  filter: none;
  transform: scale(1.82);
}

#root .phone .thumb-glyph.brand-source-badge .brand-mark-krone .brand-logo {
  transform: scale(1.42);
}

#root .phone .thumb-glyph.brand-source-badge .brand-mark-sturmnetz .brand-sturmnetz-lockup {
  font-size: 11px;
}

#root .phone .news-featured .thumb-glyph.brand-source-badge .brand-mark-laola1 .brand-logo {
  width: 100%;
  height: 100%;
  padding: 16%;
  transform: none;
}

#root .phone .news-featured .thumb-glyph.brand-source-badge .brand-mark-kleine .brand-logo {
  transform: scale(1.72);
}

#root .phone .news-featured .thumb-glyph.brand-source-badge .brand-mark-krone .brand-logo {
  transform: scale(1.34);
}

#root .phone .news-featured .thumb-glyph.brand-source-badge .brand-mark-sturmnetz .brand-sturmnetz-lockup {
  font-size: 13px;
}

#root .phone .thumb-glyph.brand-source-stack {
  width: 43px;
  grid-template-columns: repeat(2, 16px);
  gap: 3px;
  padding: 4px;
}

#root .phone .news-brand-mark {
  width: 100%;
  height: 100%;
}

#root .phone .news-featured .thumb-glyph.brand-source-badge {
  width: 30px;
  height: 30px;
  right: auto;
  bottom: 8px;
  left: 12px;
  padding: 3px;
}

#root .phone .news-featured .thumb-glyph.brand-source-stack {
  width: 49px;
  grid-template-columns: repeat(2, 18px);
  gap: 4px;
  padding: 6px;
}

#root .phone .news-featured-brand-mark {
  width: 100%;
  height: 100%;
}

/* v100: Final monochrome brand sizing overrides. */
#root .phone .brand-mark.podcast-platform-brand {
  width: 14px;
  min-width: 14px;
  height: 14px;
  flex-basis: 14px;
}

#root .phone .brand-mark.podcast-group-brand {
  width: 16px;
  min-width: 16px;
  height: 16px;
  flex-basis: 16px;
}

#root .phone .brand-mark.podcast-group-brand.brand-mark-hoibe,
#root .phone .brand-mark.podcast-platform-brand.brand-mark-hoibe {
  border-radius: 4px;
  overflow: hidden;
}

#root .phone .brand-mark.podcast-group-brand.brand-mark-blackfm,
#root .phone .brand-mark.podcast-platform-brand.brand-mark-blackfm {
  border-radius: 3px;
  overflow: hidden;
}

#root .phone .section-head .press-source-mark,
#root .phone .press-head-meta .press-source-mark,
#root .phone .brand-mark.press-source-mark {
  width: 18px;
  min-width: 18px;
  height: 18px;
  flex-basis: 18px;
  color: #101110;
  background: #ffffff;
}

/* v122: match interaction screens for lineup guesses and player voting. */
#root .phone .quick-grid > button {
  appearance: none;
  border: 0;
  border-left: 1px solid var(--line-soft);
  background: transparent;
}

#root .phone .quick-grid > :is(div, button) {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--text);
  font-size: 12px;
  font-weight: 520;
  line-height: 1.1;
  text-align: center;
}

#root .phone .quick-grid > :is(div, button):first-child {
  border-left: 0;
}

#root .phone .quick-grid > :is(div, button) svg {
  color: var(--accent);
}

#root .phone .interaction-back {
  margin-top: 1px;
}

#root .phone .interaction-card {
  margin-top: 4px;
  padding: 16px 17px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.1), transparent 29%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 34%),
    #080908;
}

#root .phone .interaction-card.open {
  border-color: rgba(216, 210, 199, 0.34);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(216, 210, 199, 0.07);
}

#root .phone .interaction-card.locked {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), transparent 36%),
    #0c0d0c;
}

#root .phone .interaction-card > span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 740;
  text-transform: uppercase;
}

#root .phone .interaction-card h3 {
  margin: 9px 0 6px;
  color: #f7f4ef;
  font-size: 26px;
  font-weight: 760;
  line-height: 1.05;
}

#root .phone .interaction-card small {
  display: block;
  color: #bbb6ae;
  font-size: 12px;
  font-weight: 470;
  line-height: 1.25;
}

#root .phone .interaction-status-line,
#root .phone .interaction-counter {
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#root .phone .interaction-status-line strong,
#root .phone .interaction-counter strong {
  color: #f7f4ef;
  font-size: 15px;
  font-weight: 720;
  line-height: 1;
}

#root .phone .interaction-status-line em,
#root .phone .interaction-counter span {
  color: #c7c1b8;
  font-size: 12px;
  font-style: normal;
  font-weight: 520;
  line-height: 1.15;
  text-align: right;
}

#root .phone .interaction-counter strong {
  font-family: var(--font-num);
  font-size: 27px;
  font-weight: 760;
}

#root .phone .interaction-panel {
  margin-top: 11px;
  padding: 13px;
}

#root .phone .choice-grid {
  display: grid;
  gap: 8px;
}

#root .phone .player-choice {
  min-width: 0;
  min-height: 50px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #f5f2ed;
  text-align: left;
}

#root .phone .lineup-choice-grid .player-choice {
  grid-template-columns: 38px 1fr;
}

#root .phone .player-choice em {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-family: var(--font-num);
  font-size: 18px;
  font-style: normal;
  font-weight: 760;
  line-height: 1;
}

#root .phone .player-choice span {
  min-width: 0;
}

#root .phone .player-choice strong {
  display: block;
  overflow: hidden;
  color: #f6f4ef;
  font-size: 14px;
  font-weight: 670;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .player-choice small {
  display: block;
  margin-top: 3px;
  color: #aba59c;
  font-size: 11.5px;
  font-weight: 510;
  line-height: 1.1;
}

#root .phone .player-choice.selected {
  border-color: rgba(246, 244, 239, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    #111211;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 8px 16px rgba(0, 0, 0, 0.18);
}

#root .phone .player-choice.selected em {
  background: #f6f4ef;
  color: #070807;
}

#root .phone .player-choice:disabled {
  cursor: default;
  opacity: 0.52;
}

#root .phone .player-choice.selected:disabled {
  opacity: 0.86;
}

#root .phone .potm-choice svg {
  color: var(--accent);
}

/* v161: Player-of-the-match uses compact white app styling and lineup kit visuals. */
#root .phone .potm-hero {
  margin-top: 4px;
  padding: 14px;
  border-color: rgba(16, 17, 16, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(16, 17, 16, 0.045), transparent 46%),
    linear-gradient(180deg, #ffffff 0%, #f6f5f1 100%);
  color: #101110;
  box-shadow: 0 18px 34px rgba(16, 17, 16, 0.1);
}

#root .phone .potm-score-strip {
  min-height: 54px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
}

#root .phone .potm-score-strip .team-mark {
  width: 44px;
  height: 48px;
  filter: none;
}

#root .phone .potm-score-strip .club-badge .badge-code {
  font-size: 15px;
}

#root .phone .potm-score-strip > strong {
  color: #101110;
  font-family: var(--font-num);
  font-size: 30px;
  font-weight: 780;
  line-height: 1;
  text-align: center;
}

#root .phone .potm-hero-copy {
  margin-top: 9px;
}

#root .phone .potm-hero-copy > span,
#root .phone .potm-hero > span {
  display: block;
  color: #5f675f;
  font-size: 10.8px;
  font-weight: 780;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .potm-hero h3 {
  margin: 7px 0 5px;
  color: #101110;
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 760;
  line-height: 1.08;
}

#root .phone .potm-hero small {
  display: block;
  color: #4f574f;
  font-size: 12px;
  font-weight: 540;
  line-height: 1.25;
}

#root .phone .potm-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

#root .phone .potm-hero .interaction-status-line,
#root .phone .potm-hero .interaction-counter {
  min-height: 55px;
  display: grid;
  align-content: center;
  gap: 4px;
  margin-top: 0;
  padding: 10px 11px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 14px;
  background: #f0efeb;
}

#root .phone .potm-hero .interaction-status-line strong,
#root .phone .potm-hero .interaction-counter strong {
  overflow: hidden;
  color: #101110;
  font-family: var(--font-ui);
  font-size: 13.4px;
  font-weight: 760;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .potm-hero .interaction-status-line em,
#root .phone .potm-hero .interaction-counter span {
  color: #515951;
  font-size: 11.2px;
  font-weight: 570;
  line-height: 1.14;
  text-align: left;
}

#root .phone .potm-panel {
  margin-top: 12px;
  padding: 14px;
  border-color: rgba(16, 17, 16, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(16, 17, 16, 0.08);
}

#root .phone .potm-panel .section-head h3 {
  color: #101110;
  font-size: 18px;
  font-weight: 760;
}

#root .phone .potm-panel .section-head span {
  color: #5f675f;
  font-size: 11px;
  font-weight: 640;
}

#root .phone .potm-choice-grid {
  gap: 9px;
}

#root .phone .potm-choice {
  min-height: 68px;
  grid-template-columns: 54px minmax(0, 1fr) 18px;
  gap: 12px;
  padding: 10px 13px 10px 10px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 16px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 10px 22px rgba(16, 17, 16, 0.055);
}

#root .phone .potm-choice .potm-kit-wrap {
  width: 50px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #f0efeb;
}

#root .phone .potm-choice .mini-shirt {
  width: 39px;
  height: 36px;
  font-size: 17px;
  filter: drop-shadow(0 6px 8px rgba(16, 17, 16, 0.22));
}

#root .phone .potm-choice strong {
  color: #101110;
  font-size: 14.8px;
  font-weight: 680;
  line-height: 1.13;
}

#root .phone .potm-choice small {
  margin-top: 4px;
  color: #4f574f;
  font-size: 11.3px;
  font-weight: 570;
  line-height: 1.08;
}

#root .phone .potm-choice svg {
  color: #101110;
}

#root .phone .potm-choice.selected {
  border-color: rgba(16, 17, 16, 0.54);
  background:
    linear-gradient(135deg, rgba(16, 17, 16, 0.05), transparent 48%),
    #f9f8f4;
  box-shadow:
    0 12px 26px rgba(16, 17, 16, 0.12),
    inset 0 0 0 1px rgba(16, 17, 16, 0.08);
}

#root .phone .potm-choice.selected .potm-kit-wrap {
  background: #e8e6df;
}

#root .phone .potm-choice:disabled {
  opacity: 0.78;
  filter: none;
}

#root .phone.theme-black .potm-hero {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%),
    #101110;
  color: #f7f7f4;
  box-shadow: var(--shadow-panel);
}

#root .phone.theme-black .potm-score-strip > strong,
#root .phone.theme-black .potm-hero h3,
#root .phone.theme-black .potm-hero .interaction-status-line strong,
#root .phone.theme-black .potm-hero .interaction-counter strong {
  color: #f7f7f4;
}

#root .phone.theme-black .potm-hero-copy > span,
#root .phone.theme-black .potm-hero small,
#root .phone.theme-black .potm-hero .interaction-status-line em,
#root .phone.theme-black .potm-hero .interaction-counter span {
  color: rgba(247, 247, 244, 0.68);
}

#root .phone.theme-black .potm-hero .interaction-status-line,
#root .phone.theme-black .potm-hero .interaction-counter {
  border-color: rgba(255, 255, 255, 0.1);
  background: #171916;
}

#root .phone.theme-black .potm-panel,
#root .phone.theme-black .potm-choice {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101110;
  color: #f7f7f4;
  box-shadow: var(--shadow-panel);
}

#root .phone.theme-black .potm-panel .section-head h3,
#root .phone.theme-black .potm-choice strong {
  color: #f7f7f4;
}

#root .phone.theme-black .potm-panel .section-head span,
#root .phone.theme-black .potm-choice small {
  color: rgba(247, 247, 244, 0.68);
}

#root .phone.theme-black .potm-choice .potm-kit-wrap {
  background: #171916;
}

#root .phone.theme-black .potm-choice.selected {
  border-color: rgba(247, 247, 244, 0.6);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 44%),
    #171916;
}

#root .phone.theme-black .potm-choice svg {
  color: #f7f7f4;
}

#root .phone .interaction-submit {
  margin-top: 11px;
}

#root .phone .interaction-submit:disabled {
  cursor: default;
  opacity: 0.48;
  filter: grayscale(1);
}

/* v162: Kicktipp-style season prediction game. */
#root .phone .club-badge .badge-accent-line,
#root .phone .team-mark::after {
  display: none;
  content: none;
}

#root .phone .tip-back {
  margin-top: 1px;
}

#root .phone .tip-hero {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(16, 17, 16, 0.05), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #f4f3ef 100%);
  color: #101110;
  box-shadow: 0 18px 34px rgba(16, 17, 16, 0.1);
}

#root .phone .tip-hero::before {
  content: "";
  position: absolute;
  inset: -20px -18px auto auto;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 999px;
  background:
    repeating-linear-gradient(135deg, rgba(16, 17, 16, 0.055) 0 1px, transparent 1px 13px),
    rgba(255, 255, 255, 0.45);
}

#root .phone .tip-hero > * {
  position: relative;
  z-index: 1;
}

#root .phone .tip-hero > span {
  display: block;
  color: #5f675f;
  font-size: 10.8px;
  font-weight: 780;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .tip-hero h3 {
  max-width: 270px;
  margin: 24px 0 7px;
  color: #101110;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 780;
  line-height: 0.94;
}

#root .phone .tip-hero p {
  max-width: 286px;
  margin: 0;
  color: #4f574f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.34;
}

#root .phone .tip-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 15px;
}

#root .phone .tip-hero-stats span {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

#root .phone .tip-hero-stats strong {
  color: #101110;
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 780;
  line-height: 0.92;
}

#root .phone .tip-hero-stats small {
  color: #5f675f;
  font-size: 10.8px;
  font-weight: 640;
  line-height: 1;
}

#root .phone .tip-profile-strip {
  min-height: 64px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 12px 26px rgba(16, 17, 16, 0.08);
}

#root .phone .tip-profile-icon,
#root .phone .tip-bonus-placeholder {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
}

#root .phone .tip-profile-strip strong,
#root .phone .tip-bonus-choice strong {
  display: block;
  overflow: hidden;
  color: #101110;
  font-size: 14.5px;
  font-weight: 740;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .tip-profile-strip small,
#root .phone .tip-bonus-choice small {
  display: block;
  margin-top: 3px;
  color: #4f574f;
  font-size: 11.3px;
  font-weight: 560;
  line-height: 1.1;
}

#root .phone .tip-profile-strip button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  background: #101110;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 760;
}

#root .phone .tip-final-card {
  min-height: 70px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(16, 17, 16, 0.05), transparent 44%),
    #ffffff;
  color: #101110;
  box-shadow: 0 14px 28px rgba(16, 17, 16, 0.08);
}

#root .phone .tip-final-card.ready {
  background:
    linear-gradient(135deg, rgba(143, 191, 145, 0.18), transparent 48%),
    #ffffff;
}

#root .phone .tip-final-card.partial {
  background:
    linear-gradient(135deg, rgba(201, 179, 108, 0.18), transparent 48%),
    #ffffff;
}

#root .phone .tip-final-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
}

#root .phone .tip-final-card strong {
  display: block;
  color: #101110;
  font-size: 14.8px;
  font-weight: 760;
  line-height: 1.08;
}

#root .phone .tip-final-card small {
  display: block;
  margin-top: 4px;
  color: #4f574f;
  font-size: 11.6px;
  font-weight: 520;
  line-height: 1.28;
}

#root .phone .tip-final-card em {
  min-width: 48px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #f4f3ef;
  color: #101110;
  font-family: var(--font-num);
  font-size: 19px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

#root .phone .tip-bonus-card {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 15px 14px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 16px 30px rgba(16, 17, 16, 0.08);
}

#root .phone .tip-bonus-card .section-head {
  margin-bottom: 0;
}

#root .phone .tip-bonus-card .section-head h3,
#root .phone .tip-match-head h3 {
  color: #101110;
  font-size: 18px;
  font-weight: 760;
}

#root .phone .tip-bonus-card .section-head span,
#root .phone .tip-match-head span {
  color: #5f675f;
  font-size: 11px;
  font-weight: 640;
}

#root .phone .tip-bonus-list {
  display: grid;
  gap: 8px;
}

#root .phone .tip-bonus-choice {
  min-width: 0;
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 124px;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 14px;
  background: #f4f3ef;
}

#root .phone .tip-bonus-choice .table-team-mark {
  width: 34px;
  height: 36px;
  flex-basis: 34px;
}

#root .phone .tip-bonus-choice select {
  min-width: 0;
  width: 100%;
  height: 36px;
  border: 1px solid rgba(16, 17, 16, 0.1);
  border-radius: 999px;
  padding: 0 9px;
  outline: 0;
  background: #ffffff;
  color: #101110;
  font-size: 12px;
  font-weight: 650;
}

#root .phone .tip-filter-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  margin: 13px 18px 11px;
  overflow: hidden;
}

#root .phone .tip-filter-row::-webkit-scrollbar {
  display: none;
}

#root .phone .tip-filter-row button {
  min-width: 0;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 0 4px;
  background: #ecebe6;
  color: #626961;
  font-size: 11.6px;
  font-weight: 690;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .tip-filter-row button.active {
  background: #101110;
  color: #ffffff;
}

#root .phone .tip-match-list {
  display: grid;
  gap: 9px;
}

#root .phone .tip-match-head {
  margin: 1px 2px 2px;
}

#root .phone .season-tip-card {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 12px 26px rgba(16, 17, 16, 0.08);
}

#root .phone .season-tip-card.locked {
  background: #f8f7f3;
}

#root .phone .season-tip-card.final-round {
  border-color: rgba(16, 17, 16, 0.14);
  box-shadow:
    0 12px 26px rgba(16, 17, 16, 0.08),
    inset 4px 0 0 #101110;
}

#root .phone .season-tip-meta,
#root .phone .season-tip-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

#root .phone .season-tip-meta span,
#root .phone .season-tip-meta time {
  overflow: hidden;
  color: #626961;
  font-size: 10.8px;
  font-weight: 720;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .season-tip-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
}

#root .phone .season-tip-team {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
}

#root .phone .season-tip-team strong {
  max-width: 100%;
  overflow: hidden;
  color: #101110;
  font-size: 12.4px;
  font-weight: 690;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .season-tip-score {
  display: grid;
  grid-template-columns: 1fr 10px 1fr;
  align-items: center;
  gap: 5px;
}

#root .phone .season-tip-score input {
  width: 36px;
  height: 38px;
  border: 1px solid rgba(16, 17, 16, 0.13);
  border-radius: 12px;
  outline: 0;
  background: #f4f3ef;
  color: #101110;
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 780;
  line-height: 1;
  text-align: center;
}

#root .phone .season-tip-score input:focus {
  border-color: rgba(16, 17, 16, 0.48);
  background: #ffffff;
}

#root .phone .season-tip-score input:disabled {
  opacity: 1;
  background: #ecebe6;
  color: #777f76;
  -webkit-text-fill-color: #777f76;
}

#root .phone .season-tip-score span {
  color: #101110;
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 760;
  line-height: 1;
  text-align: center;
}

#root .phone .season-tip-foot {
  padding-top: 9px;
  border-top: 1px solid rgba(16, 17, 16, 0.08);
}

#root .phone .season-tip-foot span,
#root .phone .season-tip-foot em {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  color: #626961;
  font-size: 10.8px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .season-tip-foot em {
  flex: 0 0 auto;
  color: #101110;
  font-weight: 740;
}

#root .phone .tip-empty {
  padding: 18px;
}

#root .phone.theme-black .tip-hero,
#root .phone.theme-black .tip-profile-strip,
#root .phone.theme-black .tip-final-card,
#root .phone.theme-black .tip-bonus-card,
#root .phone.theme-black .season-tip-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101110;
  color: #f7f7f4;
  box-shadow: var(--shadow-panel);
}

#root .phone.theme-black .season-tip-card.locked,
#root .phone.theme-black .tip-bonus-choice {
  background: #171916;
}

#root .phone.theme-black .tip-hero::before {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 13px),
    rgba(255, 255, 255, 0.04);
}

#root .phone.theme-black .tip-hero h3,
#root .phone.theme-black .tip-hero-stats strong,
#root .phone.theme-black .tip-profile-strip strong,
#root .phone.theme-black .tip-final-card strong,
#root .phone.theme-black .tip-bonus-choice strong,
#root .phone.theme-black .tip-bonus-card .section-head h3,
#root .phone.theme-black .tip-match-head h3,
#root .phone.theme-black .season-tip-team strong,
#root .phone.theme-black .season-tip-score span,
#root .phone.theme-black .season-tip-foot em {
  color: #f7f7f4;
}

#root .phone.theme-black .tip-hero > span,
#root .phone.theme-black .tip-hero p,
#root .phone.theme-black .tip-hero-stats small,
#root .phone.theme-black .tip-profile-strip small,
#root .phone.theme-black .tip-final-card small,
#root .phone.theme-black .tip-bonus-choice small,
#root .phone.theme-black .tip-bonus-card .section-head span,
#root .phone.theme-black .tip-match-head span,
#root .phone.theme-black .season-tip-meta span,
#root .phone.theme-black .season-tip-meta time,
#root .phone.theme-black .season-tip-foot span {
  color: rgba(247, 247, 244, 0.68);
}

#root .phone.theme-black .tip-hero-stats span {
  border-color: rgba(255, 255, 255, 0.1);
  background: #171916;
}

#root .phone.theme-black .tip-profile-icon,
#root .phone.theme-black .tip-bonus-placeholder,
#root .phone.theme-black .tip-final-icon,
#root .phone.theme-black .tip-profile-strip button,
#root .phone.theme-black .tip-filter-row button.active {
  background: #ffffff;
  color: #101110;
}

#root .phone.theme-black .tip-final-card em {
  background: #171916;
  color: #f7f7f4;
}

#root .phone.theme-black .tip-filter-row button {
  background: #171916;
  color: rgba(247, 247, 244, 0.72);
}

#root .phone.theme-black .tip-bonus-choice select,
#root .phone.theme-black .season-tip-score input {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101110;
  color: #f7f7f4;
}

#root .phone.theme-black .season-tip-score input:disabled {
  background: #20231e;
  color: rgba(247, 247, 244, 0.58);
  -webkit-text-fill-color: rgba(247, 247, 244, 0.58);
}

#root .phone.theme-black .season-tip-foot {
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* v143: Press logos share one visual height inside the same badge shell. */
#root .phone .press-source-mark.brand-mark-laola1 .brand-logo {
  padding: 0;
  transform: scale(1.8);
}

#root .phone .press-source-mark.brand-mark-kleine .brand-logo {
  transform: scale(1.1);
}

#root .phone .press-source-mark.brand-mark-krone .brand-logo {
  transform: scale(1.08);
}

#root .phone .press-source-mark.brand-mark-kicker .brand-letter-kicker {
  font-size: 14px;
}

#root .phone .thumb-glyph.brand-source-badge .brand-mark-laola1 .brand-logo {
  padding: 0;
  transform: scale(1.77);
}

#root .phone .thumb-glyph.brand-source-badge .brand-mark-kleine .brand-logo {
  transform: scale(1.08);
}

#root .phone .thumb-glyph.brand-source-badge .brand-mark-krone .brand-logo {
  transform: scale(1.05);
}

#root .phone .thumb-glyph.brand-source-badge .brand-mark-kicker .brand-letter-kicker {
  font-size: 22px;
}

#root .phone .news-featured .thumb-glyph.brand-source-badge .brand-mark-kleine .brand-logo {
  transform: scale(1);
}

#root .phone .news-featured .thumb-glyph.brand-source-badge .brand-mark-krone .brand-logo {
  transform: scale(0.98);
}

#root .phone .news-featured .thumb-glyph.brand-source-badge .brand-mark-kicker .brand-letter-kicker {
  font-size: 27px;
}

#root .phone .news-featured .thumb-glyph.brand-source-badge .brand-mark-laola1 .brand-logo {
  padding: 0;
  transform: scale(1.72);
}

/* v124: Öffi monitor and matchday travel screen. */
#root .phone .transit-back {
  margin-top: 1px;
}

#root .phone .transit-hero {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 18px;
  border: 0;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%),
    #0d0e0d;
  color: #f8f7f3;
  box-shadow: 0 18px 34px rgba(12, 14, 12, 0.2);
}

#root .phone .transit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background:
    repeating-linear-gradient(110deg, transparent 0 16px, rgba(255, 255, 255, 0.72) 16px 17px),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.45), transparent 28%);
  pointer-events: none;
}

#root .phone .transit-hero > * {
  position: relative;
  z-index: 1;
}

#root .phone .transit-hero > span,
#root .phone .transit-route-card > span,
#root .phone .transit-stop-head span {
  display: block;
  color: #a49d92;
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .transit-hero h3 {
  margin: 24px 0 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 760;
  line-height: 0.94;
}

#root .phone .transit-hero p {
  max-width: 300px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 470;
  line-height: 1.35;
}

#root .phone .transit-refresh {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  color: #101110;
  background: #ffffff;
  font-size: 14px;
  font-weight: 760;
}

#root .phone .transit-refresh:disabled {
  opacity: 0.72;
}

#root .phone .transit-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
  align-items: stretch;
}

#root .phone .transit-route-card {
  width: 100%;
  min-width: 0;
  min-height: 128px;
  appearance: none;
  display: flex;
  flex-direction: column;
  padding: 13px 12px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: #101110;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(12, 14, 12, 0.07);
}

#root .phone .transit-route-card strong {
  margin-top: 13px;
  color: #101110;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.08;
}

#root .phone .transit-route-card small {
  display: block;
  margin-top: 7px;
  color: #6f6b64;
  font-size: 10.8px;
  font-weight: 510;
  line-height: 1.2;
}

#root .phone .transit-route-card em {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  color: #101110;
  font-size: 11px;
  font-style: normal;
  font-weight: 720;
}

#root .phone .transit-route-card em svg {
  width: 11px;
  height: 11px;
  stroke-width: 2.2;
}

#root .phone.theme-black .transit-route-card strong,
#root .phone.theme-black .transit-route-card em {
  color: #f7f7f4;
}

#root .phone.theme-black .transit-route-card > span,
#root .phone.theme-black .transit-route-card small {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone .transit-board {
  padding: 16px 14px 14px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 10px 28px rgba(12, 14, 12, 0.08);
}

#root .phone .transit-board .section-head {
  margin-bottom: 7px;
}

#root .phone .transit-board .section-head h3 {
  color: #101110;
  font-size: 19px;
  font-weight: 770;
}

#root .phone .transit-board .section-head span {
  color: #7b756e;
  font-size: 12px;
  font-weight: 620;
}

#root .phone .transit-stop-list {
  display: grid;
  gap: 6px;
}

#root .phone .transit-stop-card {
  padding: 12px 0 10px;
  border-top: 1px solid rgba(12, 14, 12, 0.08);
}

#root .phone .transit-stop-card:first-child {
  border-top: 0;
}

#root .phone .transit-stop-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

#root .phone .transit-stop-head strong {
  display: block;
  margin-top: 4px;
  color: #101110;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.05;
}

#root .phone .transit-stop-head small {
  display: block;
  margin-top: 3px;
  color: #77716a;
  font-size: 12px;
  font-weight: 540;
}

#root .phone .transit-stop-head svg {
  flex: 0 0 auto;
  color: #101110;
}

#root .phone .departure-list {
  display: grid;
  gap: 4px;
}

#root .phone .departure-row {
  min-height: 46px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 62px;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

#root .phone .line-pill {
  width: 36px;
  min-width: 36px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
}

#root .phone .departure-row div {
  min-width: 0;
}

#root .phone .departure-row div strong {
  display: block;
  overflow: hidden;
  color: #101110;
  font-size: 13.5px;
  font-weight: 670;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .departure-row div small {
  display: block;
  margin-top: 4px;
  color: #7a756e;
  font-size: 11px;
  font-weight: 540;
  line-height: 1.1;
}

#root .phone .departure-row time {
  display: grid;
  justify-items: end;
  color: #101110;
  text-align: right;
}

#root .phone .departure-row time strong {
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 760;
  line-height: 1;
}

#root .phone .departure-row time span {
  margin-top: 3px;
  color: #7a756e;
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1;
}

#root .phone .departure-row time.delayed span {
  color: #9a151f;
}

#root .phone .departure-empty {
  padding: 10px 0 4px;
  color: #7a756e;
  font-size: 12px;
  font-weight: 560;
}

#root .phone .transit-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #5f5a53;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
}

#root .phone .transit-monitor-link {
  margin-top: 11px;
}

@media (max-width: 374px) {
  #root .phone .transit-route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  #root .phone .transit-route-card {
    min-height: 116px;
    padding: 11px 8px;
  }

  #root .phone .transit-route-card strong {
    font-size: 13.5px;
  }

  #root .phone .transit-route-card small {
    font-size: 9.8px;
  }
}

/* v127: Local nickname/password account for fan features. */
#root .phone .account-back {
  margin-top: 1px;
}

#root .phone .account-hero {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 20px;
  border: 0;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 46%),
    #0b0c0b;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(12, 14, 12, 0.2);
}

#root .phone .account-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 14%, transparent 14% 34%, rgba(255, 255, 255, 0.1) 34% 49%, transparent 49%),
    repeating-linear-gradient(120deg, transparent 0 20px, rgba(255, 255, 255, 0.62) 20px 21px);
  pointer-events: none;
}

#root .phone .account-hero > * {
  position: relative;
  z-index: 1;
}

#root .phone .account-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 13px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 18%, transparent 18% 43%, rgba(255, 255, 255, 0.08) 43% 56%, transparent 56%),
    #050605;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 760;
  line-height: 1;
}

#root .phone .account-hero > span {
  display: block;
  color: #b7b0a5;
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .account-hero h3 {
  margin: 8px 0 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 760;
  line-height: 0.94;
}

#root .phone .account-hero p {
  max-width: 308px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13.5px;
  font-weight: 480;
  line-height: 1.35;
}

#root .phone .account-message {
  margin-top: 12px !important;
  color: #ffffff !important;
  font-weight: 650 !important;
}

#root .phone .account-form {
  display: grid;
  gap: 13px;
  margin-top: 12px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 10px 28px rgba(12, 14, 12, 0.08);
}

#root .phone .account-mode-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: #f0efeb;
}

#root .phone .account-mode-tabs button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5f5b54;
  font-size: 12px;
  font-weight: 760;
}

#root .phone .account-mode-tabs button.active {
  background: #101110;
  color: #ffffff;
  box-shadow: 0 7px 16px rgba(12, 14, 12, 0.12);
}

#root .phone .account-form label {
  display: grid;
  gap: 7px;
}

#root .phone .account-form label span {
  color: #7a756e;
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .account-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(12, 14, 12, 0.1);
  border-radius: 12px;
  padding: 0 13px;
  outline: 0;
  background: #f4f3ef;
  color: #101110;
  font-size: 16px;
  font-weight: 610;
}

#root .phone .account-form input:focus {
  border-color: rgba(12, 14, 12, 0.42);
  background: #ffffff;
}

#root .phone .account-submit {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
}

#root .phone .account-form > small {
  color: #7a756e;
  font-size: 11.5px;
  font-weight: 540;
  line-height: 1.25;
  text-align: center;
}

#root .phone .account-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

#root .phone .account-capability {
  min-height: 106px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 13px 12px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 8px 22px rgba(12, 14, 12, 0.07);
}

#root .phone .account-capability svg {
  color: #101110;
}

#root .phone .account-capability strong {
  margin-top: auto;
  color: #101110;
  font-size: 12.5px;
  font-weight: 760;
  line-height: 1.08;
}

#root .phone .account-capability small {
  color: #77716a;
  font-size: 11px;
  font-weight: 540;
  line-height: 1.1;
}

#root .phone .account-action {
  margin-top: 10px;
}

#root .phone .account-action.subtle {
  color: #101110;
  background: #ffffff;
}

#root .phone .account-capability {
  appearance: none;
  border: 1px solid rgba(12, 14, 12, 0.08);
  text-align: left;
}

@media (max-width: 374px) {
  #root .phone .account-capability-grid {
    grid-template-columns: 1fr;
  }

  #root .phone .account-capability {
    min-height: 0;
  }
}

/* v128: Local rideshare MVP behind the fan login. */
#root .phone .rideshare-back {
  margin-top: 1px;
}

#root .phone .rideshare-hero {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 18px;
  border: 0;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 48%),
    #0b0c0b;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(12, 14, 12, 0.2);
}

#root .phone .rideshare-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background:
    repeating-linear-gradient(110deg, transparent 0 18px, rgba(255, 255, 255, 0.65) 18px 19px),
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.42), transparent 29%);
  pointer-events: none;
}

#root .phone .rideshare-hero > * {
  position: relative;
  z-index: 1;
}

#root .phone .rideshare-hero > span,
#root .phone .rideshare-card-head span,
#root .phone .rideshare-form label span {
  display: block;
  color: #a49d92;
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .rideshare-hero h3 {
  margin: 24px 0 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 760;
  line-height: 0.94;
}

#root .phone .rideshare-hero p {
  max-width: 310px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  font-weight: 470;
  line-height: 1.35;
}

#root .phone .rideshare-gate {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 11px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 16px;
  background: #ffffff;
  color: #101110;
}

#root .phone .rideshare-gate strong {
  display: block;
  color: #101110;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.1;
}

#root .phone .rideshare-gate small {
  display: block;
  margin-top: 4px;
  color: #77716a;
  font-size: 11.5px;
  font-weight: 520;
  line-height: 1.2;
}

#root .phone .rideshare-gate button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: #101110;
  color: #ffffff;
  font-size: 12px;
  font-weight: 760;
}

#root .phone .rideshare-form {
  display: grid;
  gap: 13px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 10px 28px rgba(12, 14, 12, 0.08);
}

#root .phone .rideshare-kind,
#root .phone .rideshare-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: #f0efeb;
}

#root .phone .rideshare-tabs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 12px;
}

#root .phone .rideshare-kind button,
#root .phone .rideshare-tabs button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6d6861;
  font-size: 12px;
  font-weight: 710;
}

#root .phone .rideshare-kind button.active,
#root .phone .rideshare-tabs button.active {
  background: #101110;
  color: #ffffff;
}

#root .phone .rideshare-kind button.ride-kind-request.active,
#root .phone .rideshare-tabs button.ride-filter-request.active {
  background: #ffffff;
  color: #101110;
  box-shadow: inset 0 0 0 1px rgba(12, 14, 12, 0.2);
}

#root .phone .rideshare-kind button.ride-kind-offer.active,
#root .phone .rideshare-tabs button.ride-filter-offer.active {
  background: #101110;
  color: #ffffff;
}

#root .phone .rideshare-form label {
  display: grid;
  gap: 7px;
}

#root .phone .rideshare-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(12, 14, 12, 0.1);
  border-radius: 12px;
  padding: 0 12px;
  outline: 0;
  background: #f4f3ef;
  color: #101110;
  font-size: 14px;
  font-weight: 610;
}

#root .phone .rideshare-form input:focus {
  border-color: rgba(12, 14, 12, 0.42);
  background: #ffffff;
}

#root .phone .rideshare-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  gap: 9px;
}

#root .phone .rideshare-submit {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
}

#root .phone .rideshare-form > small {
  color: #7a756e;
  font-size: 11.5px;
  font-weight: 540;
  line-height: 1.25;
  text-align: center;
}

#root .phone .rideshare-board {
  margin-top: 12px;
  padding: 16px 14px 14px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 10px 28px rgba(12, 14, 12, 0.08);
}

#root .phone .rideshare-board .section-head {
  margin-bottom: 10px;
}

#root .phone .rideshare-board .section-head h3 {
  color: #101110;
  font-size: 19px;
  font-weight: 770;
}

#root .phone .rideshare-board .section-head span {
  color: #7b756e;
  font-size: 12px;
  font-weight: 620;
}

#root .phone .rideshare-list {
  display: grid;
  gap: 8px;
}

#root .phone .rideshare-card {
  padding: 12px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 14px;
  background: #f8f7f3;
}

#root .phone .rideshare-card.own {
  background: #101110;
  color: #ffffff;
}

#root .phone .rideshare-card.offer {
  border-color: rgba(12, 14, 12, 0.18);
  background: #101110;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(12, 14, 12, 0.12);
}

#root .phone .rideshare-card.request,
#root .phone .rideshare-card.request.own {
  border-color: rgba(12, 14, 12, 0.15);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), transparent 42%),
    #efeee8;
  color: #101110;
}

#root .phone .rideshare-card-head,
#root .phone .rideshare-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#root .phone .rideshare-card-head em {
  color: #7a756e;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

#root .phone .rideshare-card.own .rideshare-card-head span,
#root .phone .rideshare-card.own .rideshare-card-head em {
  color: rgba(255, 255, 255, 0.68);
}

#root .phone .rideshare-card.request.own .rideshare-card-head span,
#root .phone .rideshare-card.request.own .rideshare-card-head em {
  color: #6f6961;
}

#root .phone .rideshare-main {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

#root .phone .rideshare-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
}

#root .phone .rideshare-card.own .rideshare-icon {
  background: #ffffff;
  color: #101110;
}

#root .phone .rideshare-card.request .rideshare-icon,
#root .phone .rideshare-card.request.own .rideshare-icon {
  border: 1px solid rgba(12, 14, 12, 0.12);
  background: #ffffff;
  color: #101110;
}

#root .phone .rideshare-main div {
  min-width: 0;
}

#root .phone .rideshare-main strong {
  display: block;
  overflow: hidden;
  color: inherit;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .rideshare-main small {
  display: block;
  margin-top: 4px;
  color: #77716a;
  font-size: 12px;
  font-weight: 560;
}

#root .phone .rideshare-card.own .rideshare-main small {
  color: rgba(255, 255, 255, 0.68);
}

#root .phone .rideshare-card.offer .rideshare-main small {
  color: rgba(255, 255, 255, 0.68);
}

#root .phone .rideshare-card.request.own .rideshare-main small {
  color: #77716a;
}

#root .phone .rideshare-main b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: #101110;
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 760;
}

#root .phone .rideshare-card.own .rideshare-main b {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

#root .phone .rideshare-card.offer .rideshare-main b {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

#root .phone .rideshare-card.request .rideshare-main b,
#root .phone .rideshare-card.request.own .rideshare-main b {
  border: 1px solid rgba(12, 14, 12, 0.1);
  background: #ffffff;
  color: #101110;
}

#root .phone .rideshare-card p {
  margin: 10px 0 0;
  color: #625d56;
  font-size: 12.5px;
  font-weight: 510;
  line-height: 1.32;
}

#root .phone .rideshare-card.own p {
  color: rgba(255, 255, 255, 0.72);
}

#root .phone .rideshare-card.offer p {
  color: rgba(255, 255, 255, 0.72);
}

#root .phone .rideshare-card.request.own p {
  color: #625d56;
}

#root .phone .rideshare-card-foot {
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid rgba(12, 14, 12, 0.08);
}

#root .phone .rideshare-card.own .rideshare-card-foot {
  border-top-color: rgba(255, 255, 255, 0.12);
}

#root .phone .rideshare-card.offer .rideshare-card-foot {
  border-top-color: rgba(255, 255, 255, 0.12);
}

#root .phone .rideshare-card.request.own .rideshare-card-foot {
  border-top-color: rgba(12, 14, 12, 0.08);
}

#root .phone .rideshare-card-foot span {
  color: #77716a;
  font-size: 12px;
  font-weight: 680;
}

#root .phone .rideshare-card.own .rideshare-card-foot span {
  color: rgba(255, 255, 255, 0.72);
}

#root .phone .rideshare-card.offer .rideshare-card-foot span {
  color: rgba(255, 255, 255, 0.72);
}

#root .phone .rideshare-card.request.own .rideshare-card-foot span {
  color: #77716a;
}

#root .phone .rideshare-card-foot button {
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  padding: 0 11px;
  background: #101110;
  color: #ffffff;
  font-size: 11px;
  font-weight: 740;
}

#root .phone .rideshare-card-foot button:disabled {
  background: rgba(12, 14, 12, 0.07);
  color: #87827a;
}

#root .phone .rideshare-card.own .rideshare-card-foot button {
  background: #ffffff;
  color: #101110;
}

#root .phone .rideshare-card.offer .rideshare-card-foot button {
  background: #ffffff;
  color: #101110;
}

#root .phone .rideshare-card.offer .rideshare-card-foot button:disabled {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
}

#root .phone .rideshare-card.request.own .rideshare-card-foot button {
  background: #101110;
  color: #ffffff;
}

#root .phone .rideshare-empty {
  min-height: 120px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 22px 14px;
  color: #101110;
  text-align: center;
}

#root .phone .rideshare-empty strong {
  font-size: 15px;
  font-weight: 760;
}

#root .phone .rideshare-empty small {
  max-width: 220px;
  color: #77716a;
  font-size: 12px;
  font-weight: 520;
  line-height: 1.25;
}

#root .phone .rideshare-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: #101110;
  font-size: 12px;
  font-weight: 640;
  box-shadow: 0 8px 20px rgba(12, 14, 12, 0.07);
}

#root .phone .rideshare-status.offline {
  color: #7e6119;
  background: #fff8df;
}

#root .phone .rideshare-status.success {
  color: #163d22;
  background: #eef8ef;
}

#root .phone .rideshare-inbox {
  margin-top: 12px;
  padding: 16px 14px 14px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 10px 28px rgba(12, 14, 12, 0.08);
}

#root .phone .rideshare-inbox .section-head {
  margin-bottom: 10px;
}

#root .phone .ride-request-list {
  display: grid;
  gap: 8px;
}

#root .phone .ride-request-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 14px;
  background: #f8f7f3;
}

#root .phone .ride-request-item.accepted {
  background: #101110;
  color: #ffffff;
}

#root .phone .ride-request-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
}

#root .phone .ride-request-item.accepted .ride-request-icon {
  background: #ffffff;
  color: #101110;
}

#root .phone .ride-request-copy {
  min-width: 0;
}

#root .phone .ride-request-copy strong,
#root .phone .ride-chat-hero h3 {
  display: block;
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .ride-request-copy strong {
  font-size: 14px;
  font-weight: 760;
  line-height: 1.08;
}

#root .phone .ride-request-copy small,
#root .phone .ride-request-copy em {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: #77716a;
  font-size: 11.5px;
  font-style: normal;
  font-weight: 540;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .ride-request-copy em {
  color: #9a948c;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
}

#root .phone .ride-request-item.accepted .ride-request-copy small,
#root .phone .ride-request-item.accepted .ride-request-copy em {
  color: rgba(255, 255, 255, 0.68);
}

#root .phone .ride-request-action {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 999px;
  padding: 0 10px;
  background: #ffffff;
  color: #101110;
  font-size: 11px;
  font-weight: 760;
  box-shadow: 0 5px 12px rgba(12, 14, 12, 0.08);
}

#root .phone .ride-request-action.primary {
  background: #101110;
  color: #ffffff;
}

#root .phone .ride-request-action:disabled {
  background: rgba(12, 14, 12, 0.06);
  color: #837e77;
  box-shadow: none;
}

#root .phone .ride-chat-hero {
  margin-top: 4px;
  padding: 22px 20px 18px;
  border: 0;
  border-radius: 20px;
  background: #101110;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(12, 14, 12, 0.2);
}

#root .phone .ride-chat-hero > span {
  display: block;
  color: #a49d92;
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .ride-chat-hero h3 {
  margin: 22px 0 6px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 760;
  line-height: 0.94;
}

#root .phone .ride-chat-hero p,
#root .phone .ride-chat-hero small {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 520;
  line-height: 1.28;
}

#root .phone .ride-chat-hero small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
}

#root .phone .ride-pending,
#root .phone .ride-chat-panel {
  margin-top: 12px;
  padding: 15px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 10px 28px rgba(12, 14, 12, 0.08);
}

#root .phone .ride-pending {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
}

#root .phone .ride-pending strong {
  display: block;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.1;
}

#root .phone .ride-pending small {
  display: block;
  margin-top: 4px;
  color: #77716a;
  font-size: 11.5px;
  font-weight: 520;
  line-height: 1.18;
}

#root .phone .ride-pending button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: #101110;
  color: #ffffff;
  font-size: 12px;
  font-weight: 760;
}

#root .phone .ride-chat-list {
  display: grid;
  gap: 8px;
}

#root .phone .ride-message {
  max-width: 82%;
  display: grid;
  gap: 3px;
  padding: 10px 11px;
  border-radius: 16px;
  background: #f0efeb;
  color: #101110;
}

#root .phone .ride-message.own {
  justify-self: end;
  background: #101110;
  color: #ffffff;
}

#root .phone .ride-message span {
  color: #8b857d;
  font-size: 10px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .ride-message.own span {
  color: rgba(255, 255, 255, 0.62);
}

#root .phone .ride-message p {
  margin: 0;
  font-size: 13px;
  font-weight: 530;
  line-height: 1.27;
}

#root .phone .ride-message time {
  color: #8b857d;
  font-size: 10px;
  font-weight: 620;
}

#root .phone .ride-message.own time {
  color: rgba(255, 255, 255, 0.55);
}

#root .phone .ride-message-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 8px;
  margin-top: 12px;
}

#root .phone .ride-message-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(12, 14, 12, 0.1);
  border-radius: 999px;
  padding: 0 14px;
  outline: 0;
  background: #f4f3ef;
  color: #101110;
  font-size: 13px;
  font-weight: 560;
}

#root .phone .ride-message-form button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
}

/* v135: Real working Schwarz/Weiß appearance mode. */
html[data-appearance="white"] body {
  background:
    linear-gradient(180deg, #111311 0 178px, #eef0ed 178px 100%);
}

html[data-appearance="black"] body {
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #050605 0 220px, #121411 220px 100%);
}

#root .phone .appearance-back {
  margin-top: 1px;
}

#root .phone .appearance-hero {
  padding: 22px 20px 18px;
  border: 0;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 38%),
    #101110;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(12, 14, 12, 0.2);
}

#root .phone .appearance-hero span {
  display: block;
  color: #c9c3ba;
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .appearance-hero h3 {
  margin: 24px 0 7px;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 30px;
  font-weight: 760;
  line-height: 1.02;
}

#root .phone .appearance-hero p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.32;
}

#root .phone .appearance-options {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

#root .phone .appearance-option {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  grid-template-areas:
    "swatch title action"
    "swatch text action";
  align-items: center;
  column-gap: 13px;
  row-gap: 3px;
  padding: 14px;
  border-radius: 18px;
  border-color: rgba(12, 14, 12, 0.08);
  background: #ffffff;
  color: #101110;
  text-align: left;
  box-shadow: 0 10px 28px rgba(12, 14, 12, 0.08);
}

#root .phone .appearance-option.active {
  border-color: rgba(12, 14, 12, 0.28);
  box-shadow:
    0 12px 28px rgba(12, 14, 12, 0.12),
    inset 0 0 0 1px rgba(12, 14, 12, 0.16);
}

#root .phone .appearance-option.black {
  background: #101110;
  color: #ffffff;
}

#root .phone .appearance-swatch {
  grid-area: swatch;
  width: 48px;
  height: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(12, 14, 12, 0.12);
  border-radius: 15px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

#root .phone .appearance-swatch i,
#root .phone .appearance-swatch b {
  display: block;
}

#root .phone .appearance-option.white .appearance-swatch i {
  background: #ffffff;
}

#root .phone .appearance-option.white .appearance-swatch b {
  background:
    linear-gradient(135deg, rgba(16, 17, 16, 0.1), transparent),
    #f1f0ec;
}

#root .phone .appearance-option.black .appearance-swatch {
  border-color: rgba(255, 255, 255, 0.22);
}

#root .phone .appearance-option.black .appearance-swatch i {
  background: #050605;
}

#root .phone .appearance-option.black .appearance-swatch b {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    #2a2d29;
}

#root .phone .appearance-option strong {
  grid-area: title;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.08;
}

#root .phone .appearance-option small {
  grid-area: text;
  color: #77716a;
  font-size: 12px;
  font-weight: 520;
  line-height: 1.22;
}

#root .phone .appearance-option.black small {
  color: rgba(255, 255, 255, 0.64);
}

#root .phone .appearance-option em {
  grid-area: action;
  min-width: 56px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f0efeb;
  color: #101110;
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
}

#root .phone .appearance-option.black em {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

#root .phone .appearance-option.active em {
  background: #101110;
  color: #ffffff;
}

#root .phone .appearance-option.black.active em {
  background: #ffffff;
  color: #101110;
}

#root .phone.theme-black {
  --phone: #050605;
  --panel: #101110;
  --text: #f7f7f4;
  --muted: #b9b5ad;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.09);
  --paper: #171916;
  --paper-dim: #252821;
  --accent: #f7f7f4;
  --shadow-panel: 0 10px 28px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  background: #050605;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

#root .phone.theme-black .content {
  background:
    linear-gradient(180deg, #050605 0 74px, #0b0d0b 74px 100%);
}

#root .phone.theme-black .topbar {
  background: #050605;
  color: #f7f7f4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#root .phone.theme-black .screen-title,
#root .phone.theme-black .brand h1,
#root .phone.theme-black .bell-button {
  color: #f7f7f4;
}

#root .phone.theme-black .brand span {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black :is(
  .panel,
  .home-match-card,
  .feed-tabs,
  .news-list,
  .press-list,
  .integration-card,
  .profile-card,
  .menu-sheet,
  .games-shell,
  .standings-card,
  .calendar-card,
  .squad-overview,
  .squad-group,
  .account-form,
  .account-hero,
  .account-capability,
  .rideshare-form,
  .rideshare-board,
  .rideshare-inbox,
  .transit-board,
  .transit-route-card,
  .transit-stop-card,
  .interaction-panel,
  .ride-chat-panel,
  .ride-pending
) {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101110;
  color: #f7f7f4;
  box-shadow: var(--shadow-panel);
}

#root .phone.theme-black :is(
  .section-head h3,
  .news-copy strong,
  .press-list .news-copy strong,
  .integration-card strong,
  .profile-card h3,
  .menu-group h3,
  .menu-line span,
  .standings-row,
  .club-cell strong,
  .calendar-card b,
  .squad-overview strong,
  .squad-group h3,
  .squad-row strong,
  .account-capability strong,
  .account-form label span,
  .rideshare-board .section-head h3,
  .rideshare-main strong,
  .ride-request-copy strong,
  .transit-board .section-head h3,
  .transit-stop-head strong,
  .departure-row div strong
) {
  color: #f7f7f4;
}

#root .phone.theme-black :is(
  .section-head span,
  .news-copy small,
  .press-list .news-copy small,
  .integration-card small,
  .profile-card p,
  .squad-row small,
  .account-capability small,
  .rideshare-form > small,
  .rideshare-main small,
  .rideshare-card p,
  .ride-request-copy small,
  .ride-request-copy em,
  .transit-board .section-head span,
  .transit-stop-head small,
  .departure-row div small
) {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black :is(.menu-line, .news-row, .row) {
  border-color: rgba(255, 255, 255, 0.08);
}

#root .phone.theme-black :is(.feed-tabs button, .games-segment, .month-rail, .team-picker-menu) {
  background: #171916;
  color: rgba(247, 247, 244, 0.74);
}

#root .phone.theme-black :is(.feed-tabs button.active, .games-segment button.active, .month-rail button.active) {
  background: #ffffff;
  color: #101110;
}

#root .phone.theme-black :is(.account-form input, .rideshare-form input, .ride-message-form input) {
  border-color: rgba(255, 255, 255, 0.14);
  background: #171916;
  color: #f7f7f4;
}

#root .phone.theme-black .account-mode-tabs {
  background: rgba(255, 255, 255, 0.08);
}

#root .phone.theme-black .account-mode-tabs button {
  color: rgba(255, 255, 255, 0.7);
}

#root .phone.theme-black .account-mode-tabs button.active {
  background: #ffffff;
  color: #101110;
}

#root .phone.theme-black :is(.account-submit, .rideshare-submit, .profile-button.primary) {
  background: #ffffff;
  color: #101110;
}

#root .phone.theme-black .bottom-nav {
  border-top-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(24, 25, 23, 0.97), #050605);
  color: #f7f7f4;
  box-shadow: 0 -18px 34px rgba(0, 0, 0, 0.34);
}

#root .phone.theme-black .nav-item.active::before {
  background: #ffffff;
}

#root .phone.theme-black .rideshare-card.request,
#root .phone.theme-black .rideshare-card.request.own {
  background: #f1f0ec;
  color: #101110;
}

#root .phone.theme-black .rideshare-card.request :is(strong, small, p, .rideshare-card-foot span),
#root .phone.theme-black .rideshare-card.request.own :is(strong, small, p, .rideshare-card-foot span) {
  color: #101110;
}

/* v138: Social Hub shows owned fallback cards instead of empty provider embeds. */
#root .phone .x-live-card {
  padding: 14px;
}

#root .phone .x-topic-list {
  display: grid;
  gap: 10px;
}

#root .phone .x-topic-card {
  min-height: 102px;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 14px;
  padding: 8px;
  color: #101110;
  background: linear-gradient(180deg, #ffffff, #f8f8f4);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(16, 17, 16, 0.06);
}

#root .phone .x-topic-media {
  position: relative;
  height: 84px;
  overflow: hidden;
  border-radius: 11px;
  background: #111;
}

#root .phone .x-topic-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.98) contrast(1.08);
}

#root .phone .x-topic-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
}

#root .phone .x-topic-media > span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  z-index: 1;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #101110;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

#root .phone .x-topic-brand {
  width: 13px;
  height: 13px;
}

#root .phone .x-topic-copy {
  min-width: 0;
}

#root .phone .x-topic-copy small {
  display: block;
  margin-bottom: 4px;
  color: #77716a;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .x-topic-copy strong {
  display: block;
  overflow: hidden;
  color: #101110;
  font-size: 16.5px;
  font-weight: 740;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .x-topic-copy p {
  display: -webkit-box;
  margin: 5px 0 0;
  overflow: hidden;
  color: #646b64;
  font-size: 12.2px;
  font-weight: 500;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#root .phone .x-live-open {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
  border-radius: 999px;
  padding: 0 14px;
  color: #ffffff;
  background: #101110;
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
}

#root .phone .x-live-open span {
  min-width: 0;
  flex: 1;
}

#root .phone .x-live-open-brand {
  width: 14px;
  height: 14px;
}

#root .phone .instagram-post-card {
  flex-basis: 72%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 10px;
}

#root .phone .instagram-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1.08;
  overflow: hidden;
  border-radius: 13px;
  background: #101110;
  text-decoration: none;
}

#root .phone .instagram-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.95) contrast(1.04);
}

#root .phone .instagram-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 62%);
}

#root .phone .instagram-card-mark {
  position: absolute;
  left: 9px;
  bottom: 9px;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #101110;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

#root .phone .instagram-card-mark .brand-mark-instagram {
  width: 17px;
  height: 17px;
}

#root .phone .instagram-post-card p {
  display: -webkit-box;
  min-height: 32px;
  margin: 0;
  overflow: hidden;
  color: #646b64;
  font-size: 12.2px;
  font-weight: 500;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#root .phone .instagram-open-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
  font-size: 12px;
  font-weight: 720;
}

#root .phone.theme-black .x-topic-card,
#root .phone.theme-black .instagram-post-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: #171916;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

#root .phone.theme-black .x-topic-copy strong,
#root .phone.theme-black .instagram-post-card strong,
#root .phone.theme-black .instagram-post-head {
  color: #f7f7f4;
}

#root .phone.theme-black .x-topic-copy small,
#root .phone.theme-black .x-topic-copy p,
#root .phone.theme-black .instagram-post-card p {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black .x-live-open,
#root .phone.theme-black .instagram-open-link {
  color: #101110;
  background: #ffffff;
}

/* v139: Functional language settings. */
#root .phone .language-back {
  margin: 14px 18px 0;
  color: #101110;
  font-size: 13px;
  font-weight: 610;
}

#root .phone .language-hero {
  margin: 10px 18px 0;
  padding: 20px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 241, 236, 0.98)),
    linear-gradient(90deg, rgba(16, 17, 16, 0.04) 0 18%, transparent 18% 42%, rgba(16, 17, 16, 0.04) 42% 58%, transparent 58%);
}

#root .phone .language-hero span {
  display: block;
  color: #77716a;
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

#root .phone .language-hero h3 {
  margin: 6px 0 0;
  color: #101110;
  font-size: 25px;
  font-weight: 780;
  line-height: 1.02;
}

#root .phone .language-hero p {
  margin: 8px 0 0;
  color: #646b64;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

#root .phone .language-options {
  display: grid;
  gap: 10px;
  margin: 14px 18px 0;
}

#root .phone .language-option {
  min-height: 88px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  grid-template-areas:
    "swatch title action"
    "swatch text action";
  align-items: center;
  column-gap: 12px;
  row-gap: 4px;
  padding: 14px;
  text-align: left;
}

#root .phone .language-option.active {
  border-color: rgba(16, 17, 16, 0.2);
  box-shadow: 0 14px 30px rgba(16, 17, 16, 0.12);
}

#root .phone .language-swatch {
  grid-area: swatch;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
  font-size: 13px;
  font-weight: 780;
}

#root .phone .language-option strong {
  grid-area: title;
  color: #101110;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.08;
}

#root .phone .language-option small {
  grid-area: text;
  color: #77716a;
  font-size: 12px;
  font-weight: 520;
  line-height: 1.22;
}

#root .phone .language-option em {
  grid-area: action;
  min-width: 56px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f0efeb;
  color: #101110;
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
}

#root .phone .language-option.active em {
  background: #101110;
  color: #ffffff;
}

#root .phone.theme-black .language-hero,
#root .phone.theme-black .language-option {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101110;
  color: #f7f7f4;
  box-shadow: var(--shadow-panel);
}

#root .phone.theme-black .language-back,
#root .phone.theme-black .language-option strong,
#root .phone.theme-black .language-hero h3 {
  color: #f7f7f4;
}

#root .phone.theme-black .language-hero span,
#root .phone.theme-black .language-hero p,
#root .phone.theme-black .language-option small {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black .language-swatch {
  background: #ffffff;
  color: #101110;
}

#root .phone.theme-black .language-option em {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

#root .phone.theme-black .language-option.active em {
  background: #ffffff;
  color: #101110;
}

/* v150: Schwoaze wordmark in the title header. */
#root .phone .brand h1.brand-title {
  color: #f7f7f4;
  font-family: "Bebas Neue", var(--font-display);
  font-size: 32px;
  font-stretch: condensed;
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-rendering: geometricPrecision;
}

#root .phone .brand h1.brand-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 4px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, currentColor 24% 76%, transparent);
  opacity: 0.9;
}

#root .phone .brand h1.brand-title + span {
  margin-top: 4px;
}

/* v151: premium news page rhythm. */
#root .phone .news-page-stack {
  gap: 14px;
  margin: 0 18px;
}

#root .phone .news-featured {
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(16, 17, 16, 0.1);
  overflow: hidden;
}

#root .phone .news-featured-image-wrap {
  min-height: 202px;
}

#root .phone .news-featured .thumb-glyph.brand-source-badge {
  width: 58px;
  height: 58px;
  right: auto;
  bottom: 18px;
  left: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(16, 17, 16, 0.22);
}

#root .phone .news-featured-copy {
  gap: 6px;
  padding: 15px 18px 18px;
  background: #ffffff;
}

#root .phone .news-featured-copy span {
  color: #696f67;
  font-size: 10.5px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

#root .phone .news-featured-copy strong {
  color: #101110;
  font-size: 24px;
  font-weight: 760;
  line-height: 1.05;
}

#root .phone .news-featured-copy small {
  color: rgba(16, 17, 16, 0.55);
  font-size: 11.4px;
  font-weight: 560;
  line-height: 1.25;
}

#root .phone .news-featured-copy em {
  display: -webkit-box;
  overflow: hidden;
  color: #4e554e;
  font-size: 13px;
  font-style: normal;
  font-weight: 450;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#root .phone .news-feed-tabs {
  padding: 5px;
  border: 0;
  border-radius: 999px;
  background: #f0efeb;
  box-shadow: none;
}

#root .phone .news-feed-tabs button {
  min-height: 40px;
  border-radius: 999px;
  font-size: 13.4px;
  font-weight: 620;
}

#root .phone .news-source-rail {
  display: grid;
  gap: 8px;
}

#root .phone .news-source-rail > span {
  padding: 0 2px;
  color: rgba(16, 17, 16, 0.52);
  font-size: 10.5px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#root .phone .news-source-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

#root .phone .news-source-chip {
  appearance: none;
  position: relative;
  min-width: 0;
  min-height: 58px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  padding: 8px 4px 7px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 12px 24px rgba(16, 17, 16, 0.07);
}

#root .phone .news-source-chip.active {
  border-color: rgba(16, 17, 16, 0.42);
  box-shadow:
    0 13px 24px rgba(16, 17, 16, 0.12),
    inset 0 0 0 1px rgba(16, 17, 16, 0.12);
}

#root .phone .news-source-chip.active::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #101110;
}

#root .phone .news-source-chip-mark {
  width: 24px;
  height: 24px;
  border: 0;
  box-shadow: none;
}

#root .phone .news-source-chip-mark .brand-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#root .phone .news-source-chip b {
  max-width: 100%;
  overflow: hidden;
  color: #101110;
  font-size: 9.3px;
  font-weight: 680;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .news-page-list {
  margin-top: 14px;
  padding: 13px 0 4px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(16, 17, 16, 0.08);
  overflow: hidden;
}

#root .phone .news-page-list .section-head {
  margin-bottom: 0;
  padding: 0 16px 9px;
  border-bottom: 1px solid rgba(16, 17, 16, 0.08);
}

#root .phone .news-page-list .news-row,
#root .phone .news-page-list .news-row:first-of-type {
  min-height: 122px;
  grid-template-columns: 82px minmax(0, 1fr) 12px;
  gap: 13px;
  padding: 13px 16px;
  border-top: 0;
  border-bottom: 1px solid rgba(16, 17, 16, 0.08);
}

#root .phone .news-page-list .news-row:last-child {
  border-bottom: 0;
}

#root .phone .news-page-list .news-row:first-of-type .news-thumb,
#root .phone .news-page-list .news-thumb {
  width: 82px;
  height: 68px;
  border-radius: 14px;
}

#root .phone .news-page-list .news-row:first-of-type .news-copy,
#root .phone .news-page-list .news-copy {
  min-width: 0;
  gap: 3px;
}

#root .phone .news-page-list .news-row:first-of-type .news-copy strong,
#root .phone .news-page-list .news-copy strong,
#root .phone .news-page-list.press-list .news-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #101110;
  font-size: 14.7px;
  font-weight: 650;
  line-height: 1.16;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#root .phone .news-page-list .news-row:first-of-type .news-copy small,
#root .phone .news-page-list .news-copy small,
#root .phone .news-page-list.press-list .news-copy small {
  color: rgba(16, 17, 16, 0.52);
  font-size: 10.8px;
  font-weight: 560;
  line-height: 1.2;
}

#root .phone .news-copy em {
  display: none;
}

#root .phone .news-page-list .news-row.has-excerpt .news-copy em {
  display: -webkit-box;
  overflow: hidden;
  color: #596058;
  font-size: 12.1px;
  font-style: normal;
  font-weight: 430;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#root .phone.theme-black .news-featured,
#root .phone.theme-black .news-page-list,
#root .phone.theme-black .news-source-chip {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101110;
  box-shadow: var(--shadow-panel);
}

#root .phone.theme-black .news-source-chip.active {
  border-color: rgba(247, 247, 244, 0.56);
  box-shadow:
    var(--shadow-panel),
    inset 0 0 0 1px rgba(247, 247, 244, 0.16);
}

#root .phone.theme-black .news-source-chip.active::after {
  background: #f7f7f4;
}

#root .phone.theme-black .news-featured-copy,
#root .phone.theme-black .news-feed-tabs {
  background: #101110;
}

#root .phone.theme-black .news-featured-copy strong,
#root .phone.theme-black .news-page-list .news-copy strong,
#root .phone.theme-black .news-source-chip b {
  color: #f7f7f4;
}

#root .phone.theme-black .news-featured-copy span,
#root .phone.theme-black .news-featured-copy small,
#root .phone.theme-black .news-featured-copy em,
#root .phone.theme-black .news-source-rail > span,
#root .phone.theme-black .news-page-list .news-copy small,
#root .phone.theme-black .news-page-list .news-copy em {
  color: rgba(247, 247, 244, 0.6);
}

#root .phone.theme-black .news-page-list .section-head,
#root .phone.theme-black .news-page-list .news-row,
#root .phone.theme-black .news-page-list .news-row:first-of-type {
  border-color: rgba(255, 255, 255, 0.1);
}

/* v152: Nordkurve hub. */
#root .phone .nordkurve-back {
  margin: 0 18px 10px;
}

#root .phone .nordkurve-hero {
  position: relative;
  margin: 0 18px;
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 8px;
  overflow: hidden;
  border-radius: 22px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 28px),
    linear-gradient(145deg, #050605 0%, #151714 100%);
  color: #f7f7f4;
  box-shadow: 0 22px 42px rgba(16, 17, 16, 0.22);
}

#root .phone .nordkurve-hero::before {
  content: "";
  position: absolute;
  inset: auto -24px -58px 54%;
  height: 148px;
  transform: rotate(-8deg);
  border-radius: 999px 0 0 999px;
  background: rgba(247, 247, 244, 0.12);
}

#root .phone .nordkurve-hero::after {
  content: "1909";
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(247, 247, 244, 0.18);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 780;
  line-height: 1;
}

#root .phone .nordkurve-hero > * {
  position: relative;
  z-index: 1;
}

#root .phone .nordkurve-hero span,
#root .phone .nordkurve-card-copy span {
  color: rgba(247, 247, 244, 0.68);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .nordkurve-hero h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 780;
  letter-spacing: 0;
  line-height: 0.96;
}

#root .phone .nordkurve-hero p {
  max-width: 300px;
  margin: 0;
  color: rgba(247, 247, 244, 0.78);
  font-size: 14px;
  font-weight: 470;
  line-height: 1.36;
}

#root .phone .nordkurve-grid {
  display: grid;
  gap: 14px;
  margin: 16px 18px 0;
}

#root .phone .nordkurve-card {
  position: relative;
  min-height: 216px;
  display: grid;
  align-content: end;
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 20px;
  padding: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 18px 34px rgba(16, 17, 16, 0.1);
}

#root .phone .nordkurve-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(16, 17, 16, 0.04) 100%),
    repeating-linear-gradient(135deg, rgba(16, 17, 16, 0.045) 0 1px, transparent 1px 16px);
}

#root .phone .nordkurve-card.tifo {
  background:
    linear-gradient(135deg, #ffffff 0 34%, #f0efeb 34% 66%, #111310 66% 100%);
}

#root .phone .nordkurve-card.k1909 {
  background:
    radial-gradient(circle at 84% 18%, rgba(16, 17, 16, 0.12), transparent 30%),
    linear-gradient(135deg, #f7f7f4 0%, #ffffff 48%, #e8e7e1 100%);
}

#root .phone .nordkurve-card-mark {
  position: absolute;
  top: 18px;
  left: 18px;
  min-width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 17, 16, 0.1);
  border-radius: 16px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.82);
  color: #101110;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 820;
  line-height: 1;
  box-shadow: 0 14px 26px rgba(16, 17, 16, 0.12);
}

#root .phone .nordkurve-card-copy,
#root .phone .nordkurve-link-grid {
  position: relative;
  z-index: 1;
}

#root .phone .nordkurve-card-copy {
  display: grid;
  gap: 6px;
}

#root .phone .nordkurve-card-copy span {
  color: rgba(16, 17, 16, 0.52);
}

#root .phone .nordkurve-card-copy h3 {
  margin: 0;
  color: #101110;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 780;
  line-height: 0.98;
}

#root .phone .nordkurve-card-copy p {
  max-width: 315px;
  margin: 0;
  color: rgba(16, 17, 16, 0.68);
  font-size: 13.4px;
  font-weight: 460;
  line-height: 1.34;
}

#root .phone .nordkurve-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

#root .phone .nordkurve-link-grid a {
  min-width: 0;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
  font-size: 11.6px;
  font-weight: 690;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

#root .phone .nordkurve-link-grid a svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

#root .phone .nordkurve-note {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
}

#root .phone .nordkurve-note svg {
  margin-top: 1px;
}

#root .phone .nordkurve-note p {
  margin: 0;
  color: rgba(16, 17, 16, 0.62);
  font-size: 12.8px;
  font-weight: 460;
  line-height: 1.35;
}

#root .phone.theme-black .nordkurve-hero,
#root .phone.theme-black .nordkurve-card,
#root .phone.theme-black .nordkurve-note {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 28px),
    #101110;
  color: #f7f7f4;
  box-shadow: var(--shadow-panel);
}

#root .phone.theme-black .nordkurve-card-copy h3 {
  color: #f7f7f4;
}

#root .phone.theme-black .nordkurve-link-grid a {
  color: #101110;
}

#root .phone.theme-black .nordkurve-link-grid a {
  background: #ffffff;
}

#root .phone.theme-black .nordkurve-card-copy span,
#root .phone.theme-black .nordkurve-card-copy p,
#root .phone.theme-black .nordkurve-note p {
  color: rgba(247, 247, 244, 0.66);
}

#root .phone.theme-black .nordkurve-card-mark {
  border-color: rgba(255, 255, 255, 0.16);
  background: #ffffff;
  color: #101110;
}

/* v154: Schwoaze Feed title aligned with Podcasts. */
#root .phone .news-list .feed-section-head {
  display: grid;
  grid-template-columns: 30px 1fr;
  justify-content: start;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

#root .phone .news-list .feed-section-head .feed-main-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  align-self: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #101110;
  box-shadow: none;
  transform: translateY(-3px);
}

#root .phone .news-list .feed-section-head .feed-main-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.9;
}

#root .phone .news-list .feed-section-head h3 {
  color: #101110;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

#root .phone.theme-black .news-list .feed-section-head .feed-main-icon,
#root .phone.theme-black .news-list .feed-section-head h3 {
  color: #f7f7f4;
}

/* v156: premium Matchday Hub, closer to the benchmark card rhythm. */
#root .phone .matchday-title {
  margin: 1px 18px 12px;
  color: #101110;
  font-size: 31px;
  font-weight: 760;
}

#root .phone .matchday-hero {
  margin: 0 18px;
  border: 1px solid rgba(16, 17, 16, 0.1);
  border-radius: 20px;
  background: #050605;
  color: #f7f7f4;
  box-shadow: 0 22px 42px rgba(16, 17, 16, 0.24);
  touch-action: pan-y pinch-zoom;
  user-select: none;
}

#root .phone .matchday-hero-field {
  min-height: 218px;
  display: grid;
  align-content: end;
  padding: 16px 14px 14px;
  border-radius: 20px 20px 0 0;
}

#root .phone .matchday-hero .hero-photo {
  filter: grayscale(0.68) saturate(0.8) contrast(1.14) brightness(0.74);
  transform: scale(1.03);
}

#root .phone .matchday-hero.hero-away .hero-photo {
  object-position: center 56%;
  filter: grayscale(0.78) saturate(0.7) contrast(1.18) brightness(0.7);
}

#root .phone .matchday-hero .hero-field::before {
  background:
    radial-gradient(circle at 83% 13%, rgba(255, 255, 255, 0.42) 0 2px, rgba(255, 255, 255, 0.14) 3px 15px, transparent 34px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.78) 58%, rgba(0, 0, 0, 0.93)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 36% 64%, rgba(0, 0, 0, 0.58));
  filter: none;
}

#root .phone .matchday-hero .hero-field::after {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.075) 0 1px, transparent 1px 32px),
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.06) 38.3% 39.4%, transparent 39.8%),
    radial-gradient(ellipse at 50% 110%, rgba(255, 255, 255, 0.1), transparent 48%);
  opacity: 0.9;
}

#root .phone .matchday-hero .hero-kicker {
  color: rgba(247, 247, 244, 0.7);
  font-size: 11.5px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

#root .phone .matchday-hero .teams {
  grid-template-columns: 92px minmax(42px, 1fr) 92px;
  gap: 8px;
  width: 100%;
  max-width: 384px;
  justify-self: center;
  margin: 13px 0 9px;
}

#root .phone .matchday-hero .teams.prematch-line {
  grid-template-columns: minmax(72px, 84px) minmax(32px, 1fr) minmax(72px, 84px);
  max-width: 344px;
  gap: 6px;
}

#root .phone .matchday-hero .team-mark {
  width: 82px;
  height: 84px;
  background:
    linear-gradient(#ffffff, #ffffff),
    #050605;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.35);
}

#root .phone .matchday-hero .team-mark::before {
  inset: 3px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 17%, transparent 17% 43%, rgba(255, 255, 255, 0.065) 43% 54%, transparent 54%),
    #050605;
}

#root .phone .matchday-hero .team-mark .badge-code {
  font-size: 31px;
  font-weight: 800;
}

#root .phone .matchday-hero .teams.prematch-line .team-mark {
  width: 76px;
  height: 82px;
}

#root .phone .matchday-hero .teams.prematch-line .versus {
  font-size: 30px;
}

#root .phone .matchday-hero .versus {
  color: rgba(247, 247, 244, 0.78);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 780;
}

#root .phone .matchday-hero .score {
  font-size: 56px;
  font-weight: 760;
}

#root .phone .matchday-hero .match-name {
  max-width: 310px;
  justify-self: center;
  color: #ffffff;
  font-size: 25px;
  font-weight: 760;
  line-height: 1.05;
  text-wrap: balance;
}

#root .phone .matchday-hero .match-meta {
  justify-self: center;
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
  color: rgba(247, 247, 244, 0.78);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .matchday-hero .asset-credit {
  position: absolute;
  right: 11px;
  bottom: 8px;
  max-width: 130px;
  margin: 0;
  color: rgba(247, 247, 244, 0.34);
  font-size: 8px;
  text-align: right;
}

#root .phone .matchday-countdown {
  min-height: 55px;
  gap: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: #101110;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 730;
}

#root .phone .matchday-countdown svg {
  width: 21px;
  height: 21px;
}

#root .phone .matchday-actions {
  min-height: 82px;
  margin: 12px 18px 0;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(16, 17, 16, 0.08);
}

#root .phone .matchday-actions > :is(div, button) {
  gap: 7px;
  color: #101110;
  font-size: 11.6px;
  font-weight: 620;
  line-height: 1.08;
}

#root .phone .matchday-actions > :is(div, button) svg {
  width: 23px;
  height: 23px;
  color: #101110;
  stroke-width: 1.75;
}

#root .phone .matchday-briefing {
  margin: 12px 18px 0;
  padding: 14px 16px 4px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 16px 30px rgba(16, 17, 16, 0.08);
}

#root .phone .matchday-section-title {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px;
}

#root .phone .matchday-section-title svg {
  color: #101110;
  stroke-width: 1.8;
}

#root .phone .matchday-briefing .matchday-section-title h3 {
  margin: 0;
  color: #101110;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .matchday-briefing .row {
  min-height: 50px;
  grid-template-columns: 32px minmax(0, 1fr) 16px;
  gap: 10px;
  border-top: 1px solid rgba(16, 17, 16, 0.08);
  color: #101110;
  font-size: 15px;
  font-weight: 570;
}

#root .phone .matchday-briefing .row:first-of-type {
  border-top-color: rgba(16, 17, 16, 0.08);
}

#root .phone .matchday-briefing .row svg,
#root .phone .matchday-briefing .arrow {
  color: #101110;
}

#root .phone .matchday-table-signal {
  appearance: none;
  width: calc(100% - 36px);
  min-height: 62px;
  margin: 12px 18px 0;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  font: inherit;
  text-align: left;
  box-shadow: 0 14px 28px rgba(16, 17, 16, 0.08);
}

#root .phone .matchday-table-signal svg {
  color: #101110;
}

#root .phone .matchday-table-signal strong {
  color: #101110;
  font-size: 16px;
  font-weight: 700;
}

#root .phone .matchday-table-signal small {
  display: block;
  margin-top: 2px;
  color: rgba(16, 17, 16, 0.56);
  font-size: 11.8px;
  font-weight: 460;
  line-height: 1.25;
}

#root .phone .matchday-ticket-action {
  width: calc(100% - 36px);
  appearance: none;
  margin: 12px 18px 0;
  border: 0;
  border-radius: 18px;
  background: #101110;
  color: #ffffff;
  text-align: left;
  box-shadow: 0 16px 30px rgba(16, 17, 16, 0.16);
}

#root .phone .matchday-ticket-action svg,
#root .phone .matchday-ticket-action .arrow {
  color: #ffffff;
}

#root .phone.theme-black .matchday-title {
  color: #f7f7f4;
}

#root .phone.theme-black .matchday-hero {
  border-color: rgba(255, 255, 255, 0.12);
  background: #050605;
}

#root .phone.theme-black .matchday-countdown {
  border-top-color: rgba(16, 17, 16, 0.12);
  background: #ffffff;
  color: #101110;
}

#root .phone.theme-black .matchday-actions,
#root .phone.theme-black .matchday-briefing,
#root .phone.theme-black .matchday-table-signal {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101110;
  color: #f7f7f4;
  box-shadow: var(--shadow-panel);
}

#root .phone.theme-black .matchday-actions > :is(div, button),
#root .phone.theme-black .matchday-actions > :is(div, button) svg,
#root .phone.theme-black .matchday-section-title svg,
#root .phone.theme-black .matchday-briefing .matchday-section-title h3,
#root .phone.theme-black .matchday-briefing .row,
#root .phone.theme-black .matchday-briefing .row svg,
#root .phone.theme-black .matchday-briefing .arrow,
#root .phone.theme-black .matchday-table-signal svg,
#root .phone.theme-black .matchday-table-signal strong {
  color: #f7f7f4;
}

#root .phone.theme-black .matchday-briefing .row,
#root .phone.theme-black .matchday-briefing .row:first-of-type {
  border-top-color: rgba(255, 255, 255, 0.1);
}

#root .phone.theme-black .matchday-table-signal small {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black .matchday-ticket-action {
  background: #ffffff;
  color: #101110;
}

#root .phone.theme-black .matchday-ticket-action svg,
#root .phone.theme-black .matchday-ticket-action .arrow {
  color: #101110;
}

/* v157: SturmNetz mark 15% larger across source badges. */
#root .phone .brand-mark-sturmnetz .brand-sturmnetz-lockup {
  font-size: 12.65px;
}

#root .phone .press-source-mark.brand-mark-sturmnetz .brand-sturmnetz-lockup {
  font-size: 9.2px;
}

#root .phone .thumb-glyph.brand-source-badge .brand-mark-sturmnetz .brand-sturmnetz-lockup {
  font-size: 12.65px;
}

#root .phone .news-featured .thumb-glyph.brand-source-badge .brand-mark-sturmnetz .brand-sturmnetz-lockup {
  font-size: 14.95px;
}

/* v165: squad rows use the shared shirt system and press source chips share one visual logo height. */
#root .phone .squad-row {
  grid-template-columns: 46px minmax(0, 1fr);
}

#root .phone .squad-row .squad-kit-wrap {
  width: 46px;
  justify-items: start;
}

#root .phone .squad-row .squad-shirt {
  width: 38px;
  height: 34px;
  color: #f8f5ef;
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 820;
  filter: drop-shadow(0 6px 9px rgba(12, 14, 12, 0.16));
}

#root .phone .squad-row .squad-shirt .mini-number {
  padding-top: 2px;
  color: inherit;
  font: inherit;
  text-transform: none;
}

#root .phone .news-source-chip-mark {
  width: 26px;
  height: 20px;
  display: grid;
  place-items: center;
}

#root .phone .news-source-chip-mark .brand-logo,
#root .phone .news-source-chip-mark svg,
#root .phone .news-source-chip-mark .brand-letter-shell,
#root .phone .news-source-chip-mark .brand-letter,
#root .phone .news-source-chip-mark .brand-sturmnetz-lockup {
  width: auto;
  max-width: 26px;
  height: 16px;
  max-height: 16px;
  display: inline-grid;
  place-items: center;
  object-fit: contain;
  line-height: 1;
  transform: none;
}

#root .phone .news-source-chip-mark.brand-mark-laola1 .brand-logo {
  width: 23px;
  height: 14px;
  padding: 0;
  background: #ffffff;
  filter: grayscale(1) contrast(2.45);
}

#root .phone .news-source-chip-mark.brand-mark-kleine .brand-logo {
  width: 15px;
  height: 18px;
  transform: scale(1.18);
  transform-origin: center;
}

#root .phone .news-source-chip-mark.brand-mark-krone .brand-logo {
  width: 17px;
  height: 16px;
}

#root .phone .news-source-chip-mark.brand-mark-sturmnetz .brand-sturmnetz-lockup {
  width: 19px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 0.82;
  transform: scaleX(0.7) skew(-7deg);
  transform-origin: center;
}

#root .phone .news-source-chip-mark.brand-mark-abseits svg {
  width: 18px;
  height: 18px;
}

#root .phone .news-source-chip-mark.brand-mark-kicker .brand-letter-kicker {
  height: 16px;
  font-size: 16px;
}

#root .phone .press-source-mark {
  display: inline-grid;
  place-items: center;
}

#root .phone .press-source-mark .brand-logo,
#root .phone .press-source-mark svg,
#root .phone .press-source-mark .brand-letter,
#root .phone .press-source-mark .brand-sturmnetz-lockup {
  width: auto;
  max-width: 15px;
  height: 12px;
  max-height: 12px;
  object-fit: contain;
  line-height: 1;
  transform: none;
}

#root .phone .press-source-mark.brand-mark-laola1 .brand-logo {
  width: 15px;
  height: 9px;
  padding: 0;
  background: #ffffff;
  filter: grayscale(1) contrast(2.45);
}

#root .phone .press-source-mark.brand-mark-kleine .brand-logo {
  width: 8px;
  height: 12px;
}

#root .phone .press-source-mark.brand-mark-krone .brand-logo {
  width: 12px;
  height: 12px;
}

#root .phone .press-source-mark.brand-mark-sturmnetz .brand-sturmnetz-lockup {
  height: 12px;
  font-size: 7.5px;
}

#root .phone .press-source-mark.brand-mark-abseits svg {
  width: 13px;
  height: 13px;
}

#root .phone .press-source-mark.brand-mark-kicker .brand-letter-kicker {
  height: 12px;
  font-size: 12px;
}

/* v166: refined account profile card with local avatar choices and strict third-width action tiles. */
#root .phone .account-hero {
  padding: 18px;
  border-radius: 22px;
  box-shadow:
    0 16px 34px rgba(12, 14, 12, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

#root .phone .account-hero::before {
  opacity: 0.13;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 12%, transparent 12% 30%, rgba(255, 255, 255, 0.12) 30% 46%, transparent 46%),
    repeating-linear-gradient(118deg, transparent 0 18px, rgba(255, 255, 255, 0.7) 18px 19px);
}

#root .phone .account-hero-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

#root .phone .account-hero-copy {
  min-width: 0;
}

#root .phone .account-hero-copy > span {
  display: block;
  color: #b7b0a5;
  font-size: 10.5px;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .account-hero h3 {
  max-width: 100%;
  margin: 5px 0 0;
  overflow-wrap: anywhere;
  font-size: 31px;
  line-height: 0.98;
}

#root .phone .account-hero p {
  max-width: 100%;
  font-size: 13px;
}

#root .phone .account-avatar {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  margin: 0;
  border-radius: 16px;
}

#root .phone .account-avatar-visual,
#root .phone .profile-mark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: #070807;
  color: #ffffff;
}

#root .phone .account-avatar-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

#root .phone .account-avatar-visual span {
  color: inherit;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 780;
  line-height: 1;
}

#root .phone .avatar-initials::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 18%, transparent 18% 42%, rgba(255, 255, 255, 0.08) 42% 56%, transparent 56%),
    #060706;
}

#root .phone .avatar-stripes::before {
  background:
    repeating-linear-gradient(90deg, #060706 0 11px, #f7f7f4 11px 15px, #181a18 15px 26px);
}

#root .phone .avatar-1909::before {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.2), transparent 30%),
    #101110;
}

#root .phone .avatar-north::before {
  background:
    linear-gradient(135deg, #070807 0 48%, #f7f7f4 48% 53%, #151715 53%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 9px);
}

#root .phone .avatar-away {
  color: #101110;
  border-color: rgba(16, 17, 16, 0.12);
}

#root .phone .avatar-away::before {
  background:
    linear-gradient(90deg, rgba(16, 17, 16, 0.1) 0 22%, transparent 22% 78%, rgba(16, 17, 16, 0.1) 78%),
    #f7f7f4;
}

#root .phone .account-avatar-picker {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(12, 14, 12, 0.07);
}

#root .phone .account-avatar-picker header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

#root .phone .account-avatar-picker header span {
  color: rgba(16, 17, 16, 0.52);
  font-size: 10.5px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#root .phone .account-avatar-picker header strong {
  color: #101110;
  font-size: 13px;
  font-weight: 760;
}

#root .phone .account-avatar-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

#root .phone .account-avatar-options button {
  min-width: 0;
  min-height: 70px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 8px 4px 7px;
  border: 1px solid rgba(12, 14, 12, 0.08);
  border-radius: 14px;
  background: #f4f3ef;
  color: #101110;
}

#root .phone .account-avatar-options button.active {
  border-color: #101110;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(12, 14, 12, 0.12);
}

#root .phone .avatar-choice-preview {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

#root .phone .avatar-choice-preview span {
  font-size: 17px;
}

#root .phone .account-avatar-options button > strong {
  max-width: 100%;
  overflow: hidden;
  color: #101110;
  font-size: 9.6px;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .account-capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

#root .phone .account-capability {
  min-width: 0;
  min-height: 104px;
  padding: 12px 8px 10px;
  overflow: hidden;
}

#root .phone .account-capability svg {
  width: 19px;
  height: 19px;
}

#root .phone .account-capability strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 12.5px;
  line-height: 1.03;
}

#root .phone .account-capability small {
  max-width: 100%;
  font-size: 10.2px;
}

#root .phone .profile-mark.account-avatar-visual {
  border-radius: 11px;
}

#root .phone .profile-mark.account-avatar-visual span {
  font-size: 22px;
}

#root .phone.theme-black .account-avatar-picker {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101110;
}

#root .phone.theme-black .account-avatar-picker header strong,
#root .phone.theme-black .account-avatar-options button > strong {
  color: #f7f7f4;
}

#root .phone.theme-black .account-avatar-picker header span {
  color: rgba(247, 247, 244, 0.56);
}

#root .phone.theme-black .account-avatar-options button {
  border-color: rgba(255, 255, 255, 0.1);
  background: #171916;
}

#root .phone.theme-black .account-avatar-options button.active {
  border-color: rgba(255, 255, 255, 0.72);
  background: #101110;
}

@media (max-width: 374px) {
  #root .phone .account-capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  #root .phone .account-capability {
    min-height: 98px;
    padding: 10px 6px 9px;
  }

  #root .phone .account-capability strong {
    font-size: 11.4px;
  }

  #root .phone .account-avatar-options {
    gap: 5px;
  }
}

/* v167: Nordkurve hub as a cleaner fan-magazine screen. */
#root .phone .nordkurve-back {
  margin: 0 18px 8px;
}

#root .phone .nordkurve-hero {
  position: relative;
  min-height: 238px;
  display: block;
  margin: 0 18px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  padding: 0;
  background: #101110;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(12, 14, 12, 0.18);
}

#root .phone .nordkurve-hero::before,
#root .phone .nordkurve-hero::after {
  content: none;
}

#root .phone .nordkurve-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.02);
}

#root .phone .nordkurve-hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(16, 17, 16, 0.12) 0%, rgba(16, 17, 16, 0.28) 36%, rgba(16, 17, 16, 0.86) 100%),
    linear-gradient(90deg, rgba(16, 17, 16, 0.72) 0%, rgba(16, 17, 16, 0.12) 72%);
}

#root .phone .nordkurve-hero-copy > span,
#root .phone .nordkurve-card-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10.6px;
  font-weight: 780;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .nordkurve-hero h3 {
  max-width: 265px;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 760;
  line-height: 0.94;
}

#root .phone .nordkurve-hero p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.2px;
  font-weight: 480;
  line-height: 1.34;
}

#root .phone .nordkurve-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

#root .phone .nordkurve-hero-tags span {
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 10.8px;
  font-weight: 690;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: blur(10px);
}

#root .phone .nordkurve-grid {
  display: grid;
  gap: 12px;
  margin: 14px 18px 0;
}

#root .phone .nordkurve-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 0;
  align-content: stretch;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 18px;
  padding: 0;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 12px 28px rgba(16, 17, 16, 0.08);
}

#root .phone .nordkurve-card::before {
  content: none;
}

#root .phone .nordkurve-card.tifo,
#root .phone .nordkurve-card.k1909 {
  background: #ffffff;
}

#root .phone .nordkurve-card-media {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  background: #101110;
}

#root .phone .nordkurve-card-image {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

#root .phone .nordkurve-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 16, 0.04), rgba(16, 17, 16, 0.4));
}

#root .phone .nordkurve-card-mark {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  min-width: 38px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #101110;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 790;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

#root .phone .nordkurve-card-body {
  min-width: 0;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 13px 13px 12px;
}

#root .phone .nordkurve-card-copy,
#root .phone .nordkurve-link-grid {
  position: static;
  z-index: auto;
}

#root .phone .nordkurve-card-copy {
  display: grid;
  gap: 5px;
}

#root .phone .nordkurve-card-copy span {
  color: rgba(16, 17, 16, 0.52);
  font-size: 9.8px;
}

#root .phone .nordkurve-card-copy h3 {
  margin: 0;
  color: #101110;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.03;
}

#root .phone .nordkurve-card-copy p {
  display: -webkit-box;
  max-width: none;
  margin: 0;
  overflow: hidden;
  color: rgba(16, 17, 16, 0.62);
  font-size: 12px;
  font-weight: 470;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#root .phone .nordkurve-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

#root .phone .nordkurve-link-grid a {
  min-width: 0;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 999px;
  background: #f4f3ef;
  color: #101110;
  font-size: 10.2px;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

#root .phone .nordkurve-link-grid a svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

#root .phone.theme-black .nordkurve-hero {
  background: #101110;
  box-shadow: var(--shadow-panel);
}

#root .phone.theme-black .nordkurve-card,
#root .phone.theme-black .nordkurve-card.tifo,
#root .phone.theme-black .nordkurve-card.k1909 {
  border-color: rgba(255, 255, 255, 0.1);
  background: #101110;
  color: #f7f7f4;
}

#root .phone.theme-black .nordkurve-card-copy h3 {
  color: #f7f7f4;
}

#root .phone.theme-black .nordkurve-card-copy span,
#root .phone.theme-black .nordkurve-card-copy p {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black .nordkurve-link-grid a {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #f7f7f4;
}

@media (max-width: 374px) {
  #root .phone .nordkurve-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  #root .phone .nordkurve-card-body {
    padding: 12px 11px;
  }

  #root .phone .nordkurve-link-grid a {
    font-size: 9.4px;
  }
}

/* v160: current news asset and cleaner PK briefing on light cards. */
#root .phone .pk-video .video-caption {
  background: #ffffff;
  color: #101110;
}

#root .phone .pk-video .video-caption span {
  color: #77716a;
}

#root .phone .pk-video .video-caption strong {
  color: #101110;
}

#root .phone .pk-video .video-caption small {
  color: #5f665d;
}

#root .phone .pk-summary {
  margin-top: 12px;
}

#root .phone .pk-summary strong {
  color: #101110;
  font-family: var(--font-ui);
  text-transform: none;
}

#root .phone .pk-summary p {
  color: #5f665d;
}

#root .phone.theme-black .pk-video .video-caption {
  background: #101110;
  color: #f7f7f4;
}

#root .phone.theme-black .pk-video .video-caption span,
#root .phone.theme-black .pk-video .video-caption small,
#root .phone.theme-black .pk-summary p {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black .pk-video .video-caption strong,
#root .phone.theme-black .pk-summary strong {
  color: #f7f7f4;
}

@media (max-width: 374px) {
  #root .phone .matchday-title,
  #root .phone .matchday-hero,
  #root .phone .matchday-actions,
  #root .phone .matchday-briefing,
  #root .phone .matchday-ticket-action {
    margin-right: 14px;
    margin-left: 14px;
  }

  #root .phone .matchday-table-signal {
    width: calc(100% - 28px);
    margin-right: 14px;
    margin-left: 14px;
  }

  #root .phone .matchday-hero .match-name {
    font-size: 23px;
  }
}

/* v168: article-specific crop for the Lustenau preview, focused on green shirts. */
#root .phone .news-image-focus-lustenau-green {
  object-position: left center;
}

#root .phone .news-thumb-image.news-image-focus-lustenau-green {
  transform: scale(1.76);
  transform-origin: 16% 58%;
}

#root .phone .news-featured-image.news-image-focus-lustenau-green {
  transform: scale(1.48);
  transform-origin: 17% 58%;
}

#root .phone .sheet-image.news-image-focus-lustenau-green {
  transform: scale(1.52);
  transform-origin: 18% 58%;
}

/* v169: feedback mailto screen and grouped press-story hints. */
#root .phone .news-related {
  display: block;
  margin-top: 2px;
  color: rgba(16, 17, 16, 0.48);
  font-size: 11px;
  font-weight: 640;
  line-height: 1.15;
}

#root .phone .sheet-related-sources {
  display: grid;
  gap: 8px;
  margin: 12px 0 2px;
  padding: 12px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 14px;
  background: #f4f3ef;
}

#root .phone .sheet-related-sources span {
  color: rgba(16, 17, 16, 0.54);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

#root .phone .sheet-related-sources div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

#root .phone .sheet-related-sources a {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #101110;
  font-size: 12px;
  font-weight: 740;
  text-decoration: none;
}

#root .phone .feedback-back {
  margin: 0 18px 8px;
}

#root .phone .feedback-hero {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  margin: 0 18px 12px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(16, 17, 16, 0.94), rgba(16, 17, 16, 0.78)),
    repeating-linear-gradient(120deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 18px 19px);
  color: #ffffff;
}

#root .phone .feedback-hero > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #ffffff;
  color: #101110;
}

#root .phone .feedback-hero strong {
  display: block;
  margin: 1px 0 6px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 780;
  line-height: 1.05;
}

#root .phone .feedback-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 470;
  line-height: 1.35;
}

#root .phone .feedback-form {
  display: grid;
  gap: 13px;
  margin: 0 18px 18px;
  padding: 18px;
  background: #ffffff;
}

#root .phone .feedback-form label {
  display: grid;
  gap: 7px;
}

#root .phone .feedback-form label span {
  color: rgba(16, 17, 16, 0.52);
  font-size: 10.5px;
  font-weight: 780;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

#root .phone .feedback-form input,
#root .phone .feedback-form select,
#root .phone .feedback-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 17, 16, 0.1);
  border-radius: 12px;
  background: #f4f3ef;
  color: #101110;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 560;
  outline: 0;
}

#root .phone .feedback-form input,
#root .phone .feedback-form select {
  height: 45px;
  padding: 0 12px;
}

#root .phone .feedback-form textarea {
  min-height: 132px;
  padding: 12px;
  line-height: 1.36;
  resize: vertical;
}

#root .phone .feedback-form :is(input, select, textarea):focus {
  border-color: rgba(16, 17, 16, 0.34);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(16, 17, 16, 0.07);
}

#root .phone .feedback-submit {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
  font-size: 14px;
  font-weight: 780;
}

#root .phone .feedback-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

#root .phone .feedback-form > small {
  color: rgba(16, 17, 16, 0.48);
  font-size: 11px;
  font-weight: 520;
  text-align: center;
}

#root .phone .feedback-message {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f4f3ef;
  color: #101110;
  font-size: 12.5px;
  font-weight: 680;
}

#root .phone.theme-black .news-related,
#root .phone.theme-black .sheet-related-sources span,
#root .phone.theme-black .feedback-form label span,
#root .phone.theme-black .feedback-form > small {
  color: rgba(247, 247, 244, 0.58);
}

#root .phone.theme-black .sheet-related-sources,
#root .phone.theme-black .feedback-form,
#root .phone.theme-black .feedback-message {
  border-color: rgba(255, 255, 255, 0.1);
  background: #101110;
  color: #f7f7f4;
}

#root .phone.theme-black .sheet-related-sources a,
#root .phone.theme-black .feedback-form input,
#root .phone.theme-black .feedback-form select,
#root .phone.theme-black .feedback-form textarea {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #f7f7f4;
}

#root .phone.theme-black .feedback-form :is(input, select, textarea):focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

#root .phone.theme-black .feedback-submit {
  background: #f7f7f4;
  color: #101110;
}

/* v202: hidden feedback inbox with export. */
#root .phone .feedback-inbox-hero {
  grid-template-columns: 46px 1fr;
}

#root .phone .feedback-inbox-hero > span {
  width: 46px;
  height: 46px;
  border-radius: 999px;
}

#root .phone .feedback-inbox-form {
  margin-bottom: 12px;
}

#root .phone .feedback-inbox-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 18px 10px;
}

#root .phone .feedback-inbox-stats > .panel {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 12px 10px;
  border-radius: 16px;
  background: #ffffff;
}

#root .phone .feedback-inbox-stats span {
  color: rgba(16, 17, 16, 0.48);
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .feedback-inbox-stats strong {
  display: block;
  margin-top: 7px;
  color: #101110;
  font-size: 18px;
  font-weight: 820;
  line-height: 1.05;
}

#root .phone .feedback-inbox-toolbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 0 18px 12px;
  padding: 8px;
  border-radius: 16px;
  background: #ffffff;
}

#root .phone .feedback-inbox-toolbar button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 999px;
  background: #f0f1ed;
  color: #101110;
  font-size: 10.5px;
  font-weight: 780;
}

#root .phone .feedback-inbox-toolbar button:first-child {
  background: #101110;
  color: #ffffff;
}

#root .phone .feedback-inbox-list {
  display: grid;
  gap: 10px;
  margin: 0 18px 18px;
}

#root .phone .feedback-inbox-list > .panel {
  margin: 0;
}

#root .phone .feedback-inbox-item {
  padding: 15px;
  border-radius: 16px;
  background: #ffffff;
}

#root .phone .feedback-inbox-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

#root .phone .feedback-inbox-item-head span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

#root .phone .feedback-inbox-item-head time {
  color: rgba(16, 17, 16, 0.48);
  font-size: 11px;
  font-weight: 680;
  white-space: nowrap;
}

#root .phone .feedback-inbox-item strong {
  display: block;
  color: #101110;
  font-size: 17px;
  font-weight: 820;
  line-height: 1.12;
}

#root .phone .feedback-inbox-item p {
  margin: 8px 0 0;
  color: #555d52;
  font-size: 13px;
  font-weight: 520;
  line-height: 1.38;
  white-space: pre-line;
}

#root .phone .feedback-inbox-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 11px;
}

#root .phone .feedback-inbox-meta span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f0f1ed;
  color: #101110;
  font-size: 10.5px;
  font-weight: 700;
}

#root .phone .feedback-inbox-empty {
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
}

#root .phone .feedback-inbox-empty strong {
  display: block;
  color: #101110;
  font-size: 18px;
  font-weight: 820;
}

#root .phone .feedback-inbox-empty p {
  margin: 7px 0 0;
  color: #626a60;
  font-size: 13px;
  line-height: 1.34;
}

#root .phone.theme-black :is(.feedback-inbox-stats > .panel, .feedback-inbox-toolbar, .feedback-inbox-item, .feedback-inbox-empty) {
  border-color: rgba(255, 255, 255, 0.1);
  background: #101110;
  color: #f7f7f4;
}

#root .phone.theme-black .feedback-inbox-toolbar button {
  background: rgba(255, 255, 255, 0.08);
  color: #f7f7f4;
}

#root .phone.theme-black .feedback-inbox-toolbar button:first-child,
#root .phone.theme-black .feedback-inbox-item-head span {
  background: #ffffff;
  color: #101110;
}

#root .phone.theme-black :is(.feedback-inbox-stats span, .feedback-inbox-item-head time, .feedback-inbox-item p, .feedback-inbox-empty p) {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black :is(.feedback-inbox-stats strong, .feedback-inbox-item strong, .feedback-inbox-empty strong) {
  color: #f7f7f4;
}

#root .phone.theme-black .feedback-inbox-meta span {
  background: rgba(255, 255, 255, 0.08);
  color: #f7f7f4;
}

/* v253: cookieless first-party analytics and privacy info. */
#root .phone .analytics-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#root .phone .analytics-stats > .panel {
  min-height: 68px;
}

#root .phone .analytics-stats strong {
  font-size: 20px;
}

#root .phone .analytics-toolbar {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#root .phone .analytics-chart,
#root .phone .analytics-list,
#root .phone .analytics-privacy-note,
#root .phone .privacy-section {
  margin: 0 18px 12px;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
}

#root .phone .analytics-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

#root .phone .analytics-section-head strong,
#root .phone .analytics-privacy-note strong,
#root .phone .privacy-section h3 {
  color: #101110;
  font-size: 18px;
  font-weight: 820;
  line-height: 1;
}

#root .phone .analytics-section-head small {
  color: rgba(16, 17, 16, 0.48);
  font-size: 10.5px;
  font-weight: 760;
  text-transform: uppercase;
}

#root .phone .analytics-bars {
  height: 118px;
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  align-items: end;
  gap: 5px;
}

#root .phone .analytics-bar {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 14px;
  align-items: end;
  gap: 5px;
}

#root .phone .analytics-bar i {
  width: 100%;
  min-height: 8px;
  display: block;
  align-self: end;
  border-radius: 999px 999px 3px 3px;
  background: #101110;
}

#root .phone .analytics-bar small {
  overflow: hidden;
  color: rgba(16, 17, 16, 0.45);
  font-size: 8.5px;
  font-weight: 720;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

#root .phone .analytics-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 36px;
  border-top: 1px solid rgba(16, 17, 16, 0.08);
  color: #101110;
}

#root .phone .analytics-list-row span {
  color: #4e564d;
  font-size: 13px;
  font-weight: 620;
}

#root .phone .analytics-list-row strong {
  font-size: 15px;
  font-weight: 820;
}

#root .phone .analytics-list p,
#root .phone .analytics-privacy-note p,
#root .phone .privacy-section p {
  margin: 8px 0 0;
  color: #5d655b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

#root .phone .privacy-section h3 {
  margin: 0 0 8px;
}

#root .phone .privacy-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

#root .phone .privacy-chip-grid span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
  font-size: 11px;
  font-weight: 780;
}

#root .phone .privacy-chip-grid.muted span {
  background: #f0f1ed;
  color: #101110;
}

#root .phone .privacy-section a {
  color: inherit;
  font-weight: 780;
}

#root .phone .mushbomb-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
}

#root .phone.theme-black .mushbomb-logo {
  background: #f7f7f4;
}

#root .phone.theme-black :is(.analytics-chart, .analytics-list, .analytics-privacy-note, .privacy-section) {
  border-color: rgba(255, 255, 255, 0.1);
  background: #101110;
}

#root .phone.theme-black :is(.analytics-section-head strong, .analytics-list-row strong, .analytics-privacy-note strong, .privacy-section h3) {
  color: #f7f7f4;
}

#root .phone.theme-black :is(.analytics-section-head small, .analytics-list-row span, .analytics-list p, .analytics-privacy-note p, .privacy-section p, .analytics-bar small) {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black .analytics-list-row {
  border-color: rgba(255, 255, 255, 0.08);
}

#root .phone.theme-black .analytics-bar i,
#root .phone.theme-black .privacy-chip-grid span {
  background: #f7f7f4;
  color: #101110;
}

#root .phone.theme-black .privacy-chip-grid.muted span {
  background: rgba(255, 255, 255, 0.08);
  color: #f7f7f4;
}

@media (max-width: 374px) {
  #root .phone .analytics-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* v172: tighter source rail, aligned Schwoaze Feed icon, readable lineup picks. */
#root .phone .news-list .feed-section-head .feed-main-icon {
  align-self: start;
  transform: translateY(-3px);
}

#root .phone .lineup-choice-grid .player-choice:not(.selected) {
  border-color: rgba(16, 17, 16, 0.08);
  background: #ffffff;
  color: #101110;
}

#root .phone .lineup-choice-grid .player-choice:not(.selected) em {
  background: #f0efeb;
  color: #101110;
}

#root .phone .lineup-choice-grid .player-choice:not(.selected) strong {
  color: #101110;
}

#root .phone .lineup-choice-grid .player-choice:not(.selected) small {
  color: #555d55;
}

#root .phone .lineup-choice-grid .player-choice.selected strong {
  color: #f7f7f4;
}

#root .phone .lineup-choice-grid .player-choice.selected small {
  color: rgba(247, 247, 244, 0.72);
}

#root .phone.theme-black .lineup-choice-grid .player-choice:not(.selected) {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
  color: #f5f2ed;
}

#root .phone.theme-black .lineup-choice-grid .player-choice:not(.selected) em {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

#root .phone.theme-black .lineup-choice-grid .player-choice:not(.selected) strong {
  color: #f6f4ef;
}

#root .phone.theme-black .lineup-choice-grid .player-choice:not(.selected) small {
  color: #aba59c;
}

#root .phone .lineup-choice-grid .lineup-choice {
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 58px;
  gap: 11px;
  padding: 9px 11px 9px 9px;
}

#root .phone .lineup-choice-kit {
  width: 42px;
  height: 38px;
  display: grid;
  place-items: center;
  justify-items: center;
  border-radius: 12px;
  background: #f1f0ec;
  box-shadow: inset 0 0 0 1px rgba(16, 17, 16, 0.06);
}

#root .phone .lineup-choice-kit .mini-shirt {
  width: 34px;
  height: 31px;
  font-size: 14px;
  filter: drop-shadow(0 3px 5px rgba(16, 17, 16, 0.18));
}

#root .phone .lineup-choice.selected .lineup-choice-kit {
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.66),
    0 8px 14px rgba(0, 0, 0, 0.16);
}

#root .phone .lineup-choice.keeper:not(.selected) .lineup-choice-kit {
  background: #e9f1e4;
}

#root .phone.theme-black .lineup-choice-kit {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

#root .phone.theme-black .lineup-choice.keeper:not(.selected) .lineup-choice-kit {
  background: rgba(88, 138, 82, 0.22);
}

#root .phone.theme-black .lineup-choice.selected .lineup-choice-kit {
  background: #f7f7f4;
}

#root .phone .nordkurve-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

#root .phone .nordkurve-card {
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}

#root .phone .nordkurve-link-grid a {
  width: 100%;
}

/* v175: Home shows a compact SK Sturm X carousel instead of a press block. */
#root .phone .home-social-carousel {
  margin-top: 14px;
  padding: 14px 0 12px;
  border-radius: 18px;
  overflow: hidden;
}

#root .phone .home-tiktok-panel {
  margin-top: 10px;
}

#root .phone .home-x-head {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}

#root .phone .home-x-head-brand {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
}

#root .phone .home-x-head-brand svg {
  width: 14px;
  height: 14px;
}

#root .phone .home-tiktok-head-brand svg {
  width: 14px;
  height: 14px;
}

#root .phone .home-x-head h3 {
  margin: 0;
  color: #101110;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 790;
  line-height: 1;
}

#root .phone .home-x-head small {
  display: block;
  margin-top: 3px;
  color: rgba(16, 17, 16, 0.48);
  font-size: 11.2px;
  font-weight: 610;
  line-height: 1.15;
}

#root .phone .home-x-head a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  justify-self: end;
  border-radius: 999px;
  color: #101110;
  background: #f2f1ed;
  text-decoration: none;
}

#root .phone .home-x-scroll {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding: 0 14px 4px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

#root .phone .home-x-scroll::-webkit-scrollbar {
  display: none;
}

#root .phone .home-x-post-card {
  flex: 0 0 calc(100% - 26px);
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  scroll-snap-align: center;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 16px;
  padding: 13px;
  color: #101110;
  background: linear-gradient(180deg, #ffffff, #f7f7f3);
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(16, 17, 16, 0.07);
}

#root .phone .home-x-post-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

#root .phone .home-x-post-brand {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 27px;
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
}

#root .phone .home-x-post-brand svg {
  width: 13px;
  height: 13px;
}

#root .phone .home-tiktok-post-brand svg {
  width: 13px;
  height: 13px;
}

#root .phone .home-x-post-top strong {
  display: block;
  color: #101110;
  font-size: 13px;
  font-weight: 790;
  line-height: 1.05;
}

#root .phone .home-x-post-top small {
  display: block;
  margin-top: 2px;
  color: rgba(16, 17, 16, 0.48);
  font-size: 10.8px;
  font-weight: 600;
  line-height: 1;
}

#root .phone .home-x-post-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #242823;
  font-size: 14.5px;
  font-weight: 630;
  line-height: 1.24;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

#root .phone .home-x-post-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(16, 17, 16, 0.52);
  font-size: 10.5px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .home-x-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

#root .phone .home-x-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(16, 17, 16, 0.18);
}

#root .phone .home-x-dots span.active {
  width: 20px;
  background: #101110;
}

#root .phone.theme-black .home-social-carousel {
  border-color: rgba(255, 255, 255, 0.11);
  background: #101110;
}

#root .phone.theme-black .home-x-head h3,
#root .phone.theme-black .home-x-post-top strong,
#root .phone.theme-black .home-x-post-card p {
  color: #f7f7f4;
}

#root .phone.theme-black .home-x-head small,
#root .phone.theme-black .home-x-post-top small,
#root .phone.theme-black .home-x-post-foot {
  color: rgba(247, 247, 244, 0.56);
}

#root .phone.theme-black .home-x-head-brand,
#root .phone.theme-black .home-x-post-brand {
  color: #101110;
  background: #f7f7f4;
}

#root .phone.theme-black .home-x-head a {
  color: #f7f7f4;
  background: rgba(255, 255, 255, 0.08);
}

#root .phone.theme-black .home-x-post-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #171817, #101110);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

#root .phone.theme-black .home-x-dots span {
  background: rgba(247, 247, 244, 0.22);
}

#root .phone.theme-black .home-x-dots span.active {
  background: #f7f7f4;
}

/* v179: Native preview cards for the X and TikTok home carousels. */
#root .phone .home-x-post-card {
  min-height: 356px;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px;
}

#root .phone .home-x-post-top {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 23px;
  align-items: center;
}

#root .phone .home-x-account-badge {
  width: 30px;
  height: 34px;
  filter: drop-shadow(0 5px 8px rgba(16, 17, 16, 0.16));
}

#root .phone .home-x-post-top strong {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

#root .phone .home-x-verified {
  color: #168dff;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

#root .phone .home-x-card-network {
  width: 19px;
  height: 19px;
  justify-self: end;
  color: #101110;
}

#root .phone .home-tiktok-card-network {
  width: 18px;
  height: 18px;
}

#root .phone .home-x-post-card .home-social-post-text,
#root .phone .home-x-live-card .home-social-post-text {
  color: #1f241f;
  font-size: 14.6px;
  font-weight: 570;
  line-height: 1.28;
  -webkit-line-clamp: 3;
}

#root .phone .home-social-preview {
  overflow: hidden;
  border: 1px solid rgba(16, 17, 16, 0.12);
  border-radius: 14px;
  background: #ffffff;
}

#root .phone .home-social-preview-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #151713;
}

#root .phone .home-tiktok-preview .home-social-preview-media {
  aspect-ratio: 16 / 10;
}

#root .phone .home-social-preview-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#root .phone .home-social-preview-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #101110;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

#root .phone .home-social-preview-play svg {
  width: 18px;
  height: 18px;
}

#root .phone .home-social-preview-copy {
  display: grid;
  gap: 3px;
  padding: 9px 11px 10px;
}

#root .phone .home-social-preview-copy small {
  color: #7a8078;
  font-size: 10.7px;
  font-weight: 540;
  line-height: 1.1;
}

#root .phone .home-social-preview-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #151713;
  font-size: 13.2px;
  font-weight: 690;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#root .phone .home-social-preview-copy em {
  display: -webkit-box;
  overflow: hidden;
  color: #5f655e;
  font-size: 11.4px;
  font-style: normal;
  font-weight: 480;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#root .phone .home-social-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 2px;
  color: rgba(16, 17, 16, 0.58);
  font-size: 10.8px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .home-social-cta b {
  color: #101110;
  font-size: 11.1px;
  font-weight: 800;
  text-transform: none;
}

#root .phone .home-x-live-card {
  display: grid;
  gap: 12px;
  margin: 12px 14px 0;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 16px;
  padding: 13px;
  color: #101110;
  background: linear-gradient(180deg, #ffffff, #f7f7f3);
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(16, 17, 16, 0.07);
}

#root .phone .home-x-quick-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 14px 0;
}

#root .phone .home-x-quick-row a {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(16, 17, 16, 0.07);
  border-radius: 999px;
  padding: 9px 7px;
  color: #101110;
  background: #f2f1ed;
  font-size: 10.6px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
}

#root .phone .home-x-quick-row a span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .home-x-quick-row svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

#root .phone .home-x-dots button {
  appearance: none;
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(16, 17, 16, 0.18);
  transition: width 160ms ease, background-color 160ms ease;
}

#root .phone .home-x-dots button.active {
  width: 21px;
  background: #101110;
}

#root .phone .home-x-dots button:focus-visible {
  outline: 2px solid rgba(16, 17, 16, 0.28);
  outline-offset: 4px;
}

#root .phone.theme-black .home-x-card-network {
  color: #f7f7f4;
}

#root .phone.theme-black .home-x-post-card .home-social-post-text,
#root .phone.theme-black .home-x-live-card .home-social-post-text {
  color: #f7f7f4;
}

#root .phone.theme-black .home-social-preview {
  border-color: rgba(255, 255, 255, 0.08);
  background: #f7f7f4;
}

#root .phone.theme-black .home-social-preview-copy small {
  color: #747870;
}

#root .phone.theme-black .home-social-preview-copy strong {
  color: #111310;
}

#root .phone.theme-black .home-social-preview-copy em {
  color: #5d625b;
}

#root .phone.theme-black .home-social-cta {
  color: rgba(247, 247, 244, 0.58);
}

#root .phone.theme-black .home-social-cta b {
  color: #f7f7f4;
}

#root .phone.theme-black .home-x-live-card {
  border-color: rgba(255, 255, 255, 0.1);
  color: #f7f7f4;
  background: linear-gradient(180deg, #171817, #101110);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

#root .phone.theme-black .home-x-quick-row a {
  border-color: rgba(255, 255, 255, 0.08);
  color: #f7f7f4;
  background: rgba(255, 255, 255, 0.08);
}

#root .phone.theme-black .home-x-dots button {
  background: rgba(247, 247, 244, 0.22);
}

#root .phone.theme-black .home-x-dots button.active {
  background: #f7f7f4;
}

/* v181: Real X timeline embed, TikTok handled like Instagram profile cards. */
#root .phone .x-timeline-shell {
  min-height: var(--x-timeline-height);
  margin: 12px 14px 0;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(16, 17, 16, 0.06);
}

#root .phone .social-x-timeline {
  margin-right: 0;
  margin-left: 0;
}

#root .phone .x-timeline-shell > .twitter-timeline {
  min-height: var(--x-timeline-height);
  display: grid;
  place-items: center;
  padding: 22px;
  color: #101110;
  background: #f5f5f2;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

#root .phone .x-timeline-shell iframe {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  border: 0 !important;
}

#root .phone .x-timeline-direct {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid rgba(16, 17, 16, 0.08);
  color: #101110;
  background: #ffffff;
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
}

#root .phone :is(.instagram-card, .tiktok-card, .podcast-card) .integration-icon {
  color: #101110;
}

#root .phone .tiktok-card .integration-brand-mark {
  width: 23px;
  height: 23px;
}

#root .phone .tiktok-post-brand,
#root .phone .tiktok-fallback-brand {
  width: 18px;
  height: 18px;
}

#root .phone .tiktok-card-mark .brand-mark-tiktok {
  width: 15px;
  height: 15px;
}

#root .phone .tiktok-card-media .instagram-card-image {
  filter: grayscale(0.96) contrast(1.06) brightness(0.92);
}

#root .phone.theme-black .x-timeline-shell {
  border-color: rgba(255, 255, 255, 0.1);
  background: #101110;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

#root .phone.theme-black .x-timeline-shell > .twitter-timeline {
  color: #f7f7f4;
  background: #151714;
}

#root .phone.theme-black .x-timeline-direct {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: #101110;
  background: #ffffff;
}

/* v182: Home content first, social media as simple official links. */
#root .phone .social-media-panel {
  margin: 12px 18px 0;
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(18, 24, 36, 0.08);
}

#root .phone .social-media-head {
  margin-bottom: 10px;
}

#root .phone .social-media-head h3 {
  margin: 0;
  color: #101110;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .social-media-links {
  display: grid;
  gap: 8px;
}

#root .phone .social-media-link {
  min-height: 48px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 12px;
  padding: 7px 10px 7px 7px;
  color: #101110;
  background: #f7f7f3;
  text-decoration: none;
}

#root .phone .social-media-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #101110;
  background: #ffffff;
  box-shadow: 0 7px 15px rgba(16, 17, 16, 0.08);
}

#root .phone .social-media-brand {
  width: 16px;
  height: 16px;
}

#root .phone .social-media-link.tiktok .social-media-brand {
  width: 17px;
  height: 17px;
}

#root .phone .social-media-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

#root .phone .social-media-copy strong,
#root .phone .social-media-copy small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .social-media-copy strong {
  color: #101110;
  font-size: 14.2px;
  font-weight: 760;
  line-height: 1.1;
}

#root .phone .social-media-copy small {
  color: #6b7168;
  font-size: 10.7px;
  font-weight: 560;
  line-height: 1.1;
}

#root .phone.theme-black .social-media-panel {
  background: #101110;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

#root .phone.theme-black .social-media-head h3,
#root .phone.theme-black .social-media-link {
  color: #f7f7f4;
}

#root .phone.theme-black .social-media-link {
  border-color: rgba(255, 255, 255, 0.1);
  background: #171916;
}

#root .phone.theme-black .social-media-icon {
  color: #101110;
  background: #ffffff;
}

#root .phone.theme-black .social-media-copy strong {
  color: #f7f7f4;
}

#root .phone.theme-black .social-media-copy small {
  color: rgba(247, 247, 244, 0.58);
}

/* v193: Shorts cards are reduced to image, play affordance and title below. */
#root .phone .brand-mark-youtube .brand-cutout {
  fill: #ffffff !important;
}

#root .phone .youtube-shorts-section {
  margin: 14px 18px 0;
  padding: 14px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 16px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 10px 22px rgba(16, 17, 16, 0.07);
}

#root .phone .youtube-shorts-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

#root .phone .youtube-shorts-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

#root .phone .youtube-main-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 0;
  color: #101110;
  background: transparent;
  box-shadow: none;
}

#root .phone .youtube-main-brand {
  width: 23px;
  height: 23px;
}

#root .phone .youtube-shorts-head h3 {
  margin: 0;
  overflow: hidden;
  color: #101110;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .youtube-shorts-head a {
  flex: 0 0 auto;
  color: #5f675f;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

#root .phone .youtube-shorts-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 2px 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

#root .phone .youtube-shorts-rail::-webkit-scrollbar {
  display: none;
}

#root .phone .youtube-short-card {
  flex: 0 0 45%;
  min-width: 0;
  border: 0;
  padding: 0;
  color: #101110;
  background: transparent;
  cursor: pointer;
  font: inherit;
  scroll-snap-align: start;
  text-align: left;
  text-decoration: none;
}

#root .phone .youtube-short-card.is-playing {
  flex-basis: 45%;
  cursor: default;
}

#root .phone .youtube-short-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  background: #101110;
  box-shadow: 0 14px 28px rgba(20, 22, 20, 0.16);
}

#root .phone .youtube-short-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 33%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0) 42%);
  pointer-events: none;
}

#root .phone .youtube-short-media-player {
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(20, 22, 20, 0.16);
}

#root .phone .youtube-short-media-player::after {
  display: block;
}

#root .phone .youtube-short-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

#root .phone .youtube-short-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#root .phone .youtube-short-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  color: #ffffff;
  pointer-events: none;
}

#root .phone .youtube-short-center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(16, 17, 16, 0.26);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(7px);
}

#root .phone .youtube-short-center-play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
  fill: currentColor;
}

#root .phone .youtube-short-card.is-playing .youtube-short-center-play {
  display: none;
}

#root .phone .youtube-short-title {
  display: -webkit-box;
  min-height: 31px;
  margin-top: 7px;
  overflow: hidden;
  color: #4f574d;
  font-size: 12.8px;
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#root .phone.theme-black .youtube-shorts-section {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101110;
  color: #f7f7f4;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

#root .phone.theme-black .youtube-main-icon {
  color: #f7f7f4;
  background: transparent;
}

#root .phone.theme-black .youtube-shorts-head h3 {
  color: #f7f7f4;
}

#root .phone.theme-black .youtube-short-title {
  color: rgba(247, 247, 244, 0.82);
}

#root .phone.theme-black .youtube-shorts-head a {
  color: rgba(247, 247, 244, 0.62);
}

/* v190: Professional Schwoaze app icon used consistently in the title header. */
#root .phone .topbar::before {
  content: "";
  width: 32px;
  height: 32px;
  align-self: center;
  justify-self: start;
  border-radius: 9px;
  clip-path: none;
  background: transparent url("/icons/header-icon.png?v=276") center / cover no-repeat;
  box-shadow:
    0 9px 18px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

#root .phone.theme-black .topbar::before {
  box-shadow:
    0 9px 20px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

/* v195: Spielort detail for away/home stadium cards. */
#root .phone .feature-card--venue {
  flex-basis: 224px;
  min-height: 148px;
}

#root .phone .feature-card--venue::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0 28%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.08) 72%);
}

#root .phone .feature-card--venue .feature-image {
  filter: saturate(0.94) contrast(1.08) brightness(0.84);
}

#root .phone .feature-card-head {
  position: absolute;
  top: 12px;
  right: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

#root .phone .feature-label {
  gap: 4px;
}

#root .phone .feature-label svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.2;
}

#root .phone .feature-card-head .feature-icon {
  position: static;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

#root .phone .feature-card-head .feature-label {
  max-width: calc(100% - 42px);
}

#root .phone .venue-back {
  margin: 6px 0 6px 22px;
  color: #6d746a;
}

#root .phone .venue-hero {
  position: relative;
  min-height: 258px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 0;
  border-radius: 18px;
  background: #101110;
  color: #ffffff;
  isolation: isolate;
  box-shadow: 0 18px 38px rgba(12, 14, 12, 0.2);
}

#root .phone .venue-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.24) 42%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.06) 62%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

#root .phone .venue-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.06) brightness(0.84);
}

#root .phone .venue-hero > :not(.venue-hero-image) {
  position: relative;
  z-index: 2;
}

#root .phone .venue-hero .asset-credit {
  position: absolute;
  right: 12px;
  bottom: 9px;
  z-index: 3;
  max-width: 178px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 8px;
  font-weight: 600;
  line-height: 1.15;
  text-align: right;
  pointer-events: none;
}

#root .phone .venue-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 0;
}

#root .phone .venue-hero-top > span {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.36);
  font-size: 11px;
  font-weight: 780;
  backdrop-filter: blur(9px);
}

#root .phone .venue-hero-top .venue-mode-pill {
  color: #101110;
  background: #ffffff;
}

#root .phone .venue-hero-weather {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(304px, 100%);
  margin: auto auto 18px;
  padding: 0;
  border: 0;
  background: transparent;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

#root .phone .venue-hero-weather > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #101110;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

#root .phone .venue-hero-weather > span svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.1;
}

#root .phone .venue-hero-weather em,
#root .phone .venue-hero-weather strong,
#root .phone .venue-hero-weather small {
  display: block;
}

#root .phone .venue-hero-weather em {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-style: normal;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .venue-hero-weather strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 820;
  line-height: 1.05;
}

#root .phone .venue-hero-weather small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.12;
}

#root .phone .venue-hero h3 {
  max-width: 310px;
  margin: 0 0 7px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 0.94;
}

#root .phone .venue-hero p {
  max-width: 304px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13.2px;
  font-weight: 570;
  line-height: 1.3;
}

#root .phone .venue-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 18px 0;
}

#root .phone .venue-action-grid > .panel {
  margin: 0;
}

#root .phone .venue-action {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 11px 7px 10px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 16px;
  color: #101110;
  background: #ffffff;
  text-align: center;
  text-decoration: none;
}

#root .phone .venue-action > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-bottom: 7px;
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
}

#root .phone .venue-action strong {
  color: #101110;
  font-size: 11.7px;
  font-weight: 800;
  line-height: 1;
}

#root .phone .venue-action small {
  display: block;
  margin-top: 4px;
  color: #72786f;
  font-size: 9.5px;
  font-weight: 650;
  line-height: 1.05;
}

#root .phone .venue-map-panel {
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
}

#root .phone .venue-map-panel .section-head {
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

#root .phone .venue-map-panel .section-head h3 {
  color: #101110;
  font-size: 19px;
  font-weight: 790;
}

#root .phone .venue-map-panel .section-head span {
  max-width: 164px;
  color: #73796f;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
  text-align: right;
}

#root .phone .venue-map-preview {
  position: relative;
  min-height: 216px;
  display: block;
  overflow: hidden;
  padding: 0;
  border-radius: 14px;
  color: #101110;
  background:
    linear-gradient(135deg, #e9ece6, #f7f7f4 54%, #dedfd9);
  text-decoration: none;
}

#root .phone .venue-map-road,
#root .phone .venue-map-block {
  position: absolute;
  display: block;
}

#root .phone .venue-map-road {
  height: 15px;
  border-radius: 999px;
  background: rgba(16, 17, 16, 0.12);
}

#root .phone .venue-map-road-a {
  top: 34px;
  left: -26px;
  width: 128%;
  transform: rotate(-12deg);
}

#root .phone .venue-map-road-b {
  top: 84px;
  left: 18px;
  width: 92%;
  transform: rotate(18deg);
}

#root .phone .venue-map-road-c {
  top: 10px;
  left: 57%;
  width: 16px;
  height: 126%;
  transform: rotate(2deg);
}

#root .phone .venue-map-block {
  border-radius: 18px;
  background: rgba(16, 17, 16, 0.075);
}

#root .phone .venue-map-block-a {
  top: 18px;
  left: 17px;
  width: 82px;
  height: 48px;
}

#root .phone .venue-map-block-b {
  right: 16px;
  bottom: 15px;
  width: 102px;
  height: 54px;
}

#root .phone .venue-map-marker {
  position: absolute;
  top: 29px;
  right: 28px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
  box-shadow: 0 13px 24px rgba(16, 17, 16, 0.22);
}

#root .phone .venue-map-preview strong,
#root .phone .venue-map-preview small {
  position: relative;
  z-index: 1;
  display: block;
}

#root .phone .venue-map-preview strong {
  color: #101110;
  font-size: 18px;
  font-weight: 830;
  line-height: 1.05;
}

#root .phone .venue-map-preview small {
  max-width: 250px;
  margin-top: 5px;
  color: #687066;
  font-size: 11.5px;
  font-weight: 570;
  line-height: 1.2;
}

#root .phone .venue-map-live {
  min-height: 222px;
  padding: 0;
  background: #e9ece6;
  box-shadow: inset 0 0 0 1px rgba(16, 17, 16, 0.08);
  touch-action: pan-y pinch-zoom;
  user-select: none;
}

#root .phone .venue-map-live::after {
  position: absolute;
  inset: auto 0 0;
  height: 48px;
  content: "";
  background: linear-gradient(180deg, rgba(247, 247, 244, 0), rgba(247, 247, 244, 0.78));
  pointer-events: none;
}

#root .phone .venue-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.88) contrast(1.04) brightness(1.02);
}

#root .phone .venue-map-tile-grid {
  position: absolute;
  top: var(--tile-top);
  left: var(--tile-left);
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(7, var(--tile-size));
  grid-auto-rows: var(--tile-size);
  width: calc(var(--tile-size) * 7);
  height: calc(var(--tile-size) * 7);
  pointer-events: none;
  transform: translate(var(--map-pan-x), var(--map-pan-y));
  will-change: transform;
}

#root .phone .venue-map-tile {
  width: var(--tile-size);
  height: var(--tile-size);
  display: block;
  filter: grayscale(0.78) contrast(1.06) brightness(1.04);
}

#root .phone .venue-map-live .venue-map-marker {
  top: 50%;
  right: auto;
  left: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: #101110;
  transform: translate(-50%, -78%);
}

#root .phone .venue-map-open {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
  font-size: 11px;
  font-weight: 780;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(16, 17, 16, 0.16);
}

#root .phone .venue-map-attribution {
  position: absolute;
  bottom: 8px;
  left: 10px;
  z-index: 2;
  color: rgba(16, 17, 16, 0.58);
  font-size: 8.5px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
}

#root .phone .venue-map-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

#root .phone .venue-map-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  color: #101110;
  background: #f0f1ed;
  font-size: 11.5px;
  font-weight: 770;
  text-decoration: none;
}

#root .phone .venue-map-button .brand-mark {
  width: 15px;
  height: 15px;
}

#root .phone .venue-map-button.apple .brand-mark {
  width: 14px;
  height: 14px;
}

#root .phone .venue-info-grid {
  display: grid;
  gap: 10px;
  margin: 12px 18px 0;
  padding-bottom: 4px;
}

#root .phone .venue-info-grid > .panel {
  margin: 0;
}

#root .phone .venue-info-card {
  min-height: 116px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 16px;
  background: #ffffff;
  color: #101110;
}

#root .phone .venue-info-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #101110;
  background: #f0f1ed;
}

#root .phone .venue-info-card em {
  display: block;
  color: #767d74;
  font-size: 10.5px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .venue-info-card strong {
  display: block;
  margin-top: 6px;
  color: #101110;
  font-size: 18px;
  font-weight: 820;
  line-height: 1.08;
}

#root .phone .venue-info-card small {
  display: block;
  margin-top: 6px;
  color: #626a60;
  font-size: 12px;
  font-weight: 520;
  line-height: 1.28;
}

#root .phone .venue-info-card a {
  width: min(176px, 100%);
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 10px;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 999px;
  color: #ffffff;
  background: #101110;
  font-size: 11px;
  font-weight: 760;
  text-decoration: none;
}

#root .phone.theme-black .venue-back {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black :is(.venue-action, .venue-map-panel, .venue-info-card) {
  border-color: rgba(255, 255, 255, 0.1);
  background: #101110;
  color: #f7f7f4;
}

#root .phone.theme-black .venue-action > span,
#root .phone.theme-black .venue-info-icon,
#root .phone.theme-black .venue-info-card a {
  color: #101110;
  background: #ffffff;
}

#root .phone.theme-black :is(.venue-action strong, .venue-map-panel .section-head h3, .venue-map-preview strong, .venue-info-card strong) {
  color: #f7f7f4;
}

#root .phone.theme-black :is(.venue-action small, .venue-map-panel .section-head span, .venue-map-preview small, .venue-info-card em, .venue-info-card small) {
  color: rgba(247, 247, 244, 0.64);
}

#root .phone.theme-black .venue-map-preview {
  color: #f7f7f4;
  background:
    linear-gradient(135deg, #181a17, #101110 54%, #252820);
}

#root .phone.theme-black .venue-map-road {
  background: rgba(255, 255, 255, 0.16);
}

#root .phone.theme-black .venue-map-block {
  background: rgba(255, 255, 255, 0.08);
}

#root .phone.theme-black .venue-map-marker {
  color: #101110;
  background: #ffffff;
}

#root .phone.theme-black .venue-map-links a {
  color: #101110;
  background: #ffffff;
}

@media (max-width: 374px) {
  #root .phone .feature-card--venue {
    flex-basis: 204px;
  }

  #root .phone .venue-action-grid {
    gap: 6px;
  }

  #root .phone .venue-action {
    padding-right: 5px;
    padding-left: 5px;
  }

  #root .phone .venue-action small {
    display: none;
  }
}

/* v206: Bebas Neue for display, Barlow for compact UI, Inter for reading text. */
:root,
#root .phone {
  --font-ui: "Barlow Condensed", Bahnschrift, "Arial Narrow", "Segoe UI", system-ui, sans-serif;
  --font-display: "Bebas Neue", "Barlow Condensed", Bahnschrift, "Arial Narrow", "Segoe UI", system-ui, sans-serif;
  --font-num: "Barlow Condensed", Bahnschrift, "Arial Narrow", "Segoe UI", system-ui, sans-serif;
  --font-copy: "Inter", "Aptos", "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, sans-serif;
}

body,
#root .phone,
#root .phone button,
#root .phone input,
#root .phone textarea,
#root .phone select {
  font-family: var(--font-ui);
}

#root .phone :is(
  .brand h1,
  .screen-title,
  .hero-kicker,
  .match-name,
  .news-hero h3,
  .editorial-hero h3,
  .section h3,
  .matchday-title,
  .menu-group h3,
  .feature-card strong,
  .home-match-card strong,
  .podcast-card > strong,
  .feed-section-head h3,
  .news-featured-copy strong,
  .news-page-list .news-copy strong,
  .press-list .news-copy strong,
  .news-copy strong,
  .pk-summary strong,
  .lineup-status strong,
  .lineup-teamline strong,
  .lineup-head strong,
  .kit-card strong,
  .bench-player strong,
  .profile-card h3,
  .data-empty h3,
  .calendar-card > strong,
  .calendar-match b,
  .standings-header strong,
  .squad-overview strong,
  .squad-group h3,
  .venue-hero h3,
  .venue-info-card strong,
  .account-hero h3,
  .rideshare-hero h3,
  .ride-chat-hero h3,
  .appearance-hero h3,
  .language-hero h3,
  .nordkurve-hero h3,
  .nordkurve-card strong,
  .tip-hero h3,
  .potm-hero h3,
  .feedback-hero strong,
  .feedback-inbox-item strong
) {
  font-family: var(--font-display);
  letter-spacing: 0;
}

#root .phone :is(
  p,
  textarea,
  .news-copy em,
  .news-featured-copy small,
  .news-featured-copy em,
  .news-page-list .news-copy em,
  .sheet-summary p,
  .pk-summary p,
  .point-row small,
  .transcript-row small,
  .profile-card p,
  .data-empty p,
  .venue-hero p,
  .venue-info-card small,
  .transit-hero p,
  .account-hero p,
  .rideshare-hero p,
  .ride-chat-hero p,
  .appearance-hero p,
  .language-hero p,
  .nordkurve-hero p,
  .feedback-hero p,
  .feedback-form textarea,
  .feedback-message,
  .feedback-inbox-item p,
  .feedback-inbox-empty p
) {
  font-family: var(--font-copy);
}

/* v207: equal-width Home hero pills. */
#root .phone .home-matchday-hero .source-pills {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

#root .phone .home-matchday-hero .source-pills span {
  min-width: 0;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  padding-right: 8px;
  padding-left: 8px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 374px) {
  #root .phone .home-matchday-hero .source-pills {
    gap: 6px;
  }

  #root .phone .home-matchday-hero .source-pills span {
    padding-right: 6px;
    padding-left: 6px;
    font-size: 10px;
  }
}

/* v208: Matchday title spacing matches the Home tab rhythm. */
#root .phone .matchday-title {
  margin: 22px 18px 14px;
}

/* v210: wider equal-width Home quick cards with matchday-focused content. */
#root .phone .feature-rail {
  gap: 10px;
}

#root .phone .feature-card,
#root .phone .feature-card--venue {
  flex: 0 0 60%;
  min-height: 144px;
}

#root .phone .feature-card--lineup::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0 22%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.1) 72%);
}

#root .phone .feature-card--lineup .feature-image {
  object-position: center 54%;
  filter: grayscale(0.2) saturate(0.92) contrast(1.08) brightness(0.82);
}

@media (max-width: 374px) {
  #root .phone .feature-card,
  #root .phone .feature-card--venue {
    flex-basis: 62%;
    min-height: 138px;
  }
}

/* v211: Matchday action labels stay on one line. */
#root .phone .matchday-actions > :is(div, button) span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* v220: Home hero label matches result heading, weather becomes full-width banner. */
#root .phone .home-matchday-hero {
  width: auto;
  max-width: none;
  min-height: 0;
  margin-right: 18px;
  margin-left: 18px;
  aspect-ratio: 7 / 8;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(246, 246, 241, 0.78)),
    linear-gradient(90deg, rgba(16, 17, 16, 0.04) 0 16%, transparent 16% 39%, rgba(16, 17, 16, 0.026) 39% 50%, transparent 50% 100%);
}

#root .phone .home-matchday-hero .news-hero-head {
  color: #101110;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 780;
  line-height: 1;
  margin-bottom: auto;
  text-transform: uppercase;
}

#root .phone .home-matchday-hero .news-hero-head span {
  color: inherit;
  font: inherit;
}

#root .phone .home-matchday-hero .home-hero-stadium {
  opacity: 0.78;
  filter: grayscale(0.18) saturate(1.02) contrast(1.03) brightness(1.03);
  mix-blend-mode: multiply;
}

#root .phone .home-matchday-hero .home-hero-liebenau {
  opacity: 0.7;
  filter: grayscale(0.24) saturate(0.96) contrast(1.03) brightness(1.04);
}

#root .phone .home-matchday-hero .home-hero-away {
  opacity: 0.84;
  filter: grayscale(0.12) saturate(1.12) contrast(1.03) brightness(1);
}

#root .phone .home-matchday-hero::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04) 44%, rgba(246, 246, 241, 0.54)),
    linear-gradient(90deg, rgba(16, 17, 16, 0.05) 0 7px, transparent 7px 100%),
    linear-gradient(90deg, rgba(16, 17, 16, 0.03) 0 16%, transparent 16% 45%, rgba(16, 17, 16, 0.02) 45% 52%, transparent 52%);
}

#root .phone .home-matchday-hero h3 {
  max-width: 100%;
  margin-top: 0;
  font-size: 33px;
  line-height: 0.96;
}

#root .phone .home-matchday-hero p {
  max-width: 280px;
  font-size: 15px;
  line-height: 1.34;
}

#root .phone .home-matchday-hero .hero-cta {
  min-height: 48px;
}

#root .phone .home-hero-weather {
  position: absolute;
  z-index: 3;
  top: 68px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: auto;
  max-width: none;
  min-height: 52px;
  margin: 0;
  padding: 9px 16px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.48);
  color: #101110;
  box-shadow: 0 12px 28px rgba(16, 17, 16, 0.09);
  backdrop-filter: blur(12px);
}

#root .phone .home-hero-weather > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(16, 17, 16, 0.08);
}

#root .phone .home-hero-weather > span svg {
  width: 19px;
  height: 19px;
}

#root .phone .home-hero-weather em {
  display: block;
  color: rgba(16, 17, 16, 0.58);
  font-size: 9.5px;
  font-style: normal;
  font-weight: 720;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .home-hero-weather strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 2px;
  color: #101110;
  font-family: var(--font-copy);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.05;
}

#root .phone .home-hero-weather strong b {
  font-size: 18px;
  font-weight: 780;
  line-height: 1;
}

#root .phone .home-hero-weather strong span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .home-hero-weather small {
  display: block;
  margin-top: 2px;
  color: rgba(16, 17, 16, 0.66);
  font-family: var(--font-copy);
  font-size: 9.5px;
  font-weight: 520;
  line-height: 1.16;
}

#root .phone .home-results-card {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 16px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 10px 22px rgba(16, 17, 16, 0.07);
}

#root .phone .home-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#root .phone .home-results-head span {
  color: #101110;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .home-results-head small {
  color: #737b70;
  font-family: var(--font-copy);
  font-size: 10.5px;
  font-weight: 680;
  line-height: 1;
}

#root .phone .home-result-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

#root .phone .home-result-chip {
  min-width: 0;
  display: grid;
  align-content: space-between;
  gap: 7px;
  min-height: 76px;
  padding: 8px 7px;
  border-radius: 13px;
  background: #f5f6f2;
  box-shadow: inset 0 0 0 1px rgba(16, 17, 16, 0.055);
}

#root .phone .home-result-chip > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

#root .phone .home-result-chip time {
  color: #737b70;
  font-family: var(--font-copy);
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1;
}

#root .phone .home-result-chip strong {
  color: #101110;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 720;
  line-height: 0.9;
}

#root .phone .home-result-chip small {
  min-width: 0;
  overflow: hidden;
  color: #687066;
  font-family: var(--font-copy);
  font-size: 9.5px;
  font-weight: 650;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .home-result-chip em {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  justify-self: end;
  border-radius: 999px;
  background: #e9ebe5;
  color: #101110;
  font-family: var(--font-display);
  font-size: 12px;
  font-style: normal;
  font-weight: 720;
  line-height: 1;
}

#root .phone .home-result-chip.win em {
  color: #ffffff;
  background: #101110;
}

#root .phone .home-result-chip.draw em {
  background: #dfe4d7;
}

#root .phone .home-result-chip.loss em {
  color: #ffffff;
  background: #737b70;
}

/* v219: captain marker for Jon Gorenc Stankovic across lineup, picks and squad. */
#root .phone .player-name-with-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 100%;
  min-width: 0;
  vertical-align: middle;
}

#root .phone .player-name-with-badge > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

#root .phone .captain-badge {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #101110;
  background: #f7f4ee;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 780;
  line-height: 1;
  box-shadow:
    inset 0 0 0 1px rgba(16, 17, 16, 0.12),
    0 3px 7px rgba(16, 17, 16, 0.18);
}

#root .phone .kit-card .captain-badge {
  width: 13px;
  height: 13px;
  font-size: 9px;
}

#root .phone :is(.squad-row, .player-choice) .player-name-with-badge {
  width: 100%;
  justify-content: flex-start;
}

#root .phone :is(.squad-row, .player-choice) .player-name-with-badge > span {
  white-space: nowrap;
}

#root .phone :is(.squad-row, .lineup-choice:not(.selected)) .captain-badge {
  color: #ffffff;
  background: #101110;
}

#root .phone .lineup-choice.selected .captain-badge {
  color: #101110;
  background: #f7f4ef;
}

#root .phone .home-result-empty {
  padding: 8px 2px;
  color: #687066;
  font-size: 12px;
  font-weight: 560;
  line-height: 1.25;
}

#root .phone .home-matchday-hero .asset-credit {
  top: auto;
  bottom: 86px;
  opacity: 0.64;
}

#root .phone .home-matchday-context {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 14px 30px rgba(16, 17, 16, 0.08);
}

#root .phone .home-opponent-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

#root .phone .home-opponent-row em,
#root .phone .home-duels > em {
  display: block;
  color: #737b70;
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.05;
  text-transform: uppercase;
}

#root .phone .home-opponent-row strong {
  display: block;
  margin-top: 3px;
  color: #101110;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 0.98;
}

#root .phone .home-opponent-row small {
  display: block;
  margin-top: 5px;
  color: #687066;
  font-family: var(--font-copy);
  font-size: 12px;
  font-weight: 520;
  line-height: 1.22;
}

#root .phone .home-form-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 14px;
  background: #f4f5f1;
}

#root .phone .home-form-strip > span {
  color: #687066;
  font-size: 11px;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .home-form-strip > div {
  display: flex;
  gap: 6px;
}

#root .phone .home-form-strip b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #101110;
  background: #ffffff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 720;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(16, 17, 16, 0.08);
}

#root .phone .home-form-strip b.win {
  color: #ffffff;
  background: #101110;
}

#root .phone .home-form-strip b.draw {
  background: #dfe4d7;
}

#root .phone .home-form-strip b.loss {
  color: #ffffff;
  background: #737b70;
}

#root .phone .home-opponent-mark .club-badge {
  width: 40px;
  height: 45px;
  filter: drop-shadow(0 7px 14px rgba(16, 17, 16, 0.12));
}

#root .phone .home-form-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

#root .phone .home-form-stats span {
  min-height: 58px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 13px;
  background: #f4f5f1;
  text-align: center;
}

#root .phone .home-form-stats b {
  color: #101110;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 720;
  line-height: 0.95;
}

#root .phone .home-form-stats small {
  margin-top: 5px;
  color: #737b70;
  font-size: 11px;
  font-weight: 680;
  line-height: 1;
}

#root .phone .home-duels {
  display: grid;
  gap: 8px;
}

#root .phone .home-duels-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#root .phone .home-duels-head em {
  color: #737b70;
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.05;
  text-transform: uppercase;
}

#root .phone .home-duels-head :is(a, button) {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(16, 17, 16, 0.09);
  border-radius: 999px;
  color: #101110;
  background: #f4f5f1;
  font-family: var(--font-copy);
  font-size: 10.5px;
  font-weight: 720;
  text-decoration: none;
}

#root .phone .home-duel-row {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  background: #f7f7f4;
  box-shadow: inset 0 0 0 1px rgba(16, 17, 16, 0.06);
}

#root .phone .home-duel-row.win {
  box-shadow:
    inset 3px 0 0 #101110,
    inset 0 0 0 1px rgba(16, 17, 16, 0.06);
}

#root .phone .home-duel-row.draw {
  box-shadow:
    inset 3px 0 0 #a9b09f,
    inset 0 0 0 1px rgba(16, 17, 16, 0.06);
}

#root .phone .home-duel-row.loss {
  box-shadow:
    inset 3px 0 0 #d7ddd1,
    inset 0 0 0 1px rgba(16, 17, 16, 0.06);
}

#root .phone .home-duel-match {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

#root .phone .home-duel-team {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

#root .phone .home-duel-team:last-child {
  justify-content: flex-end;
  text-align: right;
}

#root .phone .home-duel-team .club-badge {
  width: 22px;
  height: 25px;
  flex: 0 0 auto;
}

#root .phone .home-duel-team b {
  min-width: 0;
  overflow: hidden;
  color: #101110;
  font-size: 12.5px;
  font-weight: 780;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .home-duel-score {
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #101110;
  background: #ffffff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 720;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(16, 17, 16, 0.08);
}

#root .phone .home-duel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

#root .phone .home-duel-meta span {
  color: #737b70;
  font-size: 11px;
  font-weight: 700;
}

#root .phone .home-duel-meta em {
  flex: 0 0 auto;
  color: #687066;
  font-size: 10px;
  font-style: normal;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .home-duel-empty {
  padding: 10px;
  border-radius: 12px;
  background: #f4f5f1;
  color: #687066;
  font-family: var(--font-copy);
  font-size: 12px;
  font-weight: 520;
  line-height: 1.3;
}

#root .phone.theme-black .home-matchday-context {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101110;
  color: #f7f7f4;
}

#root .phone.theme-black :is(.home-context-row strong, .home-opponent-row strong, .home-form-stats b, .home-duel-row strong, .home-duel-team b) {
  color: #f7f7f4;
}

#root .phone.theme-black :is(.home-context-row em, .home-opponent-row em, .home-duels > em, .home-duels-head em, .home-context-row small, .home-opponent-row small, .home-form-stats small, .home-duel-meta span, .home-duel-meta em, .home-duel-empty, .home-form-strip > span) {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black :is(.home-context-icon, .home-form-stats span, .home-duel-empty, .home-form-strip, .home-duel-row, .home-duels-head button, .home-duels-head a) {
  background: rgba(255, 255, 255, 0.08);
}

#root .phone.theme-black .home-duels-head :is(a, button) {
  color: #f7f7f4;
}

#root .phone.theme-black :is(.home-context-divider, .home-duel-row) {
  border-color: rgba(255, 255, 255, 0.1);
}

#root .phone.theme-black :is(.home-form-strip b, .home-duel-score) {
  color: #101110;
  background: #f7f7f4;
}

#root .phone.theme-black .home-form-strip b.win {
  color: #101110;
  background: #f7f7f4;
}

#root .phone.theme-black .home-form-strip b.draw {
  color: #f7f7f4;
  background: rgba(255, 255, 255, 0.18);
}

#root .phone.theme-black .home-form-strip b.loss {
  color: rgba(247, 247, 244, 0.78);
  background: rgba(255, 255, 255, 0.1);
}

#root .phone.theme-black .home-results-card,
#root .phone.theme-black .matchday-formcheck {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101110;
  color: #f7f7f4;
}

#root .phone.theme-black :is(.home-results-head small, .home-result-chip strong, .matchday-formcheck-head strong, .matchday-form-stats strong) {
  color: #f7f7f4;
}

#root .phone.theme-black :is(.home-results-head span, .home-result-chip time, .home-result-chip small, .home-result-empty, .matchday-formcheck-head em, .matchday-formcheck-head small, .matchday-form-stats small) {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black :is(.home-result-chip em, .matchday-form-stats span, .matchday-form-markers b) {
  color: #101110;
  background: #f7f7f4;
}

#root .phone.theme-black .home-result-chip {
  background: rgba(255, 255, 255, 0.08);
}

#root .phone.theme-black .matchday-form-markers b.loss,
#root .phone.theme-black .home-result-chip.loss em {
  color: rgba(247, 247, 244, 0.82);
  background: rgba(255, 255, 255, 0.12);
}

#root .phone .matchday-formcheck {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 12px 26px rgba(16, 17, 16, 0.07);
}

#root .phone .matchday-formcheck-head {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

#root .phone .matchday-formcheck-badge .club-badge {
  width: 40px;
  height: 45px;
  filter: drop-shadow(0 7px 14px rgba(16, 17, 16, 0.12));
}

#root .phone .matchday-formcheck-head span:last-child {
  min-width: 0;
}

#root .phone .matchday-formcheck-head em {
  display: block;
  color: #737b70;
  font-size: 10.5px;
  font-style: normal;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .matchday-formcheck-head strong {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: #101110;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 720;
  line-height: 0.95;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .matchday-formcheck-head small {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: #687066;
  font-size: 11.5px;
  font-weight: 560;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .matchday-formcheck-body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

#root .phone .matchday-form-markers {
  display: flex;
  gap: 5px;
}

#root .phone .matchday-form-markers b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f0f1ed;
  color: #101110;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 720;
  line-height: 1;
}

#root .phone .matchday-form-markers b.win {
  color: #ffffff;
  background: #101110;
}

#root .phone .matchday-form-markers b.draw {
  background: #dfe4d7;
}

#root .phone .matchday-form-markers b.loss {
  color: #ffffff;
  background: #737b70;
}

#root .phone .matchday-form-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

#root .phone .matchday-form-stats span {
  min-height: 42px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 12px;
  background: #f4f5f1;
  text-align: center;
}

#root .phone .matchday-form-stats strong {
  color: #101110;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 720;
  line-height: 0.95;
}

#root .phone .matchday-form-stats small {
  margin-top: 3px;
  color: #737b70;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1;
}

/* v221: Home and Shorts rails get swipe position dots. */
#root .phone .scroll-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 12px;
  margin: 8px 18px 0;
}

#root .phone .scroll-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(16, 17, 16, 0.22);
  opacity: 0.78;
  transition:
    width 0.18s ease,
    background 0.18s ease,
    opacity 0.18s ease;
}

#root .phone .scroll-dots span.is-active {
  width: 16px;
  background: #101110;
  opacity: 1;
}

#root .phone .youtube-shorts-section .scroll-dots {
  margin-right: 0;
  margin-left: 0;
}

#root .phone.theme-black .scroll-dots span {
  background: rgba(255, 255, 255, 0.28);
}

#root .phone.theme-black .scroll-dots span.is-active {
  background: #ffffff;
}

/* v222: Header subtitle sits tighter; result markers are centered and color-coded. */
#root .phone .brand {
  --brand-wordmark-width: 116px;
  display: grid;
  justify-items: center;
}

#root .phone .brand h1.brand-title {
  width: var(--brand-wordmark-width);
  text-align: center;
}

#root .phone .brand h1.brand-title::after {
  content: none;
  display: none;
}

#root .phone .brand h1.brand-title + span {
  width: var(--brand-wordmark-width);
  margin-top: 1px;
  font-size: 10.6px;
  font-weight: 520;
  line-height: 1;
  letter-spacing: 0.105em;
  text-align: center;
  white-space: nowrap;
}

#root .phone .home-result-chip em {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 1px;
  color: #101110;
  font-family: var(--font-copy);
  font-size: 10.5px;
  font-weight: 850;
  line-height: 1;
}

#root .phone .home-result-chip.win em {
  color: #ffffff;
  background: #147a4b;
}

#root .phone .home-result-chip.draw em {
  color: #101110;
  background: #d9d2a5;
}

#root .phone .home-result-chip.loss em {
  color: #ffffff;
  background: #b55252;
}

#root .phone.theme-black .home-result-chip.win em {
  color: #ffffff;
  background: #1f9a64;
}

#root .phone.theme-black .home-result-chip.draw em {
  color: #101110;
  background: #ddd4a1;
}

#root .phone.theme-black .home-result-chip.loss em {
  color: #ffffff;
  background: #c45a5a;
}

/* v223: Matchday formcheck compares Sturm and opponent without growing the card. */
#root .phone .matchday-formcheck {
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
}

#root .phone .matchday-formcheck-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

#root .phone .matchday-formcheck-title > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f0f1ed;
  color: #101110;
}

#root .phone .matchday-formcheck-title em {
  color: #101110;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: normal;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .matchday-form-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

#root .phone .matchday-form-team {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 9px;
  border-radius: 14px;
  background: #f5f6f2;
  box-shadow: inset 0 0 0 1px rgba(16, 17, 16, 0.055);
}

#root .phone .matchday-form-team-head {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

#root .phone .matchday-form-team-badge .club-badge {
  width: 24px;
  height: 28px;
  filter: drop-shadow(0 5px 10px rgba(16, 17, 16, 0.12));
}

#root .phone .matchday-form-team strong {
  min-width: 0;
  overflow: hidden;
  color: #101110;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 720;
  line-height: 0.95;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .matchday-form-team .matchday-form-markers {
  gap: 3px;
}

#root .phone .matchday-form-team .matchday-form-markers b {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 1px;
  font-family: var(--font-copy);
  font-size: 9.5px;
  font-weight: 850;
  line-height: 1;
}

#root .phone .matchday-form-team small {
  min-width: 0;
  overflow: hidden;
  color: #687066;
  font-size: 9.5px;
  font-weight: 680;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .matchday-form-markers b.win {
  color: #ffffff;
  background: #147a4b;
}

#root .phone .matchday-form-markers b.draw {
  color: #101110;
  background: #d9d2a5;
}

#root .phone .matchday-form-markers b.loss {
  color: #ffffff;
  background: #b55252;
}

#root .phone.theme-black .matchday-form-team {
  background: rgba(255, 255, 255, 0.08);
}

#root .phone.theme-black .matchday-formcheck-title em,
#root .phone.theme-black .matchday-form-team strong {
  color: #f7f7f4;
}

#root .phone.theme-black .matchday-formcheck-title > span {
  color: #101110;
  background: #f7f7f4;
}

#root .phone.theme-black .matchday-form-team small {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black .matchday-form-markers b.win {
  color: #ffffff;
  background: #1f9a64;
}

#root .phone.theme-black .matchday-form-markers b.draw {
  color: #101110;
  background: #ddd4a1;
}

#root .phone.theme-black .matchday-form-markers b.loss {
  color: #ffffff;
  background: #c45a5a;
}

/* v224: clean half-pitch markings for lineup views. */
#root .phone .pitch {
  background:
    radial-gradient(circle at 50% -44px, transparent 0 92px, rgba(255, 255, 255, 0.32) 93px 95px, transparent 96px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.23) 0 2px, transparent 2px 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.24) 0 2px, transparent 2px 100%),
    linear-gradient(180deg, #17633d 0%, #0d4d2f 52%, #07351f 100%);
}

#root .phone .pitch::before,
#root .phone .pitch::after {
  top: auto;
  bottom: 0;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-bottom: 0;
  pointer-events: none;
}

#root .phone .pitch::before {
  left: 22%;
  right: 22%;
  height: 58px;
  border-radius: 9px 9px 0 0;
}

#root .phone .pitch::after {
  left: 38%;
  right: 38%;
  height: 24px;
  border-radius: 7px 7px 0 0;
}

@media (max-width: 374px) {
  #root .phone .home-matchday-hero {
    padding: 16px;
  }

  #root .phone .home-matchday-hero h3 {
    font-size: 31px;
  }

  #root .phone .home-result-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #root .phone .home-result-chip {
    min-height: 66px;
  }

  #root .phone .matchday-formcheck-body {
    grid-template-columns: 1fr;
  }

  #root .phone .home-context-row strong,
  #root .phone .home-opponent-row strong,
  #root .phone .matchday-formcheck-head strong {
    font-size: 22px;
  }
}

/* v226: related press links should feel like app controls, not raw browser links. */
#root .phone .sheet-related-sources {
  gap: 8px;
  margin: 12px 0 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

#root .phone .sheet-related-sources span {
  color: rgba(16, 17, 16, 0.58);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: none;
}

#root .phone .sheet-related-sources div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

#root .phone .sheet-related-source-chip,
#root .phone .sheet-related-source-chip:visited {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px 0 8px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 999px;
  background: #f4f4f0;
  color: #101110;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 760;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

#root .phone .sheet-related-source-chip b {
  color: inherit;
  font: inherit;
}

#root .phone .sheet-related-source-mark {
  width: 17px !important;
  height: 17px !important;
  flex: 0 0 17px;
  display: grid !important;
  place-items: center !important;
  color: #101110;
}

#root .phone .sheet-related-source-mark .brand-logo,
#root .phone .sheet-related-source-mark svg {
  width: auto !important;
  max-width: 16px !important;
  height: 11px !important;
  max-height: 11px !important;
  padding: 0 !important;
  object-fit: contain !important;
  transform: none !important;
  filter: grayscale(1) contrast(2.35) !important;
}

#root .phone .sheet-related-source-mark .brand-letter,
#root .phone .sheet-related-source-mark .brand-letter-kicker {
  height: 11px !important;
  display: inline-grid !important;
  place-items: center !important;
  font-size: 11px !important;
  line-height: 1 !important;
  transform: none !important;
}

#root .phone .sheet-related-source-mark.brand-mark-sturmnetz .brand-sturmnetz-lockup {
  width: 11px !important;
  height: 11px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 6px !important;
  line-height: 0.84 !important;
  transform: none !important;
}

#root .phone .sheet-related-source-mark.brand-mark-laola1 .brand-logo {
  height: 9px !important;
  max-width: 16px !important;
}

#root .phone .sheet-related-source-mark.brand-mark-kleine .brand-logo,
#root .phone .sheet-related-source-mark.brand-mark-krone .brand-logo {
  height: 11px !important;
  max-width: 13px !important;
}

#root .phone.theme-black .sheet-related-sources span {
  color: rgba(255, 255, 255, 0.62);
}

#root .phone.theme-black .sheet-related-source-chip,
#root .phone.theme-black .sheet-related-source-chip:visited {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.09);
  color: #f8f5ef;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* v226: keep press source marks optically aligned across all logo assets. */
#root .phone .press-source-marks {
  align-items: center;
  gap: 5px;
}

#root .phone .press-source-mark {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px;
  display: inline-grid !important;
  place-items: center !important;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: #101110;
  box-shadow:
    0 4px 10px rgba(12, 14, 12, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

#root .phone .press-source-mark .brand-logo,
#root .phone .press-source-mark svg {
  width: auto !important;
  max-width: 14px !important;
  height: 10px !important;
  max-height: 10px !important;
  padding: 0 !important;
  object-fit: contain !important;
  transform: none !important;
  filter: grayscale(1) contrast(2.35) !important;
}

#root .phone .press-source-mark .brand-letter,
#root .phone .press-source-mark .brand-letter-kicker {
  height: 10px !important;
  display: inline-grid !important;
  place-items: center !important;
  font-size: 10px !important;
  line-height: 1 !important;
  transform: none !important;
}

#root .phone .press-source-mark.brand-mark-sturmnetz .brand-sturmnetz-lockup {
  width: 10px !important;
  height: 10px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 5.5px !important;
  line-height: 0.84 !important;
  transform: none !important;
}

#root .phone .press-source-mark.brand-mark-laola1 .brand-logo {
  height: 8px !important;
  max-width: 14px !important;
}

#root .phone .press-source-mark.brand-mark-kleine .brand-logo,
#root .phone .press-source-mark.brand-mark-krone .brand-logo {
  height: 10px !important;
  max-width: 12px !important;
}

#root .phone.theme-black .press-source-mark {
  border-color: rgba(255, 255, 255, 0.12);
  background: #f8f5ef;
  color: #101110;
}

#root .phone .news-source-chip-mark {
  width: 28px !important;
  height: 22px !important;
  display: grid !important;
  place-items: center !important;
  color: #101110;
}

#root .phone .news-source-chip-mark .brand-logo,
#root .phone .news-source-chip-mark svg {
  width: auto !important;
  max-width: 25px !important;
  height: 16px !important;
  max-height: 16px !important;
  padding: 0 !important;
  object-fit: contain !important;
  transform: none !important;
  filter: grayscale(1) contrast(2.35) !important;
}

#root .phone .news-source-chip-mark .brand-letter,
#root .phone .news-source-chip-mark .brand-letter-kicker {
  height: 16px !important;
  display: inline-grid !important;
  place-items: center !important;
  font-size: 16px !important;
  line-height: 1 !important;
  transform: none !important;
}

#root .phone .news-source-chip-mark.brand-mark-sturmnetz .brand-sturmnetz-lockup {
  width: 16px !important;
  height: 16px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 8px !important;
  line-height: 0.84 !important;
  transform: none !important;
}

#root .phone .news-source-chip-mark.brand-mark-laola1 .brand-logo {
  height: 14px !important;
  max-width: 24px !important;
}

#root .phone .news-source-chip-mark.brand-mark-kleine .brand-logo,
#root .phone .news-source-chip-mark.brand-mark-krone .brand-logo {
  height: 16px !important;
  max-width: 19px !important;
}

/* v227: calmer Nordkurve entry and equal fan hub pills. */
#root .phone .nordkurve-hero {
  min-height: 226px;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(12, 14, 12, 0.16);
}

#root .phone .nordkurve-hero-image {
  filter: grayscale(1) contrast(1.04) brightness(0.84);
  transform: scale(1.01);
}

#root .phone .nordkurve-hero-copy {
  gap: 7px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(16, 17, 16, 0.04) 0%, rgba(16, 17, 16, 0.36) 45%, rgba(16, 17, 16, 0.9) 100%),
    linear-gradient(90deg, rgba(16, 17, 16, 0.64) 0%, rgba(16, 17, 16, 0.1) 76%);
}

#root .phone .nordkurve-hero h3 {
  max-width: 280px;
}

#root .phone .nordkurve-hero p {
  max-width: 328px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 520;
  line-height: 1.34;
}

#root .phone .nordkurve-hero-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 270px);
  gap: 8px;
  margin-top: 8px;
}

#root .phone .nordkurve-hero-tags span {
  width: 100%;
  min-height: 30px;
  padding: 0 8px;
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.9);
  color: #101110;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 780;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

#root .phone .nordkurve-card {
  grid-template-columns: 108px minmax(0, 1fr);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(16, 17, 16, 0.07);
}

#root .phone .nordkurve-card-media {
  min-height: 142px;
}

#root .phone .nordkurve-card-image {
  min-height: 142px;
}

#root .phone .nordkurve-card-media::after {
  background: linear-gradient(180deg, rgba(16, 17, 16, 0.02), rgba(16, 17, 16, 0.18));
}

#root .phone .nordkurve-card-mark {
  display: none !important;
}

#root .phone .nordkurve-card-body {
  padding: 14px 13px 12px;
}

#root .phone .nordkurve-link-grid {
  gap: 7px;
}

#root .phone .nordkurve-link-grid a {
  width: 100%;
  min-height: 32px;
}

@media (max-width: 374px) {
  #root .phone .nordkurve-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  #root .phone .nordkurve-hero-tags {
    width: 100%;
  }
}

/* v228: menu cleanup, notification settings and tighter header subtitle. */
#root .phone .brand {
  --brand-wordmark-width: 116px;
}

#root .phone .brand h1.brand-title + .brand-subtitle {
  width: var(--brand-wordmark-width);
  min-width: var(--brand-wordmark-width);
  margin-top: -1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(247, 247, 244, 0.72);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 660;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

#root .phone .brand-subtitle i {
  display: block;
  font-style: normal;
}

#root .phone .notifications-back {
  margin: 0 18px 8px;
}

#root .phone .notifications-hero {
  margin-top: 10px;
  padding: 20px;
  border: 0;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%),
    #101110;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(12, 14, 12, 0.18);
}

#root .phone .notifications-hero > span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .notifications-hero h3 {
  margin: 20px 0 7px;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 780;
  line-height: 1.02;
}

#root .phone .notifications-hero p {
  max-width: 315px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 510;
  line-height: 1.34;
}

#root .phone .notifications-hero .notifications-engine-note {
  max-width: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

#root .phone .notifications-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

#root .phone .notifications-pill {
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  justify-self: start;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 12px;
  font-weight: 760;
}

#root .phone .notifications-enable {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: #ffffff;
  color: #101110;
  font-size: 12px;
  font-weight: 800;
}

#root .phone .notifications-enable:disabled {
  opacity: 0.74;
}

#root .phone .notifications-hero.blocked .notifications-enable {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

#root .phone .notifications-list {
  display: grid;
  gap: 10px;
  margin: 12px 18px 0;
}

#root .phone .notifications-list .notification-row {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 13px 14px;
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  cursor: pointer;
}

#root .phone .notification-row-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f1f1ec;
  color: #101110;
}

#root .phone .notification-row-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

#root .phone .notification-row-copy strong {
  color: #101110;
  font-size: 15px;
  font-weight: 780;
  line-height: 1.1;
}

#root .phone .notification-row-copy small {
  color: rgba(16, 17, 16, 0.56);
  font-size: 11.6px;
  font-weight: 520;
  line-height: 1.22;
}

#root .phone .notification-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#root .phone .notification-toggle {
  position: relative;
  width: 46px;
  height: 28px;
  justify-self: end;
  border-radius: 999px;
  background: #d9dbd4;
  box-shadow: inset 0 0 0 1px rgba(16, 17, 16, 0.08);
  transition: background 0.18s ease;
}

#root .phone .notification-toggle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(12, 14, 12, 0.2);
  transition: transform 0.18s ease;
}

#root .phone .notification-row input:checked + .notification-toggle {
  background: #101110;
}

#root .phone .notification-row input:checked + .notification-toggle::after {
  transform: translateX(18px);
}

#root .phone .notification-row.is-focused {
  box-shadow:
    inset 0 0 0 1px rgba(16, 17, 16, 0.24),
    0 14px 28px rgba(16, 17, 16, 0.1);
}

#root .phone.theme-black .notifications-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #080908;
}

#root .phone.theme-black .notifications-list .notification-row {
  border-color: rgba(255, 255, 255, 0.1);
  background: #101110;
  color: #f7f7f4;
}

#root .phone.theme-black .notification-row-icon {
  background: rgba(255, 255, 255, 0.09);
  color: #f7f7f4;
}

#root .phone.theme-black .notification-row-copy strong {
  color: #f7f7f4;
}

#root .phone.theme-black .notification-row-copy small {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black .notification-toggle {
  background: rgba(255, 255, 255, 0.18);
}

#root .phone.theme-black .notification-row input:checked + .notification-toggle {
  background: #f7f7f4;
}

#root .phone.theme-black .notification-row input:checked + .notification-toggle::after {
  background: #101110;
}

#root .phone.theme-black .notification-row.is-focused {
  box-shadow:
    inset 0 0 0 1px rgba(247, 247, 244, 0.28),
    0 14px 28px rgba(0, 0, 0, 0.32);
}

/* v229: calmer venue map/actions and shield-only header mark. */
#root .phone .topbar::before {
  content: "S";
  width: 34px;
  height: 37px;
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: start;
  clip-path: polygon(50% 2%, 88% 15%, 84% 68%, 50% 96%, 16% 68%, 12% 15%);
  border-radius: 0;
  background:
    linear-gradient(90deg, #050605 0 50%, #161816 50% 100%) center / calc(100% - 4px) calc(100% - 4px) no-repeat,
    #f8f7f1;
  color: #f8f7f1;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 0.86;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  filter:
    drop-shadow(0 0 0.85px rgba(248, 247, 241, 0.98))
    drop-shadow(0 0 2px rgba(0, 0, 0, 0.22));
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.18);
}

#root .phone.theme-black .topbar::before {
  background:
    linear-gradient(90deg, #050605 0 50%, #161816 50% 100%) center / calc(100% - 4px) calc(100% - 4px) no-repeat,
    #f8f7f1;
  box-shadow:
    0 5px 12px rgba(0, 0, 0, 0.36);
}

#root .phone .venue-map-live {
  min-height: 214px;
}

#root .phone .venue-map-open {
  min-height: 29px;
  padding: 0 10px;
  font-size: 10.5px;
}

#root .phone .venue-info-card a {
  width: min(144px, 100%);
  min-height: 27px;
  justify-self: start;
  padding: 0 9px;
  font-size: 10.5px;
}

/* v230: quieter credits and left-aligned matchday weather blocks. */
#root .phone .venue-hero .asset-credit {
  right: 11px;
  bottom: 8px;
  max-width: 150px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 6.8px;
  font-weight: 520;
  line-height: 1.08;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.36);
}

#root .phone .home-matchday-hero .asset-credit {
  right: 13px;
  bottom: 84px;
  max-width: 150px;
  color: rgba(16, 17, 16, 0.3);
  font-size: 6.8px;
  font-weight: 520;
  line-height: 1.08;
  opacity: 0.48;
}

#root .phone .venue-hero-weather {
  grid-template-columns: 42px minmax(0, 1fr);
  justify-content: start;
  justify-items: start;
  width: min(100%, 328px);
  margin: auto 0 17px;
  gap: 10px;
  text-align: left;
}

#root .phone .venue-hero-weather > span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#root .phone .venue-hero-weather > span svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke-width: 2;
}

#root .phone .home-hero-weather {
  align-items: center;
  text-align: left;
}

#root .phone .home-hero-weather > span {
  display: flex;
  align-items: center;
  justify-content: center;
}

#root .phone .home-hero-weather > span svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke-width: 2;
}

/* v233: icon-led home section titles and a narrower header subtitle. */
#root .phone .brand h1.brand-title + .brand-subtitle {
  width: 100px;
  min-width: 100px;
  justify-content: center;
  gap: 1.45px;
  font-size: 8.8px;
}

#root .phone .home-matchday-hero .home-hero-kicker,
#root .phone .home-results-title,
#root .phone .social-media-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

#root .phone .home-hero-kicker-icon,
#root .phone .home-results-icon,
#root .phone .social-media-head-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  color: #101110;
}

#root .phone .home-hero-kicker-icon svg,
#root .phone .home-results-icon svg,
#root .phone .social-media-head-icon svg {
  width: 23px;
  height: 23px;
  display: block;
  stroke-width: 1.9;
}

#root .phone .home-matchday-hero .home-hero-kicker {
  color: #101110;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-transform: none;
}

#root .phone .home-matchday-hero .home-hero-kicker > span:last-child,
#root .phone .home-results-title strong,
#root .phone .social-media-head h3 {
  margin: 0;
  color: #101110;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

#root .phone.theme-black .home-results-title strong,
#root .phone.theme-black .home-results-icon,
#root .phone.theme-black .social-media-head h3,
#root .phone.theme-black .social-media-head-icon {
  color: #f7f7f4;
}

/* v241: the news sheet is rendered above, not inside, the phone shell. */
#root .sheet-backdrop {
  overflow: hidden;
  padding: 12px;
}

#root .preview-sheet {
  width: min(calc(100vw - 24px), 430px);
  max-height: calc(100svh - 24px);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ffffff;
  color: #101110;
}

#root .preview-sheet > * {
  flex: 0 0 auto;
}

#root .sheet-summary {
  display: block;
  margin: 10px 0 6px;
}

#root .sheet-summary p {
  margin: 0;
  padding-left: 0;
  color: #29313a;
  font-size: 14px;
  font-weight: 430;
  line-height: 1.42;
}

#root .sheet-summary p::before {
  content: none;
}

#root .sheet-related-sources {
  display: grid;
  gap: 8px;
  margin: 12px 0 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

#root .sheet-related-sources > span {
  color: rgba(16, 17, 16, 0.58);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

#root .sheet-related-sources div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

#root .sheet-related-source-chip,
#root .sheet-related-source-chip:visited {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px 0 8px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 999px;
  background: #f4f4f0;
  color: #101110;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

#root .sheet-related-source-chip b {
  color: inherit;
  font: inherit;
}

#root .sheet-related-source-mark {
  width: 17px !important;
  height: 17px !important;
  flex: 0 0 17px;
  display: grid !important;
  place-items: center !important;
  overflow: hidden;
  color: #101110;
}

#root .sheet-related-source-mark .brand-logo,
#root .sheet-related-source-mark svg {
  width: auto !important;
  max-width: 16px !important;
  height: 11px !important;
  max-height: 11px !important;
  display: block !important;
  padding: 0 !important;
  object-fit: contain !important;
  transform: none !important;
  filter: grayscale(1) contrast(2.35) !important;
}

#root .sheet-related-source-mark .brand-letter,
#root .sheet-related-source-mark .brand-letter-kicker {
  height: 11px !important;
  display: inline-grid !important;
  place-items: center !important;
  font-size: 11px !important;
  line-height: 1 !important;
  transform: none !important;
}

#root .sheet-related-source-mark.brand-mark-sturmnetz .brand-sturmnetz-lockup {
  width: 11px !important;
  height: 11px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 6px !important;
  line-height: 0.84 !important;
  transform: none !important;
}

#root .sheet-related-source-mark.brand-mark-laola1 .brand-logo {
  height: 9px !important;
  max-width: 16px !important;
}

#root .sheet-related-source-mark.brand-mark-kleine .brand-logo,
#root .sheet-related-source-mark.brand-mark-krone .brand-logo {
  height: 11px !important;
  max-width: 13px !important;
}

/* v242: source marks share one optical system; SturmNetz reads as horizontal SN. */
#root .phone .press-head-meta {
  gap: 8px;
}

#root .phone .press-source-marks {
  align-items: center;
  gap: 6px;
}

#root .phone .brand-mark.press-source-mark,
#root .phone .section-head .press-source-mark,
#root .phone .press-head-meta .press-source-mark {
  width: 22px !important;
  min-width: 22px !important;
  height: 22px !important;
  flex: 0 0 22px !important;
  padding: 0 !important;
  border: 1px solid rgba(16, 17, 16, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #101110;
  box-shadow:
    0 5px 12px rgba(12, 14, 12, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

#root .phone .press-source-mark .brand-logo,
#root .phone .press-source-mark svg {
  width: auto !important;
  max-width: 16px !important;
  height: 12px !important;
  max-height: 12px !important;
  padding: 0 !important;
  object-fit: contain !important;
  transform: none !important;
  filter: grayscale(1) contrast(2.35) !important;
}

#root .phone .press-source-mark .brand-letter,
#root .phone .press-source-mark .brand-letter-kicker,
#root .phone .press-source-mark .brand-sturmnetz-lockup {
  width: auto !important;
  max-width: 17px !important;
  height: 12px !important;
  max-height: 12px !important;
  display: inline-grid !important;
  place-items: center !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  transform: none !important;
}

#root .phone .press-source-mark.brand-mark-sturmnetz .brand-sturmnetz-lockup {
  display: inline-grid !important;
  width: 17px !important;
  height: 12px !important;
  flex-direction: row !important;
  font-family: var(--font-display);
  font-size: 10px !important;
  line-height: 1 !important;
  transform: scaleX(0.9) !important;
}

#root .phone .press-source-mark.brand-mark-laola1 .brand-logo {
  width: 16px !important;
  height: 10px !important;
  max-width: 16px !important;
}

#root .phone .press-source-mark.brand-mark-kleine .brand-logo {
  width: 8px !important;
  height: 12px !important;
  max-width: 8px !important;
}

#root .phone .press-source-mark.brand-mark-krone .brand-logo {
  width: 13px !important;
  height: 12px !important;
  max-width: 13px !important;
}

#root .phone .press-source-mark.brand-mark-kicker .brand-letter-kicker {
  font-size: 12px !important;
}

#root .phone .news-source-chip-mark.brand-mark-sturmnetz .brand-sturmnetz-lockup,
#root .sheet-related-source-mark.brand-mark-sturmnetz .brand-sturmnetz-lockup {
  width: auto !important;
  min-width: 16px !important;
  height: 12px !important;
  display: inline-grid !important;
  place-items: center !important;
  flex-direction: row !important;
  font-size: 10px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  transform: scaleX(0.9) !important;
}

#root .phone .news-source-chip-mark.brand-mark-sturmnetz .brand-sturmnetz-lockup {
  min-width: 22px !important;
  height: 16px !important;
  font-size: 13px !important;
}

#root .sheet-related-source-mark.brand-mark-sturmnetz {
  width: 19px !important;
  flex-basis: 19px !important;
}

/* v244: text-only related source pills and a clearer header crest outline. */
#root .sheet-related-sources div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

#root .sheet-related-source-chip,
#root .sheet-related-source-chip:visited {
  width: 100%;
  min-width: 0;
  gap: 0;
  padding: 0 8px;
  white-space: nowrap;
}

#root .phone .topbar::before,
#root .phone.theme-black .topbar::before {
  width: 36px;
  height: 39px;
  background:
    linear-gradient(90deg, #050605 0 50%, #161816 50% 100%) center / calc(100% - 7px) calc(100% - 7px) no-repeat,
    #f8f7f1;
  filter:
    drop-shadow(0 0 1.4px rgba(248, 247, 241, 0.98))
    drop-shadow(0 0 3px rgba(248, 247, 241, 0.18))
    drop-shadow(0 5px 9px rgba(0, 0, 0, 0.34));
  box-shadow: none;
}

#root .phone .section-head h3.section-title-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

#root .phone .section-title-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  color: #101110;
}

#root .phone .section-title-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  stroke-width: 2;
}

#root .phone.theme-black .section-title-icon {
  color: #f8f5ef;
}

/* v245: news pagination, calmer notification mark and final Nordkurve card containment. */
#root .phone .news-more-button {
  width: calc(100% - 28px);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 14px 6px;
  border: 0;
  border-radius: 999px;
  background: #101110;
  color: #f8f7f1;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  cursor: pointer;
}

#root .phone .news-more-button small {
  color: rgba(248, 247, 241, 0.68);
  font-family: var(--font-copy);
  font-size: 11px;
  font-weight: 620;
}

#root .phone.theme-black .news-more-button {
  background: #f8f7f1;
  color: #101110;
}

#root .phone.theme-black .news-more-button small {
  color: rgba(16, 17, 16, 0.58);
}

#root .phone .notify-dot,
#root .phone.theme-black .notify-dot {
  background: #f8f7f1;
  box-shadow:
    0 0 0 2px #101110,
    inset 0 0 0 1px rgba(16, 17, 16, 0.24);
}

#root .phone .home-hero-weather {
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 10px 24px rgba(16, 17, 16, 0.07);
  backdrop-filter: blur(10px);
}

#root .phone .home-hero-weather > span {
  background: rgba(255, 255, 255, 0.72);
}

#root .phone .nordkurve-grid {
  width: auto;
  max-width: calc(100% - 36px);
  overflow: hidden;
  box-sizing: border-box;
}

#root .phone .nordkurve-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 118px) minmax(0, 1fr);
  box-sizing: border-box;
}

#root .phone .nordkurve-card-media,
#root .phone .nordkurve-card-body,
#root .phone .nordkurve-card-copy,
#root .phone .nordkurve-link-grid {
  min-width: 0;
}

#root .phone .nordkurve-card-body {
  overflow: hidden;
}

#root .phone .nordkurve-link-grid {
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#root .phone .nordkurve-link-grid a {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0 6px;
  overflow: hidden;
  box-sizing: border-box;
}

#root .phone .nordkurve-link-grid a span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 374px) {
  #root .phone .nordkurve-card {
    grid-template-columns: minmax(0, 104px) minmax(0, 1fr);
  }

  #root .phone .nordkurve-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* v246: matchday briefing opens quick decisions in bottom sheets. */
#root .matchday-sheet {
  max-height: calc(100svh - 92px);
  padding: 10px 16px 16px;
}

#root .matchday-sheet-video {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  margin: 4px 0 13px;
  border-radius: 14px;
  background: #101110;
}

#root .matchday-sheet-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

#root .sheet-video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  margin: 4px 0 18px;
  border-radius: 14px;
  background: #101110;
}

#root .sheet-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

#root .matchday-sheet .sheet-meta {
  margin-top: 2px;
}

#root .matchday-sheet h2 {
  margin-top: 10px;
}

#root .matchday-sheet p {
  margin-bottom: 14px;
}

#root .matchday-sheet .primary-link,
#root .matchday-sheet .ghost-link {
  appearance: none;
  border: 0;
  font-family: var(--font-ui);
  cursor: pointer;
}

#root .matchday-sheet .ghost-link {
  border: 1px solid rgba(16, 17, 16, 0.12);
}

#root .matchday-sheet-point-list {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

#root .matchday-sheet-point-list article {
  min-width: 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: #f4f4f0;
}

#root .matchday-sheet-point-list article > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
}

#root .matchday-sheet-point-list strong,
#root .matchday-sheet-player strong,
#root .matchday-sheet-departure strong {
  display: block;
  color: #101110;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 780;
  line-height: 1.12;
}

#root .matchday-sheet-point-list small,
#root .matchday-sheet-player small,
#root .matchday-sheet-departure small {
  display: block;
  margin-top: 3px;
  color: rgba(16, 17, 16, 0.62);
  font-family: var(--font-copy);
  font-size: 11.3px;
  font-weight: 520;
  line-height: 1.24;
}

#root .matchday-sheet-player-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

#root .matchday-sheet-player {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 14px;
  background: #f4f4f0;
}

#root .matchday-sheet-player .mini-shirt {
  width: 33px;
  height: 31px;
  font-size: 14px;
}

#root .matchday-sheet-player strong > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .matchday-sheet-tip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px 58px minmax(0, 1fr);
  align-items: end;
  gap: 8px;
  margin: 14px 0 10px;
  padding: 12px;
  border-radius: 16px;
  background: #f4f4f0;
}

#root .matchday-sheet-tip-team {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

#root .matchday-sheet-tip-team .table-team-mark {
  width: 36px;
  height: 36px;
}

#root .matchday-sheet-tip-team strong {
  max-width: 100%;
  overflow: hidden;
  color: #101110;
  font-family: var(--font-ui);
  font-size: 11.4px;
  font-weight: 780;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .matchday-sheet-tip label {
  display: grid;
  gap: 5px;
}

#root .matchday-sheet-tip label span,
#root .matchday-sheet-note {
  color: rgba(16, 17, 16, 0.58);
  font-family: var(--font-copy);
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
}

#root .matchday-sheet-tip input {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(16, 17, 16, 0.1);
  border-radius: 14px;
  background: #ffffff;
  color: #101110;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 780;
  line-height: 1;
  text-align: center;
}

#root .matchday-sheet-note {
  display: block;
  margin: 0 0 14px;
}

#root .matchday-sheet-choice-list {
  display: grid;
  gap: 8px;
  max-height: min(52svh, 420px);
  overflow: auto;
  margin: 14px 0;
  padding-right: 2px;
}

#root .matchday-sheet .potm-choice {
  min-height: 58px;
  width: 100%;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  padding: 8px 11px 8px 8px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 15px;
  background: #ffffff;
  color: #101110;
  font-family: var(--font-ui);
  text-align: left;
  box-shadow: none;
  cursor: pointer;
}

#root .matchday-sheet .potm-choice .potm-kit-wrap {
  width: 46px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f0efeb;
}

#root .matchday-sheet .potm-choice .mini-shirt {
  width: 36px;
  height: 34px;
  font-size: 15px;
}

#root .matchday-sheet .potm-choice > span:last-of-type {
  min-width: 0;
}

#root .matchday-sheet .potm-choice strong {
  display: block;
  overflow: hidden;
  color: #101110;
  font-size: 13.4px;
  font-weight: 760;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .matchday-sheet .potm-choice small {
  display: block;
  margin-top: 3px;
  color: rgba(16, 17, 16, 0.6);
  font-size: 11px;
  font-weight: 560;
  line-height: 1.1;
}

#root .matchday-sheet .potm-choice.selected {
  border-color: rgba(16, 17, 16, 0.42);
  background: #f8f7f3;
}

#root .matchday-sheet .potm-choice:disabled {
  opacity: 0.68;
  cursor: default;
}

#root .matchday-sheet-empty {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin: 14px 0;
  padding: 18px 14px;
  border-radius: 16px;
  background: #f4f4f0;
  text-align: center;
}

#root .matchday-sheet-empty strong {
  color: #101110;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 780;
}

#root .matchday-sheet-empty small {
  color: rgba(16, 17, 16, 0.62);
  font-size: 12px;
  line-height: 1.25;
}

#root .matchday-sheet-departure-list {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

#root .matchday-sheet-departure {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border-radius: 14px;
  background: #f4f4f0;
}

#root .matchday-sheet-departure time {
  color: #101110;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 780;
  line-height: 1;
  text-align: right;
}

#root .matchday-sheet-refresh {
  width: 100%;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: #f4f4f0;
  color: #101110;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
}

@media (max-width: 374px) {
  #root .matchday-sheet-player-list {
    grid-template-columns: 1fr;
  }

  #root .matchday-sheet-tip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* v251: wide edge-to-edge header mark matching the app icon direction. */
#root .phone .topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 0 64px;
  overflow: hidden;
}

#root .phone .topbar::before,
#root .phone.theme-black .topbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 134px;
  height: 100%;
  clip-path: none;
  border-radius: 0;
  background: transparent url("/icons/header-icon.png?v=276") left center / auto 100% no-repeat;
  filter: none;
  box-shadow: none;
  pointer-events: none;
  z-index: 0;
}

#root .phone .brand {
  --brand-wordmark-width: 124px;
}

#root .phone .brand {
  grid-column: auto;
  flex: 0 1 auto;
  position: relative;
  z-index: 1;
  margin-top: 1px;
}

#root .phone .brand h1.brand-title {
  font-size: 31px;
}

#root .phone .bell-button {
  position: absolute;
  top: 50%;
  right: 31px;
  z-index: 1;
  transform: translateY(-50%);
}

#root .phone .bell-button svg {
  width: 28px;
  height: 28px;
}

/* v271: consistent back row on More and Matchday detail screens. */
#root .phone .more-back-link,
#root .phone .matchday-back-link {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 10px 18px 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9b9b94;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1;
}

#root .phone .more-back-link svg,
#root .phone .matchday-back-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

#root .phone .more-back-link span,
#root .phone .matchday-back-link span {
  font-size: inherit;
  line-height: inherit;
}

#root .phone.theme-black .more-back-link,
#root .phone.theme-black .matchday-back-link {
  color: #9b9b94;
}

/* v257: matchday becomes a current-and-past match hub. */
#root .phone .matchday-progress-dots {
  height: auto;
  flex-wrap: nowrap;
  margin-top: 9px;
  overflow: hidden;
}

#root .phone .matchday-progress-dots button {
  width: 18px;
  height: 14px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
}

#root .phone .matchday-progress-dots button span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(16, 17, 16, 0.22);
  transition:
    width 0.18s ease,
    background 0.18s ease,
    opacity 0.18s ease;
}

#root .phone .matchday-progress-dots button.is-active span {
  width: 16px;
  background: #101110;
}

#root .phone .matchday-potm-card {
  min-height: 82px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 45px;
  align-items: center;
  gap: 11px;
  margin: 12px 18px 0;
  padding: 14px;
  border: 0;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%),
    #101110;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(16, 17, 16, 0.16);
}

#root .phone .matchday-potm-icon,
#root .phone .matchday-potm-shirt {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

#root .phone .matchday-potm-icon {
  background: #ffffff;
  color: #101110;
}

#root .phone .matchday-potm-copy {
  min-width: 0;
}

#root .phone .matchday-potm-copy em {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .matchday-potm-copy strong {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  overflow: hidden;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 760;
  line-height: 0.96;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .matchday-potm-copy small {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 560;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .matchday-potm-shirt {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

#root .phone .matchday-potm-shirt .mini-shirt {
  width: 38px;
  height: 34px;
  color: #ffffff;
  font-size: 14.5px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.26));
}

#root .phone .matchday-stats-card,
#root .phone .matchday-highlight-card,
#root .phone .matchday-history-card {
  margin: 12px 18px 0;
  padding: 14px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #101110;
  box-shadow: 0 16px 30px rgba(16, 17, 16, 0.08);
}

#root .phone .matchday-stats-card .matchday-section-title,
#root .phone .matchday-highlight-card .matchday-section-title,
#root .phone .matchday-history-card .matchday-section-title {
  margin-bottom: 11px;
}

#root .phone .matchday-highlight-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
    #101110;
}

#root .phone .matchday-highlight-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#root .phone .matchday-highlight-caption {
  display: grid;
  gap: 3px;
  padding-top: 10px;
}

#root .phone .matchday-highlight-caption span,
#root .phone .matchday-highlight-caption small {
  overflow: hidden;
  color: #737b70;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

#root .phone .matchday-highlight-caption strong {
  overflow: hidden;
  color: #101110;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 790;
  line-height: 0.98;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .matchday-stat-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

#root .phone .matchday-stat-grid {
  display: grid;
  gap: 7px;
}

#root .phone .matchday-facts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#root .phone .matchday-facts-grid .wide {
  grid-column: 1 / -1;
}

#root .phone .matchday-stat-summary span,
#root .phone .matchday-stat-grid span {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 14px;
  background: #f4f5f1;
}

#root .phone .matchday-stat-summary em,
#root .phone .matchday-stat-grid em {
  color: #737b70;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

#root .phone .matchday-stat-summary strong,
#root .phone .matchday-stat-grid strong {
  overflow: hidden;
  color: #101110;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 760;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .matchday-facts-grid strong {
  white-space: normal;
  text-overflow: clip;
}

#root .phone .matchday-stat-summary small,
#root .phone .matchday-stat-grid small {
  overflow: hidden;
  color: #687066;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .matchday-history-card {
  padding: 14px 0 4px;
}

#root .phone .matchday-history-card .matchday-section-title {
  grid-template-columns: 28px minmax(0, 1fr) 24px;
  margin: 0 14px 10px;
}

#root .phone .matchday-history-card summary {
  cursor: pointer;
  list-style: none;
}

#root .phone .matchday-history-card summary::-webkit-details-marker {
  display: none;
}

#root .phone .matchday-history-toggle {
  margin-left: auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #101110;
  transition: transform 0.18s ease;
}

#root .phone .matchday-history-toggle svg {
  width: 19px;
  height: 19px;
}

#root .phone .matchday-history-card[open] .matchday-history-toggle {
  transform: rotate(180deg);
}

#root .phone .matchday-history-list {
  display: grid;
}

#root .phone .matchday-history-row {
  min-width: 0;
  min-height: 66px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 0;
  border-top: 1px solid rgba(16, 17, 16, 0.08);
  background: transparent;
  color: #101110;
  padding: 10px 14px;
  text-align: left;
}

#root .phone .matchday-history-row.is-active {
  background: #f4f5f1;
}

#root .phone .matchday-history-opponent .team-mark {
  width: 32px;
  height: 35px;
}

#root .phone .matchday-history-opponent .team-mark .badge-code {
  font-size: 15px;
}

#root .phone .matchday-history-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

#root .phone .matchday-history-copy strong {
  overflow: hidden;
  color: #101110;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 760;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .matchday-history-copy small,
#root .phone .matchday-history-copy em {
  overflow: hidden;
  color: #687066;
  font-size: 10.5px;
  font-style: normal;
  font-weight: 640;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .matchday-history-copy em {
  color: #101110;
  font-weight: 760;
}

#root .phone .matchday-history-score {
  min-width: 42px;
  color: #101110;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 780;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

#root .phone .matchday-briefing .row:disabled {
  cursor: default;
  opacity: 0.44;
}

#root .phone.theme-black .matchday-progress-dots button span {
  background: rgba(255, 255, 255, 0.28);
}

#root .phone.theme-black .matchday-progress-dots button.is-active span {
  background: #ffffff;
}

#root .phone.theme-black .matchday-stats-card,
#root .phone.theme-black .matchday-highlight-card,
#root .phone.theme-black .matchday-history-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101110;
  color: #f7f7f4;
  box-shadow: var(--shadow-panel);
}

#root .phone.theme-black .matchday-stat-summary span,
#root .phone.theme-black .matchday-stat-grid span,
#root .phone.theme-black .matchday-history-row.is-active {
  background: rgba(255, 255, 255, 0.08);
}

#root .phone.theme-black .matchday-history-row {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: #f7f7f4;
}

#root .phone.theme-black .matchday-stat-summary strong,
#root .phone.theme-black .matchday-stat-grid strong,
#root .phone.theme-black .matchday-highlight-caption strong,
#root .phone.theme-black .matchday-history-copy strong,
#root .phone.theme-black .matchday-history-copy em,
#root .phone.theme-black .matchday-history-score {
  color: #f7f7f4;
}

#root .phone.theme-black .matchday-stat-summary em,
#root .phone.theme-black .matchday-stat-grid em,
#root .phone.theme-black .matchday-stat-summary small,
#root .phone.theme-black .matchday-stat-grid small,
#root .phone.theme-black .matchday-highlight-caption span,
#root .phone.theme-black .matchday-highlight-caption small,
#root .phone.theme-black .matchday-history-copy small {
  color: rgba(247, 247, 244, 0.62);
}

#root .phone.theme-black .matchday-history-toggle {
  color: #f7f7f4;
}

/* v263: center fan-scene cards and make hero pills one-third width. */
#root .phone .nordkurve-grid {
  width: calc(100% - 36px);
  max-width: 492px;
  margin: 14px auto 0;
  padding: 0;
  overflow: visible;
  justify-items: center;
  box-sizing: border-box;
}

#root .phone .nordkurve-card {
  width: 100%;
  max-width: 100%;
  justify-self: center;
}

#root .phone .nordkurve-hero-tags {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

#root .phone .nordkurve-hero-tags span {
  flex: 0 0 calc((100% - 16px) / 3);
  max-width: calc((100% - 16px) / 3);
}

/* v274: premium weather treatment for the home matchday hero. */
#root .phone .home-matchday-hero::before {
  background:
    linear-gradient(180deg, rgba(6, 7, 6, 0.56), rgba(6, 7, 6, 0.24) 35%, rgba(246, 246, 241, 0.5) 72%, rgba(246, 246, 241, 0.68)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 7px, transparent 7px 100%),
    linear-gradient(90deg, rgba(16, 17, 16, 0.04) 0 16%, transparent 16% 45%, rgba(16, 17, 16, 0.02) 45% 52%, transparent 52%);
}

#root .phone .home-matchday-hero .home-hero-kicker {
  position: relative;
  z-index: 4;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.52);
}

#root .phone .home-matchday-hero .home-hero-kicker > span:last-child,
#root .phone .home-matchday-hero .home-hero-kicker-icon,
#root .phone .home-matchday-hero .home-hero-kicker-icon svg {
  color: #ffffff;
}

#root .phone .home-matchday-hero .home-hero-kicker-icon {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

#root .phone .home-hero-weather {
  top: 84px;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  min-height: 66px;
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.72), rgba(7, 8, 7, 0.5) 58%, rgba(7, 8, 7, 0.24));
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

#root .phone .home-hero-weather div {
  display: grid;
  gap: 2px;
  min-width: 0;
  font-family: var(--font-copy);
  letter-spacing: 0;
}

#root .phone .home-hero-weather > span {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.9);
  color: #101110;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 8px 18px rgba(0, 0, 0, 0.2);
}

#root .phone .home-hero-weather > span svg {
  width: 21px;
  height: 21px;
}

#root .phone .home-hero-weather em {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-copy);
  font-size: 10px;
  font-weight: 680;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

#root .phone .home-hero-weather strong {
  color: #ffffff;
  font-family: var(--font-copy);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.08;
  text-shadow: none;
}

#root .phone .home-hero-weather strong b {
  font-size: 21px;
  font-weight: 760;
  letter-spacing: 0;
}

#root .phone .home-hero-weather strong span {
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0;
}

#root .phone .home-hero-weather strong span,
#root .phone .home-hero-weather small {
  color: rgba(255, 255, 255, 0.78);
}

#root .phone .home-hero-weather small {
  font-family: var(--font-copy);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
}

/* v275: matchday travel and standings stay in compact bottom sheets. */
#root .matchday-sheet-venue {
  max-height: calc(100svh - 76px);
}

#root .matchday-sheet-venue-hero {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 9px;
  overflow: hidden;
  margin-top: 10px;
  padding: 14px;
  border-radius: 17px;
  background: #101110;
  color: #ffffff;
}

#root .matchday-sheet-venue-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.1) 34%, rgba(0, 0, 0, 0.7)),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 15px);
  pointer-events: none;
}

#root .matchday-sheet-venue-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.08) brightness(0.72);
}

#root .matchday-sheet-venue-hero > :not(.matchday-sheet-venue-image) {
  position: relative;
  z-index: 1;
}

#root .matchday-sheet-venue-hero .asset-credit {
  position: absolute;
  right: 12px;
  top: 44px;
  z-index: 2;
  max-width: 210px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.54);
  font-size: 8px;
  font-weight: 500;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .matchday-sheet-venue-top {
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: auto;
}

#root .matchday-sheet-venue-top span,
#root .matchday-sheet-venue-top time {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #101110;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 790;
  line-height: 1;
}

#root .matchday-sheet-venue-hero .venue-hero-weather {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  margin: 18px 0 2px;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#root .matchday-sheet-venue-hero .venue-hero-weather > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #101110;
}

#root .matchday-sheet-venue-hero .venue-hero-weather em,
#root .matchday-sheet-venue-hero .venue-hero-weather strong,
#root .matchday-sheet-venue-hero .venue-hero-weather small {
  display: block;
  font-family: var(--font-copy);
  letter-spacing: 0;
}

#root .matchday-sheet-venue-hero .venue-hero-weather em {
  color: rgba(255, 255, 255, 0.66);
  font-size: 9.5px;
  font-style: normal;
  font-weight: 650;
}

#root .matchday-sheet-venue-hero .venue-hero-weather strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.1;
}

#root .matchday-sheet-venue-hero .venue-hero-weather small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 500;
}

#root .matchday-sheet-venue-hero h2 {
  margin: 0;
  color: #ffffff;
  font-size: 31px;
  line-height: 0.96;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

#root .matchday-sheet-venue-hero p {
  max-width: 290px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12.5px;
  font-weight: 540;
  line-height: 1.22;
}

#root .matchday-sheet-venue-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 12px 0;
}

#root .matchday-sheet-venue-action {
  min-width: 0;
  min-height: 64px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 5px;
  padding: 8px 5px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 14px;
  background: #f4f4f0;
  color: #101110;
  text-align: center;
  text-decoration: none;
}

#root button.matchday-sheet-venue-action {
  appearance: none;
  font: inherit;
  cursor: pointer;
}

#root .matchday-sheet-venue-action span {
  min-width: 0;
}

#root .matchday-sheet-venue-action strong,
#root .matchday-sheet-venue-action small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .matchday-sheet-venue-action strong {
  color: #101110;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 790;
  line-height: 1;
}

#root .matchday-sheet-venue-action small {
  margin-top: 2px;
  color: rgba(16, 17, 16, 0.56);
  font-size: 9.5px;
  font-weight: 580;
  line-height: 1;
}

#root .matchday-sheet-map-panel {
  display: grid;
  gap: 10px;
  margin: 12px 0;
  padding: 12px;
  border-radius: 16px;
  background: #f4f4f0;
}

#root .matchday-sheet-map-panel .section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

#root .matchday-sheet-map-panel .section-head h3 {
  margin: 0;
  color: #101110;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 780;
  line-height: 1;
}

#root .matchday-sheet-map-panel .section-head span {
  max-width: 210px;
  overflow: hidden;
  color: rgba(16, 17, 16, 0.58);
  font-size: 10.5px;
  font-weight: 620;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .matchday-sheet-map-panel .venue-map-preview {
  position: relative;
  min-height: 186px;
  display: block;
  overflow: hidden;
  border-radius: 13px;
  color: #101110;
  background: linear-gradient(135deg, #e8ebe5, #f8f8f5);
  text-decoration: none;
}

#root .matchday-sheet-map-panel .venue-map-road,
#root .matchday-sheet-map-panel .venue-map-block {
  position: absolute;
  display: block;
}

#root .matchday-sheet-map-panel .venue-map-road {
  height: 12px;
  border-radius: 999px;
  background: rgba(16, 17, 16, 0.11);
}

#root .matchday-sheet-map-panel .venue-map-road-a {
  top: 28px;
  left: -20px;
  width: 124%;
  transform: rotate(-12deg);
}

#root .matchday-sheet-map-panel .venue-map-road-b {
  top: 80px;
  left: 15px;
  width: 94%;
  transform: rotate(17deg);
}

#root .matchday-sheet-map-panel .venue-map-road-c {
  top: 8px;
  left: 58%;
  width: 13px;
  height: 120%;
  transform: rotate(2deg);
}

#root .matchday-sheet-map-panel .venue-map-block {
  border-radius: 14px;
  background: rgba(16, 17, 16, 0.07);
}

#root .matchday-sheet-map-panel .venue-map-block-a {
  top: 16px;
  left: 16px;
  width: 76px;
  height: 42px;
}

#root .matchday-sheet-map-panel .venue-map-block-b {
  right: 14px;
  bottom: 14px;
  width: 96px;
  height: 48px;
}

#root .matchday-sheet-map-panel .venue-map-preview strong,
#root .matchday-sheet-map-panel .venue-map-preview small {
  position: relative;
  z-index: 1;
  display: block;
  padding-left: 12px;
  padding-right: 68px;
}

#root .matchday-sheet-map-panel .venue-map-preview strong {
  padding-top: 116px;
  color: #101110;
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

#root .matchday-sheet-map-panel .venue-map-preview small {
  margin-top: 5px;
  color: rgba(16, 17, 16, 0.62);
  font-size: 10.5px;
  font-weight: 560;
  line-height: 1.2;
}

#root .matchday-sheet-map-panel .venue-map-tile-grid {
  position: absolute;
  top: var(--tile-top);
  left: var(--tile-left);
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(7, var(--tile-size));
  grid-auto-rows: var(--tile-size);
  width: calc(var(--tile-size) * 7);
  height: calc(var(--tile-size) * 7);
  pointer-events: none;
  transform: translate(var(--map-pan-x), var(--map-pan-y));
}

#root .matchday-sheet-map-panel .venue-map-tile {
  width: var(--tile-size);
  height: var(--tile-size);
  display: block;
  filter: grayscale(0.78) contrast(1.05) brightness(1.04);
}

#root .matchday-sheet-map-panel .venue-map-live::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(248, 248, 245, 0), rgba(248, 248, 245, 0.78));
  pointer-events: none;
}

#root .matchday-sheet-map-panel .venue-map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(16, 17, 16, 0.22);
  transform: translate(-50%, -78%);
}

#root .matchday-sheet-map-panel .venue-map-open {
  position: absolute;
  right: 9px;
  bottom: 9px;
  z-index: 2;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 770;
  text-decoration: none;
}

#root .matchday-sheet-map-panel .venue-map-attribution {
  position: absolute;
  bottom: 8px;
  left: 9px;
  z-index: 2;
  color: rgba(16, 17, 16, 0.56);
  font-size: 8px;
  font-weight: 650;
  text-decoration: none;
}

#root .matchday-sheet-map-panel .venue-map-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

#root .matchday-sheet-map-panel .venue-map-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  background: #ffffff;
  color: #101110;
  font-size: 11px;
  font-weight: 760;
  text-decoration: none;
}

#root .matchday-sheet-map-panel .brand-mark {
  width: 14px;
  height: 14px;
}

#root .matchday-sheet-venue-info-grid {
  display: grid;
  gap: 8px;
  margin: 12px 0 4px;
}

#root .matchday-sheet-venue-info {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: #f4f4f0;
}

#root .matchday-sheet-venue-info > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: #101110;
}

#root .matchday-sheet-venue-info em,
#root .matchday-sheet-venue-info strong,
#root .matchday-sheet-venue-info small {
  display: block;
}

#root .matchday-sheet-venue-info em {
  color: rgba(16, 17, 16, 0.54);
  font-size: 9.5px;
  font-style: normal;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

#root .matchday-sheet-venue-info strong {
  margin-top: 4px;
  color: #101110;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 790;
  line-height: 1.08;
}

#root .matchday-sheet-venue-info small {
  margin-top: 4px;
  color: rgba(16, 17, 16, 0.64);
  font-size: 11.4px;
  font-weight: 500;
  line-height: 1.25;
}

#root .matchday-sheet-venue-info a,
#root .matchday-sheet-venue-info button {
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 0 10px;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
  border: 0;
  font-size: 10.5px;
  font-family: var(--font-ui);
  font-weight: 760;
  cursor: pointer;
  text-decoration: none;
}

#root .matchday-sheet-inline-back {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 1px 0 10px;
  padding: 0 10px;
  border: 1px solid rgba(16, 17, 16, 0.1);
  border-radius: 999px;
  background: #f4f4f0;
  color: rgba(16, 17, 16, 0.72);
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 760;
  cursor: pointer;
}

#root .matchday-sheet-route-frame {
  width: 100%;
  height: min(62svh, 560px);
  min-height: 430px;
  overflow: hidden;
  margin: 6px 0 10px;
  border: 1px solid rgba(16, 17, 16, 0.1);
  border-radius: 16px;
  background: #f4f4f0;
}

#root .matchday-sheet-route-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #ffffff;
}

#root .matchday-sheet-standings-table {
  display: grid;
  overflow: hidden;
  margin: 14px 0 10px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 15px;
  background: #ffffff;
}

#root .matchday-sheet-standing-row {
  min-height: 38px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px 38px 34px;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border-top: 1px solid rgba(16, 17, 16, 0.06);
  color: #101110;
}

#root .matchday-sheet-standing-row:first-child {
  border-top: 0;
}

#root .matchday-sheet-standing-row.table-head {
  min-height: 32px;
  background: #f4f4f0;
  color: rgba(16, 17, 16, 0.58);
  font-family: var(--font-copy);
  font-size: 9.5px;
  font-weight: 760;
  text-transform: uppercase;
}

#root .matchday-sheet-standing-row.sturm-row {
  background: #101110;
  color: #ffffff;
}

#root .matchday-sheet-standing-row .rank,
#root .matchday-sheet-standing-row > span:not(.club-cell) {
  color: inherit;
  font-size: 11px;
  font-weight: 720;
  line-height: 1;
  text-align: center;
}

#root .matchday-sheet-standing-row .club-cell {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

#root .matchday-sheet-standing-row .club-cell .table-team-mark {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

#root .matchday-sheet-standing-row .club-cell strong {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 770;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .matchday-sheet-standing-row .points {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 790;
}

#root .matchday-sheet-source {
  display: block;
  margin: 8px 0 2px;
  color: rgba(16, 17, 16, 0.58);
  font-size: 10.5px;
  font-weight: 650;
  text-align: center;
  text-decoration: none;
}

/* v276: News page sections use the same title language as the Home feed. */
#root .phone .news-page-list .news-page-section-head {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  justify-content: start;
  gap: 14px;
  margin-bottom: 0;
  padding: 0 16px 12px;
}

#root .phone .news-page-list .news-page-section-head .feed-main-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  align-self: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #101110;
  box-shadow: none;
  transform: none;
}

#root .phone .news-page-list .news-page-section-head .feed-main-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.9;
}

#root .phone .news-page-list .news-page-section-head h3 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #101110;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

#root .phone .news-page-list .news-page-section-head .news-page-section-meta {
  color: rgba(16, 17, 16, 0.48);
  font-size: 10.5px;
  font-weight: 720;
  line-height: 1;
  text-align: right;
}

#root .phone.theme-black .news-page-list .news-page-section-head .feed-main-icon,
#root .phone.theme-black .news-page-list .news-page-section-head h3 {
  color: #f7f7f4;
}

#root .phone.theme-black .news-page-list .news-page-section-head .news-page-section-meta {
  color: rgba(247, 247, 244, 0.58);
}

/* v277: automatic news lists and calmer full-width home weather. */
#root .phone .home-hero-weather {
  top: 84px;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 13px;
  min-height: 72px;
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.7), rgba(7, 8, 7, 0.52) 58%, rgba(7, 8, 7, 0.34));
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(15px) saturate(1.08);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
}

#root .phone .home-hero-weather > span {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.9);
  color: #101110;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 9px 20px rgba(0, 0, 0, 0.22);
}

#root .phone .home-hero-weather > span svg {
  width: 23px;
  height: 23px;
}

#root .phone .home-hero-weather .home-weather-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
  font-family: var(--font-copy);
  letter-spacing: 0;
}

#root .phone .home-hero-weather em {
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-copy);
  font-size: 10px;
  font-weight: 680;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

#root .phone .home-hero-weather strong {
  color: #ffffff;
  font-family: var(--font-copy);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.08;
  text-shadow: none;
}

#root .phone .home-hero-weather strong b {
  font-size: 23px;
  font-weight: 760;
  letter-spacing: 0;
}

#root .phone .home-hero-weather strong span {
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0;
}

#root .phone .home-hero-weather strong span,
#root .phone .home-hero-weather small {
  color: rgba(255, 255, 255, 0.78);
}

#root .phone .home-hero-weather small {
  font-family: var(--font-copy);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
}

#root .phone .thumb-glyph.brand-source-badge .brand-mark-sturmnetz .brand-sturmnetz-lockup {
  width: 19px !important;
  font-size: 13.6px !important;
  transform: scaleX(0.93) !important;
}

#root .phone .thumb-glyph.brand-source-badge .brand-mark-krone .brand-logo {
  transform: scale(1.22) !important;
}

/* v278: Home weather icon without badge circle. */
#root .phone .home-hero-weather {
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 13px;
}

#root .phone .home-hero-weather > span {
  width: 50px;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

#root .phone .home-hero-weather > span svg {
  width: 46px;
  height: 46px;
  stroke-width: 2.05;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.32));
}

/* v282: tighter home duel chips. */
#root .phone .home-result-chip {
  padding: 8px 8px;
}

#root .phone .home-result-chip > span {
  gap: 8px;
}

#root .phone .home-result-chip time {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

#root .phone .home-result-chip em {
  flex: 0 0 20px;
}

#root .phone .home-result-chip small {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

/* v283: Season standings as one clean table card. */
#root .phone .games-page .season-standings-card {
  padding: 0 14px 22px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

#root .phone .games-page .season-standings-table {
  display: grid;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 12px 24px rgba(16, 17, 16, 0.12),
    0 2px 5px rgba(16, 17, 16, 0.08);
}

#root .phone .games-page .season-standings-table .standings-row.table-head {
  display: none;
}

#root .phone .games-page .season-standings-table .standings-row {
  min-height: 70px;
  display: grid;
  grid-template-columns: 26px minmax(142px, 1fr) 26px 24px 24px 24px 30px;
  align-items: center;
  column-gap: 5px;
  margin: 0;
  padding: 0 12px;
  border-top: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  color: #101110;
  font-family: var(--font-copy);
}

#root .phone .games-page .season-standings-table .standings-row.table-head + .standings-row {
  border-top: 0;
}

#root .phone .games-page .season-standings-table .standings-row::before,
#root .phone .games-page .season-standings-table .standings-row.sturm-row::before,
#root .phone .games-page .season-standings-table .standings-row.zone-title::before,
#root .phone .games-page .season-standings-table .standings-row.zone-europe::before,
#root .phone .games-page .season-standings-table .standings-row.zone-split::before,
#root .phone .games-page .season-standings-table .standings-row.zone-risk::before {
  display: none;
}

#root .phone .games-page .season-standings-table .standings-row > span:nth-child(7) {
  display: none;
}

#root .phone .games-page .season-standings-table .rank {
  color: #2d312f;
  font-family: var(--font-copy);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

#root .phone .games-page .season-standings-table .club-cell {
  min-width: 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

#root .phone .games-page .season-standings-table .club-cell strong {
  min-width: 0;
  overflow: visible;
  color: #202522;
  font-family: var(--font-copy);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.08;
  text-overflow: clip;
  white-space: normal;
}

#root .phone .games-page .season-standings-table .table-team-mark,
#root .phone .games-page .season-standings-table .table-team-mark.club-badge-small {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  justify-self: center;
}

#root .phone .games-page .season-standings-table .standings-row > span:not(.club-cell):not(.rank) {
  color: #202522;
  font-family: var(--font-copy);
  font-size: 16px;
  font-weight: 440;
  line-height: 1;
  text-align: center;
}

#root .phone .games-page .season-standings-table .standings-row .points,
#root .phone .games-page .season-standings-table .standings-row.sturm-row .points {
  color: #101110;
  font-family: var(--font-copy);
  font-size: 16px;
  font-weight: 520;
}

#root .phone .games-page .season-standings-table .standings-row.sturm-row {
  background: #f4f4f0;
}

#root .phone .games-page .season-standings-card .table-source {
  margin: 10px 2px 0;
  padding: 0;
  color: rgba(16, 17, 16, 0.55);
  font-family: var(--font-copy);
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

@media (max-width: 374px) {
  #root .phone .games-page .season-standings-card {
    padding-right: 10px;
    padding-left: 10px;
  }

  #root .phone .games-page .season-standings-table .standings-row {
    min-height: 66px;
    grid-template-columns: 22px minmax(118px, 1fr) 24px 22px 22px 22px 27px;
    column-gap: 4px;
    padding: 0 8px;
  }

  #root .phone .games-page .season-standings-table .club-cell {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 7px;
  }

  #root .phone .games-page .season-standings-table .club-cell strong {
    font-size: 15.5px;
  }

  #root .phone .games-page .season-standings-table .rank,
  #root .phone .games-page .season-standings-table .standings-row > span:not(.club-cell):not(.rank),
  #root .phone .games-page .season-standings-table .standings-row .points {
    font-size: 14.5px;
  }

  #root .phone .games-page .season-standings-table .table-team-mark,
  #root .phone .games-page .season-standings-table .table-team-mark.club-badge-small {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }
}

/* v284: Calendar, squad and imprint use the cleaner release card language. */
#root .phone .home-sturm-feed .news-featured {
  margin: 0 0 12px;
  border-radius: 12px;
  box-shadow: none;
}

#root .phone .home-sturm-feed .news-featured-image-wrap,
#root .phone .home-sturm-feed .news-featured-image {
  min-height: 134px;
  height: 134px;
}

#root .phone .home-sturm-feed .news-featured-copy {
  padding: 12px 13px 13px;
}

#root .phone .home-sturm-feed .news-featured-copy strong {
  font-size: 20px;
  line-height: 1.02;
}

#root .phone .games-page .season-month-rail {
  gap: 10px;
  margin: 0 14px 12px;
  padding: 0 2px 8px;
}

#root .phone .games-page .season-month-rail button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(16, 17, 16, 0.06);
  color: #5d655b;
  font-family: var(--font-copy);
  font-size: 13px;
  font-weight: 650;
}

#root .phone .games-page .season-month-rail button.active {
  border-color: #101110;
  background: #101110;
  color: #ffffff;
}

#root .phone .games-page .season-month-rail button.active::after {
  content: none;
}

#root .phone .games-page .season-calendar-board,
#root .phone .games-page .season-calendar-card,
#root .phone .games-page .season-squad-overview,
#root .phone .games-page .season-squad-group {
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 12px 24px rgba(16, 17, 16, 0.1),
    0 2px 5px rgba(16, 17, 16, 0.06);
}

#root .phone .games-page .season-calendar-board {
  margin: 0 14px 12px;
  padding: 14px 12px 16px;
}

#root .phone .games-page .season-calendar-board .weekday-row {
  margin-bottom: 10px;
}

#root .phone .games-page .season-calendar-board .weekday-row span {
  color: rgba(16, 17, 16, 0.52);
  font-size: 10.8px;
  font-weight: 720;
}

#root .phone .games-page .season-calendar-board .calendar-grid {
  row-gap: 8px;
}

#root .phone .games-page .season-calendar-board .calendar-day {
  min-height: 42px;
  font-size: 15px;
  font-weight: 560;
}

#root .phone .games-page .season-calendar-board .calendar-day > span:first-child {
  width: 31px;
  height: 31px;
}

#root .phone .games-page .season-calendar-board .calendar-day.has-match .table-team-mark,
#root .phone .games-page .season-calendar-board .calendar-day.has-match .table-team-mark.club-badge-small {
  right: 0;
  top: 0;
  width: 23px;
  height: 23px;
  flex-basis: 23px;
  font-size: 8px;
}

#root .phone .games-page .season-calendar-board .calendar-day.selected.has-match::after {
  bottom: -1px;
  width: 16px;
  height: 3px;
}

#root .phone .games-page .season-calendar-card {
  margin: 0 14px 22px;
  padding: 16px 14px 15px;
  text-align: left;
}

#root .phone .games-page .season-calendar-card > span {
  color: rgba(16, 17, 16, 0.5);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

#root .phone .games-page .season-calendar-card > strong {
  margin-top: 4px;
  color: #101110;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 820;
  line-height: 1;
}

#root .phone .games-page .season-calendar-card .calendar-match {
  grid-template-columns: 1fr 64px 1fr;
  gap: 8px;
  margin-top: 15px;
}

#root .phone .games-page .season-calendar-card .calendar-match > div {
  justify-items: start;
  gap: 7px;
}

#root .phone .games-page .season-calendar-card .calendar-match > div:last-child {
  justify-items: end;
  text-align: right;
}

#root .phone .games-page .season-calendar-card .calendar-match .table-team-mark,
#root .phone .games-page .season-calendar-card .calendar-match .table-team-mark.club-badge-small {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  font-size: 16px;
}

#root .phone .games-page .season-calendar-card .calendar-match b {
  max-width: 118px;
  color: #101110;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 780;
}

#root .phone .games-page .season-calendar-card .calendar-match button {
  min-height: 42px;
  border: 1px solid rgba(16, 17, 16, 0.12);
  border-radius: 8px;
  color: #101110;
  background: #f4f4f0;
}

#root .phone .games-page .season-calendar-card small {
  margin-top: 12px;
  color: rgba(16, 17, 16, 0.58);
  font-size: 12px;
  font-weight: 520;
  text-align: left;
}

#root .phone .games-page .season-calendar-card .calendar-source {
  margin: 12px 0 0;
  color: #101110;
  font-weight: 700;
}

#root .phone .games-page .season-squad-overview {
  align-items: center;
  margin: 0 14px 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(16, 17, 16, 0.08);
}

#root .phone .games-page .season-squad-overview strong {
  font-size: 25px;
}

#root .phone .games-page .season-squad-overview a {
  color: rgba(16, 17, 16, 0.58);
  font-weight: 720;
}

#root .phone .games-page .season-squad-groups {
  display: grid;
  gap: 12px;
  margin: 0 14px 24px;
}

#root .phone .games-page .season-squad-group {
  margin: 0;
  padding: 13px 14px 0;
  overflow: hidden;
}

#root .phone .games-page .season-squad-group header {
  margin: 0 0 10px;
}

#root .phone .games-page .season-squad-group h3 {
  font-size: 22px;
}

#root .phone .games-page .season-squad-group header span {
  min-width: 27px;
  height: 24px;
  font-size: 11px;
}

#root .phone .games-page .season-squad-group .squad-list {
  border-top: 1px solid rgba(16, 17, 16, 0.08);
}

#root .phone .games-page .season-squad-group .squad-row {
  min-height: 59px;
  padding: 0;
}

#root .phone .games-page .season-squad-group .squad-row:last-child {
  border-bottom: 0;
}

#root .phone .imprint-hero {
  align-items: center;
}

#root .phone .mushbomb-logo-black {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #101110;
}

#root .phone .imprint-section {
  border-radius: 12px;
}

#root .phone .imprint-mail-link {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  border-radius: 999px;
  background: #101110;
  color: #ffffff;
  font-size: 14px;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
}

#root .phone .imprint-mail-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.35;
}

#root .phone.theme-black .home-sturm-feed .news-featured,
#root .phone.theme-black .games-page .season-calendar-board,
#root .phone.theme-black .games-page .season-calendar-card,
#root .phone.theme-black .games-page .season-squad-overview,
#root .phone.theme-black .games-page .season-squad-group,
#root .phone.theme-black .imprint-section {
  border-color: rgba(255, 255, 255, 0.12);
  background: #101110;
}

#root .phone.theme-black .games-page .season-month-rail button {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(247, 247, 244, 0.72);
}

#root .phone.theme-black .games-page .season-month-rail button.active,
#root .phone.theme-black .imprint-mail-link {
  background: #f7f7f4;
  color: #101110;
}

#root .phone.theme-black .games-page .season-calendar-card > strong,
#root .phone.theme-black .games-page .season-calendar-card .calendar-match b,
#root .phone.theme-black .games-page .season-squad-group h3,
#root .phone.theme-black .games-page .season-squad-group .squad-row strong,
#root .phone.theme-black .games-page .season-squad-overview strong {
  color: #f7f7f4;
}

#root .phone.theme-black .games-page .season-calendar-card > span,
#root .phone.theme-black .games-page .season-calendar-card small,
#root .phone.theme-black .games-page .season-squad-overview span,
#root .phone.theme-black .games-page .season-squad-overview a {
  color: rgba(247, 247, 244, 0.62);
}

/* v285: keep the original standings typography and table structure, only frame it as a card. */
#root .phone .games-page .season-standings-card {
  margin: 0 14px 22px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

#root .phone .games-page .season-standings-table {
  display: grid;
  overflow: hidden;
  padding: 8px 10px 6px;
  border: 1px solid rgba(16, 17, 16, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 12px 24px rgba(16, 17, 16, 0.1),
    0 2px 5px rgba(16, 17, 16, 0.06);
}

#root .phone .games-page .season-standings-table .standings-row {
  min-height: 56px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 30px 28px 28px 28px 36px 34px;
  align-items: center;
  column-gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(12, 14, 12, 0.07);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #172017;
  font-family: inherit;
}

#root .phone .games-page .season-standings-table .standings-row.table-head {
  min-height: 34px;
  display: grid;
  border-top: 0;
  color: #758073;
  font-size: 10.5px;
  font-weight: 850;
  text-transform: uppercase;
}

#root .phone .games-page .season-standings-table .standings-row.table-head + .standings-row {
  border-top: 1px solid rgba(12, 14, 12, 0.07);
}

#root .phone .games-page .season-standings-table .standings-row.table-head::before {
  display: none;
}

#root .phone .games-page .season-standings-table .standings-row > span:nth-child(7) {
  display: block;
}

#root .phone .games-page .season-standings-table .standings-row::before,
#root .phone .games-page .season-standings-table .standings-row.sturm-row::before,
#root .phone .games-page .season-standings-table .standings-row.zone-title::before,
#root .phone .games-page .season-standings-table .standings-row.zone-europe::before,
#root .phone .games-page .season-standings-table .standings-row.zone-split::before,
#root .phone .games-page .season-standings-table .standings-row.zone-risk::before {
  display: block;
}

#root .phone .games-page .season-standings-table .standings-row.zone-title::before {
  background: #101110;
}

#root .phone .games-page .season-standings-table .standings-row.zone-europe::before {
  background: #8fbf91;
}

#root .phone .games-page .season-standings-table .standings-row.zone-split::before {
  background: #c9b36c;
}

#root .phone .games-page .season-standings-table .standings-row.zone-risk::before {
  background: #d91528;
}

#root .phone .games-page .season-standings-table .rank {
  color: #536073;
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 690;
  line-height: 1;
  text-align: center;
}

#root .phone .games-page .season-standings-table .club-cell {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

#root .phone .games-page .season-standings-table .club-cell strong {
  min-width: 0;
  overflow: hidden;
  color: #1f2937;
  font-family: inherit;
  font-size: 17px;
  font-weight: 610;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root .phone .games-page .season-standings-table .table-team-mark,
#root .phone .games-page .season-standings-table .table-team-mark.club-badge-small {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  justify-self: auto;
  font-size: 11px;
}

#root .phone .games-page .season-standings-table .standings-row > span:not(.club-cell):not(.rank) {
  color: #536073;
  font-family: inherit;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
}

#root .phone .games-page .season-standings-table .standings-row .points,
#root .phone .games-page .season-standings-table .standings-row.sturm-row .points {
  color: #111827;
  font-family: inherit;
  font-size: 14px;
  font-weight: 760;
}

#root .phone .games-page .season-standings-table .standings-row.sturm-row {
  min-height: 62px;
  margin: 4px -2px;
  padding-right: 2px;
  border-top: 0;
  border-radius: 12px;
  background: #f0f1ee;
  box-shadow:
    0 9px 20px rgba(12, 14, 12, 0.08),
    inset 0 0 0 1px rgba(16, 17, 16, 0.05);
}

#root .phone .games-page .season-standings-table .standings-row.sturm-row::before {
  left: 3px;
  top: 12px;
  bottom: 12px;
  background: #101110;
}

#root .phone .games-page .season-standings-card .table-source {
  margin: 10px 2px 0;
  padding: 0;
  color: rgba(16, 17, 16, 0.55);
  font-family: var(--font-copy);
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

#root .phone .games-page .season-month-rail {
  scroll-snap-type: x proximity;
}

#root .phone .games-page .season-month-rail button {
  flex: 0 0 76px;
  justify-content: center;
}

#root .phone .games-page .season-month-rail + .scroll-dots {
  margin: -5px 0 12px;
}

#root .phone .games-page .season-calendar-board .calendar-day.has-match .table-team-mark,
#root .phone .games-page .season-calendar-board .calendar-day.has-match .table-team-mark.club-badge-small {
  right: -1px;
  top: -1px;
  width: 29px;
  height: 29px;
  flex-basis: 29px;
  font-size: 10px;
}

#root .phone .games-page .season-calendar-card .calendar-match .table-team-mark,
#root .phone .games-page .season-calendar-card .calendar-match .table-team-mark.club-badge-small {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  font-size: 19px;
}

#root .phone .games-page .season-squad-group h3 {
  font-size: 25px;
}

#root .phone .games-page .season-squad-group .squad-row {
  min-height: 66px;
}

#root .phone .games-page .season-squad-group .squad-row span {
  font-size: 12.5px;
}

#root .phone .games-page .season-squad-group .squad-row strong {
  font-size: 20px;
  font-weight: 690;
}

#root .phone .games-page .season-squad-group .squad-row small {
  font-size: 13px;
}

#root .phone .games-page .season-squad-group .squad-row em {
  width: 38px;
  height: 38px;
  font-size: 16px;
}

@media (max-width: 374px) {
  #root .phone .games-page .season-standings-card {
    margin-right: 10px;
    margin-left: 10px;
  }

  #root .phone .games-page .season-standings-table {
    padding-right: 7px;
    padding-left: 7px;
  }

  #root .phone .games-page .season-standings-table .standings-row {
    grid-template-columns: 28px minmax(0, 1fr) 27px 24px 24px 24px 31px 29px;
  }

  #root .phone .games-page .season-standings-table .club-cell {
    gap: 8px;
  }

  #root .phone .games-page .season-standings-table .club-cell strong {
    font-size: 15.5px;
  }

  #root .phone .games-page .season-standings-table .rank {
    font-size: 19px;
  }

  #root .phone .games-page .season-month-rail button {
    flex-basis: 68px;
  }

  #root .phone .games-page .season-squad-group .squad-row strong {
    font-size: 18px;
  }
}

/* v286: Sturm row is a normal table row with a left marker, not its own framed tile. */
#root .phone .games-page .season-standings-table .standings-row.sturm-row {
  min-height: 56px;
  margin: 0;
  padding-right: 0;
  border-top: 1px solid rgba(12, 14, 12, 0.07);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#root .phone .games-page .season-standings-table .standings-row.sturm-row + .standings-row {
  border-top: 1px solid rgba(12, 14, 12, 0.07);
}

#root .phone .games-page .season-standings-table .standings-row.sturm-row::before {
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 5px;
  border-radius: 999px;
  background: #101110;
}

#root .phone .games-page .season-standings-table .standings-row.sturm-row .rank,
#root .phone .games-page .season-standings-table .standings-row.sturm-row .club-cell strong,
#root .phone .games-page .season-standings-table .standings-row.sturm-row > span:not(.club-cell):not(.rank) {
  color: #101110;
  font-weight: 850;
}

#root .phone .games-page .season-standings-table .standings-row.sturm-row .points {
  color: #101110;
  font-weight: 900;
}
