/* ==========================================================================
   Master Global Lig — site stilleri
   Kimlik: kömür siyahı + Master kırmızısı, yoğun ve editoryal spor sayfası.
   ========================================================================== */

/* ---------- Tasarım değişkenleri ---------- */
:root {
  --ink: #121417;
  --ink-2: #1b1e23;
  --ink-3: #2a2e35;
  --ink-4: #3a3f47;
  --on-ink: #f4f3ef;
  --on-ink-2: #a9adb4;

  --paper: #f2f1ed;
  --card: #ffffff;
  --line: #e3e1db;
  --line-2: #cfcbc2;
  --text: #16181b;
  --text-2: #454a52;
  --muted: #767b83;

  --red: #d7141a;
  --red-2: #b30f14;
  --red-soft: #fbe9e9;

  --win: #178a4a;
  --draw: #8f959c;
  --loss: #d7141a;
  --card-yellow: #f4c400;
  --card-red: #d7141a;
  --gold: #b8912a;
  --blue: #2f64c8;

  --pitch-1: #2a7d44;
  --pitch-2: #26733e;
  --pitch-line: rgba(255, 255, 255, .72);

  --f-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --f-display: "Barlow Condensed", "Barlow", "Arial Narrow", system-ui, sans-serif;

  --r: 2px;
  --r-2: 4px;
  --wrap: 1240px;
  --gutter: 16px;
  --header-h: 68px;
}

/* ---------- Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--paper);
  font-feature-settings: "tnum" 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; font-weight: 700; }
p { margin: 0 0 1em; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--red); color: #fff; padding: 8px 14px; font-weight: 600; }
.skip-link:focus { left: 8px; color: #fff; }
.num { font-variant-numeric: tabular-nums; }
.icon { width: 18px; height: 18px; flex: none; }
.icon--sm { width: 14px; height: 14px; }
.icon--lg { width: 24px; height: 24px; }
.ev-icon { width: 16px; height: 16px; flex: none; color: var(--text); }

/* ---------- Düzen ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.main { padding-top: 28px; padding-bottom: 64px; min-height: 50vh; }
.grid { display: grid; gap: 24px; }
.grid-2 { display: grid; gap: 24px; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 20px; grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.layout-side { display: grid; gap: 28px; grid-template-columns: minmax(0, 1fr); align-items: start; }
.layout-side > * { min-width: 0; }
.stack > * + * { margin-top: 24px; }
.stack-sm > * + * { margin-top: 12px; }
.row { display: flex; align-items: center; gap: 10px; }
.row--between { justify-content: space-between; }
.row--wrap { flex-wrap: wrap; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.hide-sm { display: none; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .hide-sm { display: revert; }
  .show-sm { display: none !important; }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .layout-side { grid-template-columns: minmax(0, 1fr) 340px; }
  .layout-side--wide { grid-template-columns: minmax(0, 1fr) 380px; }
  .hide-md { display: none !important; }
}
@media (max-width: 959px) { .show-md-only { display: none !important; } }

/* ---------- Duyuru şeridi ---------- */
.notice-bar { background: var(--red); color: #fff; font-size: 14px; font-weight: 600; }
.notice-bar a { color: #fff; display: block; padding: 8px 0; }
.notice-bar a:hover { text-decoration: underline; }
.notice-bar .wrap { display: flex; gap: 10px; align-items: center; }

/* ---------- Üst çubuk ---------- */
.topbar { background: #0b0c0e; color: var(--on-ink-2); font-size: 13px; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 16px; }
.topbar__date { white-space: nowrap; }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.social { display: flex; align-items: center; gap: 4px; }
.social a { display: grid; place-items: center; width: 30px; height: 30px; color: var(--on-ink-2); }
.social a:hover { color: #fff; }
.social .icon { width: 17px; height: 17px; }
.main-sponsor-badge { display: flex; align-items: center; gap: 10px; color: var(--on-ink-2); }
.main-sponsor-badge span { font-family: var(--f-display); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 600; }
.main-sponsor-badge img { height: 26px; width: auto; background: #fff; padding: 3px 8px; border-radius: var(--r); }
.main-sponsor-badge:hover { color: #fff; }

/* ---------- Başlık ---------- */
.masthead { background: var(--ink); color: var(--on-ink); position: sticky; top: 0; z-index: 40; border-bottom: 3px solid var(--red); }
.masthead .wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; min-width: 0; }
.brand:hover { color: #fff; }
.brand__mark {
  display: grid; place-items: center; flex: none;
  width: 46px; height: 46px; background: var(--red); color: #fff;
  font-family: var(--f-display); font-weight: 800; font-size: 19px; letter-spacing: -.01em;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}
.brand__logo { height: 48px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
.brand__name { font-family: var(--f-display); font-weight: 800; font-size: 23px; text-transform: uppercase; letter-spacing: .01em; white-space: nowrap; }
.brand__tag { font-family: var(--f-display); font-weight: 500; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-ink-2); margin-top: 4px; white-space: nowrap; }

.nav { display: none; }
.nav__list { display: flex; align-items: stretch; list-style: none; margin: 0; padding: 0; height: var(--header-h); }
.nav__item { position: relative; display: flex; }
.nav__link {
  display: flex; align-items: center; gap: 4px; padding: 0 12px;
  font-family: var(--f-display); font-weight: 600; font-size: 16.5px; letter-spacing: .03em; text-transform: uppercase;
  color: var(--on-ink); border: 0; background: none; position: relative; white-space: nowrap;
}
.nav__link::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
.nav__link:hover, .nav__item:focus-within > .nav__link { color: #fff; }
.nav__link:hover::after, .nav__link.is-active::after, .nav__item:focus-within > .nav__link::after { transform: scaleX(1); }
.nav__link .icon { width: 14px; height: 14px; opacity: .7; }
.nav__drop {
  position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--ink-2); border-top: 3px solid var(--red);
  padding: 8px 0; list-style: none; margin: 0; display: none; box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.nav__item:hover > .nav__drop, .nav__item:focus-within > .nav__drop { display: block; }
.nav__drop a { display: block; padding: 9px 18px; color: var(--on-ink); font-weight: 500; font-size: 15px; }
.nav__drop a:hover { background: var(--ink-3); color: #fff; }

.burger { display: grid; place-items: center; width: 44px; height: 44px; background: none; border: 1px solid var(--ink-4); color: #fff; border-radius: var(--r); }
.burger .icon { width: 22px; height: 22px; }

@media (min-width: 1100px) {
  .nav { display: block; }
  .burger { display: none; }
}

/* Mobil menü */
.drawer { position: fixed; inset: 0; z-index: 60; display: none; }
.drawer.is-open { display: block; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(8, 9, 11, .6); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 88vw); background: var(--ink); color: var(--on-ink);
  display: flex; flex-direction: column; overflow-y: auto; border-left: 3px solid var(--red);
}
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--ink-3); }
.drawer__title { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 14px; color: var(--on-ink-2); }
.drawer nav { padding: 8px 0 24px; }
.drawer__group { padding: 14px 16px 4px; font-family: var(--f-display); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--on-ink-2); }
.drawer a.drawer__link { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; font-family: var(--f-display); font-weight: 600; font-size: 20px; text-transform: uppercase; letter-spacing: .02em; border-bottom: 1px solid var(--ink-2); }
.drawer a.drawer__link:hover { background: var(--ink-2); color: #fff; }
.drawer a.drawer__sub { display: block; padding: 10px 16px 10px 28px; color: var(--on-ink); font-size: 16px; border-bottom: 1px solid var(--ink-2); }
.drawer .social { padding: 16px; gap: 8px; }
.drawer .social a { border: 1px solid var(--ink-3); width: 40px; height: 40px; }
body.no-scroll { overflow: hidden; }

/* ---------- Skor şeridi ---------- */
.ticker { background: var(--ink-2); color: var(--on-ink); border-bottom: 1px solid #000; }
.ticker .wrap { display: flex; align-items: stretch; gap: 0; padding-right: 0; }
.ticker__label {
  flex: none; display: flex; align-items: center; padding-right: 14px; margin-right: 4px;
  font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--on-ink-2);
  border-right: 1px solid var(--ink-3);
}
.ticker__track { display: flex; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; min-width: 0; flex: 1 1 auto; }
.ticker__track::-webkit-scrollbar { display: none; }
.tick {
  flex: none; display: grid; grid-template-columns: auto auto; column-gap: 12px; row-gap: 2px; align-items: center;
  padding: 8px 14px; min-width: 150px; border-right: 1px solid var(--ink-3); scroll-snap-align: start; color: var(--on-ink);
}
.tick:hover { background: var(--ink-3); color: #fff; }
.tick__meta { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 8px; font-size: 11px; color: var(--on-ink-2); text-transform: uppercase; letter-spacing: .06em; font-family: var(--f-display); font-weight: 600; }
.tick__meta .live { color: #ff5a5f; }
.tick__team { display: flex; align-items: center; gap: 7px; font-family: var(--f-display); font-weight: 600; font-size: 15px; letter-spacing: .02em; }
.tick__team .crest { width: 16px; height: 16px; }
.tick__score { font-family: var(--f-display); font-weight: 700; font-size: 15px; text-align: right; font-variant-numeric: tabular-nums; }
.tick__score.is-win { color: #fff; }
.tick--live { box-shadow: inset 0 3px 0 var(--red); }

/* ---------- Sayfa başlığı ---------- */
.page-hero { background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: -60px; top: 0; bottom: 0; width: 360px;
  background: repeating-linear-gradient(115deg, transparent 0 22px, rgba(255,255,255,.035) 22px 44px);
  pointer-events: none;
}
.page-hero .wrap { padding-top: 34px; padding-bottom: 30px; position: relative; z-index: 1; }
.page-hero__kicker { font-family: var(--f-display); font-weight: 600; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-ink-2); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.page-hero__kicker a { color: var(--on-ink-2); }
.page-hero__kicker a:hover { color: #fff; }
.page-hero__kicker .sep { color: var(--red); }
.page-hero__title { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(34px, 6vw, 60px); letter-spacing: -.005em; line-height: .95; margin-top: 10px; }
.page-hero__lead { max-width: 720px; color: var(--on-ink-2); margin: 12px 0 0; font-size: 17px; }
.page-hero__bar { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* Sayfa içi sekmeler (başlık altında) */
.subnav { background: var(--card); border-bottom: 1px solid var(--line); position: sticky; top: calc(var(--header-h) + 3px); z-index: 30; }
.subnav .wrap { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.subnav .wrap::-webkit-scrollbar { display: none; }
.subnav a { flex: none; padding: 14px 16px 12px; font-family: var(--f-display); font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-2); border-bottom: 3px solid transparent; }
.subnav a:hover { color: var(--text); }
.subnav a.is-active { color: var(--text); border-bottom-color: var(--red); }

/* ---------- Bölüm başlığı & panel ---------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; border-bottom: 2px solid var(--ink); padding-bottom: 8px; margin-bottom: 16px; }
.sec-head__title { font-family: var(--f-display); font-weight: 800; font-size: 25px; text-transform: uppercase; letter-spacing: .01em; display: flex; align-items: center; gap: 10px; line-height: 1; }
.sec-head__title::before { content: ""; width: 5px; height: 21px; background: var(--red); flex: none; }
.sec-head__link { font-family: var(--f-display); font-weight: 600; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-2); display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.sec-head__link .icon { width: 14px; height: 14px; }
.sec-head__link:hover { color: var(--red); }
.sec-head--light { border-color: var(--on-ink-2); }
.sec-head--light .sec-head__title { color: #fff; }
.sec-head--light .sec-head__link { color: var(--on-ink-2); }

.panel { background: var(--card); border: 1px solid var(--line); }
.panel__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.panel__title { font-family: var(--f-display); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: .03em; }
.panel__body { padding: 16px; }
.panel__foot { padding: 10px 16px; border-top: 1px solid var(--line); font-size: 14px; }
.panel--flush .panel__body { padding: 0; }
.panel + .panel { margin-top: 20px; }

/* ---------- Düğmeler, rozetler, sekmeler ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; padding: 0 18px;
  background: var(--ink); color: #fff; border: 1px solid var(--ink); border-radius: var(--r);
  font-family: var(--f-display); font-weight: 700; font-size: 16px; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap;
  transition: background-color .15s, border-color .15s, color .15s;
}
.btn:hover { background: #000; color: #fff; }
.btn--red { background: var(--red); border-color: var(--red); }
.btn--red:hover { background: var(--red-2); border-color: var(--red-2); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--card); border-color: var(--ink); color: var(--text); }
.btn--on-ink { background: transparent; color: #fff; border-color: var(--ink-4); }
.btn--on-ink:hover { background: var(--ink-3); border-color: var(--on-ink-2); }
.btn--sm { min-height: 34px; padding: 0 12px; font-size: 14px; }
.btn--block { width: 100%; }
.btn .icon { width: 16px; height: 16px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 8px 2px; border-radius: var(--r);
  font-family: var(--f-display); font-weight: 700; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  background: var(--ink); color: #fff; line-height: 1.3; white-space: nowrap;
}
.badge--muted { background: #e9e7e1; color: var(--text-2); }
.badge--warn { background: #fff1d6; color: #7a4d00; }
.badge--red { background: var(--red); color: #fff; }
.badge--outline { background: transparent; color: var(--text-2); box-shadow: inset 0 0 0 1px var(--line-2); }
.badge--live { background: var(--red); color: #fff; }
.badge--live i { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 1.4s infinite; }
.badge--gold { background: #f6ecd0; color: #6f5412; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: .25; } 100% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .badge--live i { animation: none; } }

.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: none; background: none; border: 0; border-bottom: 3px solid transparent; margin-bottom: -1px; padding: 10px 14px 8px;
  font-family: var(--f-display); font-weight: 700; font-size: 16px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted);
}
.tab:hover { color: var(--text); }
.tab.is-active, .tab[aria-selected="true"] { color: var(--text); border-bottom-color: var(--red); }
[data-tab-panel][hidden] { display: none !important; }

.seg { display: inline-flex; border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; background: var(--card); }
.seg a, .seg button { padding: 7px 14px; font-family: var(--f-display); font-weight: 700; font-size: 14px; letter-spacing: .05em; text-transform: uppercase; color: var(--text-2); border: 0; background: none; border-right: 1px solid var(--line-2); }
.seg a:last-child, .seg button:last-child { border-right: 0; }
.seg a.is-active, .seg button.is-active { background: var(--ink); color: #fff; }

.filterbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 20px; }
.select {
  appearance: none; -webkit-appearance: none; min-height: 40px; padding: 0 36px 0 12px; border: 1px solid var(--line-2); border-radius: var(--r);
  background: var(--card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23454a52' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center / 16px;
  font-weight: 600; font-size: 15px; max-width: 100%;
}
.select:hover { border-color: var(--ink); }

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border: 1px solid var(--line-2); border-radius: 999px; font-size: 14px; font-weight: 600; background: var(--card); color: var(--text-2); }
.chip:hover { border-color: var(--ink); color: var(--text); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* Hafta seçici */
.weekpick { display: flex; align-items: center; gap: 8px; }
.weekpick__btn { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line-2); background: var(--card); border-radius: var(--r); color: var(--text); }
.weekpick__btn:hover { border-color: var(--ink); color: var(--text); }
.weekpick__btn.is-disabled { opacity: .35; pointer-events: none; }
.weekpick__label { font-family: var(--f-display); font-weight: 800; font-size: 22px; text-transform: uppercase; min-width: 110px; text-align: center; }

/* ---------- Arma & avatar ---------- */
.crest { flex: none; object-fit: contain; }
.crest--mono {
  display: inline-grid; place-items: center; border-radius: 50%;
  background: var(--crest, #2b3138); color: #fff; font-family: var(--f-display); font-weight: 800; letter-spacing: -.02em; line-height: 1;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.28);
}
.avatar { flex: none; object-fit: cover; object-position: center 20%; border-radius: 50%; background: #e6e3dc; }
.avatar--mono { display: inline-grid; place-items: center; color: var(--text-2); font-family: var(--f-display); font-weight: 700; background: #e6e3dc; }
.avatar--sq { border-radius: var(--r); }

/* ---------- Maç satırı ---------- */
.fixtures { background: var(--card); border: 1px solid var(--line); }
.fixtures__group { padding: 9px 16px; background: #f7f6f2; border-bottom: 1px solid var(--line); font-family: var(--f-display); font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); display: flex; justify-content: space-between; gap: 10px; }
.fixtures__group + .mrow, .mrow + .mrow { border-top: 1px solid var(--line); }
.fixtures__group:not(:first-child) { border-top: 1px solid var(--line); }
.mrow {
  display: grid; grid-template-columns: 58px minmax(0, 1fr) auto; align-items: center; gap: 10px;
  padding: 10px 14px; color: var(--text); position: relative;
}
.mrow:hover { background: #faf9f6; color: var(--text); }
.mrow__time { font-family: var(--f-display); font-weight: 700; font-size: 16px; text-align: center; line-height: 1.1; font-variant-numeric: tabular-nums; }
.mrow__time small { display: block; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 2px; }
.mrow__time .live { color: var(--red); }
.mrow__teams { display: grid; gap: 4px; min-width: 0; }
.mrow__team { display: flex; align-items: center; gap: 9px; min-width: 0; font-weight: 600; font-size: 15.5px; }
.mrow__team .crest { width: 22px; height: 22px; }
.mrow__team span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mrow__team.is-winner { font-weight: 700; }
.mrow__team.is-loser { color: var(--text-2); font-weight: 500; }
.mrow__scores { display: grid; gap: 4px; text-align: right; font-family: var(--f-display); font-weight: 800; font-size: 19px; line-height: 22px; font-variant-numeric: tabular-nums; min-width: 22px; }
.mrow__scores .is-loser { color: var(--muted); }
.mrow__meta { display: none; }
.mrow__vs { display: none; }
.mrow--live { box-shadow: inset 3px 0 0 var(--red); }
.mrow__note { grid-column: 2 / -1; font-size: 12.5px; color: var(--muted); margin-top: -2px; }

@media (min-width: 760px) {
  .mrow { grid-template-columns: 74px minmax(0, 1fr) 92px minmax(0, 1fr) 190px; gap: 14px; padding: 12px 16px; }
  .mrow__teams, .mrow__scores { display: contents; }
  .mrow__team--home { grid-column: 2; justify-content: flex-end; text-align: right; flex-direction: row-reverse; }
  .mrow__team--away { grid-column: 4; }
  .mrow__vs { display: flex; grid-column: 3; grid-row: 1; justify-content: center; }
  .mrow__scores > * { display: none; }
  .mrow__meta { display: block; grid-column: 5; font-size: 13px; color: var(--muted); text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mrow__note { grid-column: 2 / 5; text-align: center; margin-top: -6px; }
}

.scorebox {
  display: inline-flex; align-items: center; justify-content: center; gap: 2px; min-width: 76px; height: 34px; padding: 0 10px;
  background: var(--ink); color: #fff; font-family: var(--f-display); font-weight: 800; font-size: 21px; letter-spacing: .02em;
  font-variant-numeric: tabular-nums; clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.scorebox span { min-width: 16px; text-align: center; }
.scorebox i { font-style: normal; opacity: .55; padding: 0 3px; }
.scorebox--live { background: var(--red); }
.scorebox--time { background: #eceae4; color: var(--text); font-size: 18px; }
.scorebox--muted { background: #eceae4; color: var(--muted); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- Puan tablosu ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; background: var(--card); border: 1px solid var(--line); position: relative; }
.standings { font-size: 15px; min-width: 100%; }
.standings th {
  font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  padding: 10px 8px; text-align: center; border-bottom: 2px solid var(--ink); background: var(--card); white-space: nowrap;
}
.standings td { padding: 9px 8px; text-align: center; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; white-space: nowrap; }
.standings tr:last-child td { border-bottom: 0; }
.standings tbody tr:hover td { background: #faf9f6; }
.standings .c-pos { width: 44px; font-family: var(--f-display); font-weight: 700; font-size: 16px; position: relative; }
.standings .c-team { text-align: left; min-width: 180px; }
.standings th.c-team { text-align: left; }
.standings .c-pts { font-family: var(--f-display); font-weight: 800; font-size: 18px; color: var(--text); }
.standings th.c-pts { color: var(--text); }
.standings .c-gd.pos { color: var(--win); }
.standings .c-gd.neg { color: var(--loss); }
.standings .team-cell { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.standings .team-cell .crest { width: 24px; height: 24px; }
.standings .team-cell a { overflow: hidden; text-overflow: ellipsis; }
.standings tr.z1 .c-pos::before, .standings tr.z2 .c-pos::before, .standings tr.zb .c-pos::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 4px; }
.standings tr.z1 .c-pos::before { background: var(--win); }
.standings tr.z2 .c-pos::before { background: var(--blue); }
.standings tr.zb .c-pos::before { background: var(--loss); }
.standings tr.is-withdrawn td { color: var(--muted); text-decoration: line-through; }
.standings tr.is-highlight td { background: #fff7e6; }
.standings .c-sticky { position: sticky; left: 0; background: var(--card); z-index: 1; }
.standings .c-sticky2 { position: sticky; left: 44px; background: var(--card); z-index: 1; box-shadow: 1px 0 0 var(--line); }
.standings--compact .c-team { min-width: 0; max-width: 170px; }
.standings--compact td { padding: 8px 6px; }
.legend { display: flex; flex-wrap: wrap; gap: 16px; padding: 12px 16px; font-size: 13px; color: var(--text-2); border-top: 1px solid var(--line); background: var(--card); }
.legend span { display: inline-flex; align-items: center; gap: 7px; }
.legend i { width: 12px; height: 12px; display: inline-block; }
.legend i.z1 { background: var(--win); } .legend i.z2 { background: var(--blue); } .legend i.zb { background: var(--loss); }
.table-note { font-size: 13px; color: var(--muted); padding: 10px 16px; background: var(--card); border: 1px solid var(--line); border-top: 0; }

/* Form rozetleri */
.form { display: inline-flex; gap: 3px; }
.form a, .form span { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: var(--r); font-family: var(--f-display); font-weight: 800; font-size: 12px; color: #fff; }
.form .f-w { background: var(--win); } .form .f-d { background: var(--draw); } .form .f-l { background: var(--loss); }
.form .f-none { background: #e9e7e1; color: var(--muted); }

/* ---------- Ana sayfa: maç merkezi ---------- */
.hero-match {
  background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; border-bottom: 1px solid #000;
}
.hero-match__pitch { position: absolute; inset: 0; opacity: .09; pointer-events: none; }
.hero-match__pitch svg { width: 100%; height: 100%; }
.hero-match .wrap { position: relative; z-index: 1; padding-top: 26px; padding-bottom: 30px; }
.hero-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: minmax(0, 1fr) 360px; gap: 32px; } }
.feature { display: flex; flex-direction: column; }
.feature__kicker { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-family: var(--f-display); font-weight: 600; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--on-ink-2); }
.feature__board { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 12px; margin: 22px 0 18px; }
.feature__team { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; color: #fff; min-width: 0; }
.feature__team:hover { color: #fff; }
.feature__team .crest { width: 64px; height: 64px; }
.feature__team .crest--mono { font-size: 22px !important; }
.feature__name { font-family: var(--f-display); font-weight: 800; font-size: 20px; text-transform: uppercase; line-height: 1.05; letter-spacing: .01em; overflow-wrap: anywhere; }
.feature__center { text-align: center; }
.feature__score { font-family: var(--f-display); font-weight: 800; font-size: 60px; line-height: 1; letter-spacing: -.01em; font-variant-numeric: tabular-nums; display: flex; align-items: center; gap: 10px; justify-content: center; }
.feature__score i { font-style: normal; color: var(--red); font-size: 40px; }
.feature__time { font-family: var(--f-display); font-weight: 800; font-size: 46px; line-height: 1; font-variant-numeric: tabular-nums; }
.feature__date { font-family: var(--f-display); font-weight: 600; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; color: var(--on-ink-2); margin-top: 6px; }
.feature__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; color: var(--on-ink-2); font-size: 14px; }
.feature__meta span { display: inline-flex; align-items: center; gap: 6px; }
.feature__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.feature__scorers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; font-size: 13.5px; color: var(--on-ink-2); margin-top: -4px; }
.feature__scorers div:first-child { text-align: right; }
@media (min-width: 640px) {
  .feature__team .crest { width: 88px; height: 88px; }
  .feature__name { font-size: 28px; }
  .feature__score { font-size: 88px; }
  .feature__score i { font-size: 56px; }
  .feature__time { font-size: 64px; }
}

.countdown { display: inline-flex; gap: 6px; margin-top: 12px; }
.countdown div { background: var(--ink-3); padding: 6px 8px 5px; min-width: 52px; text-align: center; border-radius: var(--r); }
.countdown b { display: block; font-family: var(--f-display); font-weight: 800; font-size: 24px; line-height: 1; font-variant-numeric: tabular-nums; color: #fff; }
.countdown small { display: block; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--on-ink-2); margin-top: 3px; }

.weeklist { background: var(--ink-2); border: 1px solid var(--ink-3); }
.weeklist__head { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border-bottom: 1px solid var(--ink-3); }
.weeklist__title { font-family: var(--f-display); font-weight: 800; font-size: 18px; text-transform: uppercase; letter-spacing: .03em; color: #fff; }
.weeklist__head a { font-family: var(--f-display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--on-ink-2); }
.weeklist__head a:hover { color: #fff; }
.wl-row { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 8px; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--ink-3); color: var(--on-ink); font-size: 14px; }
.wl-row:last-child { border-bottom: 0; }
.wl-row:hover { background: var(--ink-3); color: #fff; }
.wl-row__home { display: flex; align-items: center; justify-content: flex-end; gap: 8px; text-align: right; min-width: 0; }
.wl-row__away { display: flex; align-items: center; gap: 8px; min-width: 0; }
.wl-row span.n { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; line-height: 1.2; overflow-wrap: anywhere; font-weight: 600; }
.wl-row .crest { width: 20px; height: 20px; }
.wl-row__mid { font-family: var(--f-display); font-weight: 800; font-size: 16px; min-width: 58px; text-align: center; background: var(--ink); padding: 3px 6px; font-variant-numeric: tabular-nums; }
.wl-row__mid.is-time { font-weight: 700; color: var(--on-ink-2); font-size: 15px; line-height: 1.1; }
.wl-row__mid.is-time small { display: block; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; opacity: .85; }
.wl-row__mid.is-live { background: var(--red); color: #fff; }
.wl-empty { padding: 22px 14px; color: var(--on-ink-2); font-size: 14px; }

/* ---------- Haberler ---------- */
.lead-story { position: relative; display: block; background: var(--ink); color: #fff; overflow: hidden; min-height: 320px; }
.lead-story img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .4s ease; }
.lead-story:hover img { transform: scale(1.02); }
.lead-story__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,11,13,0) 30%, rgba(10,11,13,.92) 100%); }
.lead-story__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; }
.lead-story__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.02; text-transform: uppercase; margin-top: 8px; }
.lead-story:hover { color: #fff; }
.lead-story:hover .lead-story__title { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.lead-story__summary { color: #d9dadd; margin: 8px 0 0; max-width: 620px; font-size: 15.5px; }
.lead-story--noimg { background: var(--ink) repeating-linear-gradient(115deg, transparent 0 26px, rgba(255,255,255,.03) 26px 52px); }

.news-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); color: var(--text); height: 100%; }
.news-card:hover { color: var(--text); border-color: var(--line-2); }
.news-card__img { aspect-ratio: 16 / 9; background: #e7e4dd; overflow: hidden; position: relative; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-card__img img { transform: scale(1.03); }
.news-card__ph { width: 100%; height: 100%; display: grid; place-items: center; background: var(--ink); color: var(--ink-4); font-family: var(--f-display); font-weight: 800; font-size: 44px; letter-spacing: -.02em; }
.news-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.news-card__title { font-family: var(--f-display); font-weight: 700; font-size: 21px; line-height: 1.08; }
.news-card:hover .news-card__title { color: var(--red); }
.news-card__summary { color: var(--text-2); font-size: 14.5px; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.kicker { font-family: var(--f-display); font-weight: 700; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--red); display: flex; gap: 8px; align-items: center; }
.kicker time, .kicker .muted { color: var(--muted); font-weight: 600; }
.kicker--light time { color: #c9cbd0; }

.news-list-item { display: grid; grid-template-columns: 120px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.news-list-item:first-child { padding-top: 0; }
.news-list-item:hover { color: var(--text); }
.news-list-item:hover h3 { color: var(--red); }
.news-list-item__img { aspect-ratio: 4 / 3; background: #e7e4dd; overflow: hidden; }
.news-list-item__img img { width: 100%; height: 100%; object-fit: cover; }
.news-list-item h3 { font-family: var(--f-display); font-weight: 700; font-size: 19px; line-height: 1.1; margin-top: 4px; }
@media (min-width: 640px) { .news-list-item { grid-template-columns: 220px 1fr; gap: 20px; } .news-list-item h3 { font-size: 24px; } }

.ann-list { list-style: none; margin: 0; padding: 0; background: var(--card); border: 1px solid var(--line); }
.ann-list li + li { border-top: 1px solid var(--line); }
.ann { display: grid; grid-template-columns: 56px 1fr; gap: 12px; padding: 12px 14px; color: var(--text); align-items: start; }
.ann:hover { color: var(--text); background: #faf9f6; }
.ann:hover .ann__title { color: var(--red); }
.ann__date { text-align: center; border: 1px solid var(--line-2); padding: 5px 0 4px; line-height: 1; }
.ann__date b { display: block; font-family: var(--f-display); font-weight: 800; font-size: 24px; }
.ann__date small { display: block; font-family: var(--f-display); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.ann__title { font-weight: 700; font-size: 15.5px; line-height: 1.3; }
.ann__summary { font-size: 13.5px; color: var(--text-2); margin-top: 3px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ann--pinned .ann__date { border-color: var(--red); }
.ann--pinned .ann__date b { color: var(--red); }

/* ---------- İstatistik listeleri ---------- */
.leaders { list-style: none; margin: 0; padding: 0; background: var(--card); border: 1px solid var(--line); }
.leaders li + li { border-top: 1px solid var(--line); }
.leader { display: grid; grid-template-columns: 26px 40px minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 9px 14px; color: var(--text); }
.leader:hover { background: #faf9f6; color: var(--text); }
.leader__rank { font-family: var(--f-display); font-weight: 800; font-size: 17px; color: var(--muted); text-align: center; }
.leader__name { font-weight: 700; font-size: 15px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.leader__team { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); margin-top: 2px; min-width: 0; }
.leader__team span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.leader__team .crest { width: 14px; height: 14px; }
.leader__val { font-family: var(--f-display); font-weight: 800; font-size: 24px; font-variant-numeric: tabular-nums; min-width: 34px; text-align: right; }
.leader__val small { font-size: 13px; color: var(--muted); font-weight: 600; margin-left: 3px; }
.leader--top { background: var(--ink); color: #fff; }
.leader--top:hover { background: var(--ink-2); color: #fff; }
.leader--top .leader__rank { color: var(--red); }
.leader--top .leader__team { color: var(--on-ink-2); }
.leader--top .leader__val small { color: var(--on-ink-2); }

.stat-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 760px) { .stat-tiles { grid-template-columns: repeat(4, 1fr); } }
.stat-tile { background: var(--card); padding: 16px; }
.stat-tile b { display: block; font-family: var(--f-display); font-weight: 800; font-size: 36px; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-tile span { display: block; font-family: var(--f-display); font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.stat-tiles--dark { background: var(--ink-3); border-color: var(--ink-3); }
.stat-tiles--dark .stat-tile { background: var(--ink-2); color: #fff; }
.stat-tiles--dark .stat-tile span { color: var(--on-ink-2); }

.data-table { background: var(--card); font-size: 14.5px; }
.data-table th { font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); text-align: left; padding: 10px 12px; border-bottom: 2px solid var(--ink); white-space: nowrap; }
.data-table td { padding: 9px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.data-table tbody tr:hover td { background: #faf9f6; }
.data-table .n { text-align: center; font-variant-numeric: tabular-nums; }
.data-table th.n { text-align: center; }
.data-table .strong { font-family: var(--f-display); font-weight: 800; font-size: 17px; }
.person-cell { display: flex; align-items: center; gap: 10px; min-width: 0; }
.person-cell b { font-weight: 700; }
.person-cell small { display: block; color: var(--muted); font-size: 12.5px; }

/* ---------- Saha & kadro ---------- */
.pitch {
  position: relative; width: 100%; aspect-ratio: 68 / 105; max-width: 520px; margin: 0 auto;
  background: repeating-linear-gradient(180deg, var(--pitch-1) 0 7.14%, var(--pitch-2) 7.14% 14.28%);
  border-radius: var(--r-2); overflow: hidden;
}
.pitch--half { aspect-ratio: 68 / 60; }
.pitch__lines { position: absolute; inset: 3%; border: 2px solid var(--pitch-line); pointer-events: none; }
.pitch__lines::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; border-top: 2px solid var(--pitch-line); }
.pitch__lines::after { content: ""; position: absolute; left: 50%; top: 50%; width: 26%; aspect-ratio: 1; border: 2px solid var(--pitch-line); border-radius: 50%; transform: translate(-50%, -50%); }
.pitch--half .pitch__lines::before, .pitch--half .pitch__lines::after { display: none; }
.pitch__box { position: absolute; left: 22%; right: 22%; height: 15%; border: 2px solid var(--pitch-line); pointer-events: none; }
.pitch__box--top { top: 3%; border-top: 0; }
.pitch__box--bottom { bottom: 3%; border-bottom: 0; }
.pitch__box::after { content: ""; position: absolute; left: 28%; right: 28%; height: 40%; border: 2px solid var(--pitch-line); }
.pitch__box--top::after { top: -2px; border-top: 0; }
.pitch__box--bottom::after { bottom: -2px; border-bottom: 0; }
.pitch--half .pitch__box { height: 25%; }
.pitch__player {
  position: absolute; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 3px;
  width: 76px; text-align: center; color: #fff; z-index: 2;
}
.pitch__player:hover { color: #fff; }
.pitch__shirt {
  position: relative; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: var(--kit, #fff); color: var(--kit-text, #111); border: 2px solid rgba(255,255,255,.9);
  font-family: var(--f-display); font-weight: 800; font-size: 15px; box-shadow: 0 2px 6px rgba(0,0,0,.35); font-variant-numeric: tabular-nums;
}
.pitch__player.has-photo .pitch__shirt { width: 38px; height: 38px; overflow: hidden; }
.pitch__player.has-photo .pitch__shirt img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.pitch__name { font-size: 11.5px; font-weight: 700; line-height: 1.1; text-shadow: 0 1px 2px rgba(0,0,0,.8); max-width: 76px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; background: rgba(12, 30, 18, .55); padding: 1px 5px; border-radius: 2px; }
.pitch__marks { position: absolute; top: -6px; right: 14px; display: flex; gap: 1px; }
.pitch__marks .ev-icon { width: 13px; height: 13px; filter: drop-shadow(0 1px 1px rgba(0,0,0,.4)); }
.pitch__num { position: absolute; left: -7px; bottom: -4px; min-width: 16px; height: 16px; padding: 0 3px; border-radius: 8px; background: var(--ink); color: #fff; font-family: var(--f-display); font-weight: 700; font-size: 11px; line-height: 16px; }
.pitch__cap { position: absolute; left: 12px; top: -6px; width: 14px; height: 14px; }
.pitch__formation { position: absolute; left: 10px; font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .08em; color: rgba(255,255,255,.9); background: rgba(0,0,0,.35); padding: 2px 7px; border-radius: 2px; z-index: 3; }
.pitch__formation--top { top: 8px; }
.pitch__formation--bottom { bottom: 8px; }
@media (min-width: 520px) {
  .pitch__player { width: 96px; }
  .pitch__shirt { width: 36px; height: 36px; font-size: 16px; }
  .pitch__name { font-size: 12.5px; max-width: 96px; }
}

.lineup-list { list-style: none; margin: 0; padding: 0; }
.lineup-list li { display: grid; grid-template-columns: 30px 34px minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.lineup-list li:last-child { border-bottom: 0; }
.lineup-list .no { font-family: var(--f-display); font-weight: 800; font-size: 16px; color: var(--muted); text-align: center; font-variant-numeric: tabular-nums; }
.lineup-list .nm { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lineup-list .nm small { color: var(--muted); font-weight: 500; margin-left: 4px; }
.lineup-list .mk { display: flex; gap: 3px; align-items: center; font-size: 12px; color: var(--muted); }
.lineup-list .mk .ev-icon { width: 14px; height: 14px; }
.lineup-sub-title { font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 16px 0 4px; }

/* ---------- Olay akışı ---------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.tl-row { display: grid; grid-template-columns: 46px 24px minmax(0, 1fr); gap: 10px; align-items: start; padding: 10px 0; border-bottom: 1px solid var(--line); }
.tl-row:last-child { border-bottom: 0; }
.tl-min { font-family: var(--f-display); font-weight: 800; font-size: 17px; text-align: right; font-variant-numeric: tabular-nums; color: var(--text); line-height: 22px; }
.tl-icon { display: grid; place-items: center; height: 22px; }
.tl-icon .ev-icon { width: 18px; height: 18px; }
.tl-body { min-width: 0; }
.tl-main { font-weight: 700; font-size: 15px; line-height: 22px; display: flex; flex-wrap: wrap; gap: 4px 8px; align-items: center; }
.tl-main a:hover { color: var(--red); }
.tl-sub { font-size: 13px; color: var(--muted); margin-top: 1px; }
.tl-team { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.tl-team .crest { width: 14px; height: 14px; }
.tl-score { font-family: var(--f-display); font-weight: 800; font-size: 14px; background: var(--ink); color: #fff; padding: 0 6px; border-radius: 2px; line-height: 20px; }
.tl-row--goal { background: linear-gradient(90deg, var(--red-soft), transparent 70%); }
.tl-sep { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); }
.tl-sep::before, .tl-sep::after { content: ""; height: 1px; background: var(--line-2); flex: 1; }
.tl-sep b { color: var(--text); font-weight: 800; }

@media (min-width: 760px) {
  .timeline--split .tl-row { grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr); gap: 14px; }
  .timeline--split .tl-row .tl-min { grid-column: 2; grid-row: 1; text-align: center; }
  .timeline--split .tl-row .tl-icon { display: none; }
  .timeline--split .tl-row .tl-body { grid-row: 1; display: flex; gap: 10px; align-items: flex-start; }
  .timeline--split .tl-row.is-home .tl-body { grid-column: 1; flex-direction: row-reverse; text-align: right; }
  .timeline--split .tl-row.is-home .tl-main { justify-content: flex-end; }
  .timeline--split .tl-row.is-away .tl-body { grid-column: 3; }
  .timeline--split .tl-row .tl-body .ev-icon { width: 20px; height: 20px; margin-top: 1px; flex: none; }
  .timeline--split .tl-row .tl-team { display: none; }
  .timeline--split .tl-row--goal.is-home { background: linear-gradient(270deg, transparent 40%, var(--red-soft)); }
  .timeline--split .tl-row--goal.is-away { background: linear-gradient(90deg, transparent 40%, var(--red-soft)); }
  .timeline--split .tl-row.is-neutral .tl-body { grid-column: 1 / -1; justify-content: center; text-align: center; }
}
.tl-body__icon { display: none; }
@media (min-width: 760px) { .timeline--split .tl-body__icon { display: block; } }

/* ---------- Maç detayı başlığı ---------- */
.match-head { background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; }
.match-head .wrap { position: relative; z-index: 1; padding-top: 22px; padding-bottom: 26px; }
.match-head__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; align-items: center; font-family: var(--f-display); font-weight: 600; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--on-ink-2); }
.match-head__top a { color: var(--on-ink-2); }
.match-head__top a:hover { color: #fff; }
.match-head__foot { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-top: 14px; color: var(--on-ink-2); font-size: 14px; }
.match-head__foot span, .match-head__foot a { display: inline-flex; gap: 6px; align-items: center; }
.match-head__foot a:hover { color: #fff; }
.scorers { display: grid; grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr); gap: 8px; font-size: 13.5px; color: #d6d8dc; margin-top: 4px; }
.scorers ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 3px; }
.scorers li { display: flex; gap: 6px; align-items: center; }
.scorers .home li { justify-content: flex-end; text-align: right; }
.scorers .ev-icon { width: 13px; height: 13px; }
.scorers-mid { display: grid; place-items: start center; }
.scorers-mid .ev-icon { width: 15px; height: 15px; opacity: .8; }

.info-list { margin: 0; display: grid; grid-template-columns: auto 1fr; font-size: 14.5px; }
.info-list dt { color: var(--muted); padding: 8px 12px 8px 0; border-bottom: 1px solid var(--line); }
.info-list dd { margin: 0; padding: 8px 0; border-bottom: 1px solid var(--line); text-align: right; font-weight: 600; }
.info-list dd small { display: block; font-weight: 500; color: var(--muted); }
.info-list > :nth-last-child(-n+2) { border-bottom: 0; }

.h2h-bar { display: flex; height: 8px; border-radius: 4px; overflow: hidden; background: #e9e7e1; margin: 10px 0 6px; }
.h2h-bar .w1 { background: var(--ink); } .h2h-bar .d { background: var(--draw); } .h2h-bar .w2 { background: var(--red); }
.h2h-legend { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-2); }
.h2h-legend b { font-family: var(--f-display); font-size: 20px; color: var(--text); display: block; }

.motm { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--ink); color: #fff; }
.motm:hover { color: #fff; background: var(--ink-2); }
.motm__label { font-family: var(--f-display); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--card-yellow); display: flex; align-items: center; gap: 6px; }
.motm__name { font-family: var(--f-display); font-weight: 800; font-size: 22px; text-transform: uppercase; line-height: 1.05; }
.motm__team { font-size: 13px; color: var(--on-ink-2); }

.video-frame { position: relative; aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery a { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #ddd; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery a:hover img { transform: scale(1.04); }

/* ---------- Takım & oyuncu başlıkları ---------- */
.profile-head { background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; }
.profile-head__stripe { position: absolute; inset: 0 0 0 auto; width: 46%; background: var(--team-color, var(--red)); clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%); opacity: .9; }
.profile-head__stripe::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, transparent 0 18px, rgba(0,0,0,.08) 18px 36px); }
.profile-head .wrap { position: relative; z-index: 1; padding-top: 28px; padding-bottom: 28px; display: flex; gap: 22px; align-items: center; }
.profile-head__crest { flex: none; width: 92px; height: 92px; display: grid; place-items: center; background: #fff; border-radius: 50%; padding: 10px; box-shadow: 0 6px 18px rgba(0,0,0,.35); }
.profile-head__crest .crest { width: 100%; height: 100%; }
.profile-head__crest .crest--mono { width: 72px !important; height: 72px !important; font-size: 24px !important; }
.profile-head__photo { flex: none; width: 116px; height: 140px; background: var(--ink-3); overflow: hidden; border-bottom: 4px solid var(--red); }
.profile-head__photo img, .profile-head__photo .avatar { width: 100% !important; height: 100% !important; border-radius: 0; object-fit: cover; object-position: center 18%; }
.profile-head__photo .avatar--mono { font-size: 40px !important; background: var(--ink-3); color: var(--on-ink-2); }
.profile-head__num { font-family: var(--f-display); font-weight: 800; font-size: 64px; line-height: .8; color: rgba(255,255,255,.18); }
.profile-head__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(30px, 5vw, 54px); text-transform: uppercase; line-height: .95; margin-top: 6px; }
.profile-head__meta { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 10px; color: var(--on-ink-2); font-size: 14.5px; }
.profile-head__meta span, .profile-head__meta a { display: inline-flex; align-items: center; gap: 6px; }
.profile-head__meta a:hover { color: #fff; }
@media (min-width: 760px) {
  .profile-head__crest { width: 132px; height: 132px; padding: 14px; }
  .profile-head__crest .crest--mono { width: 104px !important; height: 104px !important; font-size: 34px !important; }
  .profile-head__photo { width: 170px; height: 204px; }
}

.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 760px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact { background: var(--card); padding: 12px 14px; }
.fact span { display: block; font-family: var(--f-display); font-weight: 600; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.fact b { display: block; font-weight: 700; font-size: 16px; margin-top: 3px; }

.squad-group + .squad-group { margin-top: 28px; }
.squad-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .squad-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .squad-grid { grid-template-columns: repeat(4, 1fr); } }
.pcard { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); color: var(--text); position: relative; overflow: hidden; }
.pcard:hover { color: var(--text); border-color: var(--ink); }
.pcard__photo { aspect-ratio: 5 / 6; background: #e6e3dc; position: relative; overflow: hidden; }
.pcard__photo img, .pcard__photo .avatar { width: 100% !important; height: 100% !important; border-radius: 0; object-fit: cover; object-position: center 18%; }
.pcard__photo .avatar--mono { font-size: 46px !important; color: #b3aea3; background: #ebe8e1; }
.pcard__num { position: absolute; left: 10px; top: 6px; font-family: var(--f-display); font-weight: 800; font-size: 38px; line-height: 1; color: var(--ink); text-shadow: 0 1px 0 rgba(255,255,255,.6); }
.pcard__body { padding: 10px 12px 12px; border-top: 3px solid var(--team-color, var(--ink)); }
.pcard__name { font-family: var(--f-display); font-weight: 700; font-size: 19px; line-height: 1.05; text-transform: uppercase; }
.pcard__first { display: block; font-size: 14px; font-weight: 600; text-transform: none; color: var(--text-2); font-family: var(--f-body); margin-bottom: 1px; }
.pcard__meta { font-size: 13px; color: var(--muted); margin-top: 4px; display: flex; gap: 10px; }
.pcard__cap { position: absolute; right: 8px; top: 8px; width: 20px; height: 20px; }

.team-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 20px 14px 16px; background: var(--card); border: 1px solid var(--line); border-top: 4px solid var(--team-color, var(--ink)); color: var(--text); height: 100%; }
.team-card:hover { color: var(--text); border-color: var(--ink); border-top-color: var(--team-color, var(--ink)); }
.team-card .crest { width: 72px; height: 72px; }
.team-card .crest--mono { font-size: 24px !important; }
.team-card__name { font-family: var(--f-display); font-weight: 800; font-size: 20px; text-transform: uppercase; line-height: 1.05; }
.team-card__meta { font-size: 13px; color: var(--muted); }

/* ---------- Haftanın 11'i ---------- */
.totw { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 960px) { .totw { grid-template-columns: minmax(0, 1fr) 340px; } }
.totw .pitch { max-width: 560px; }

/* ---------- Sponsorlar ---------- */
.sponsor-main { display: grid; grid-template-columns: 1fr; gap: 0; background: var(--card); border: 1px solid var(--line); overflow: hidden; }
@media (min-width: 760px) { .sponsor-main { grid-template-columns: 300px 1fr; } }
.sponsor-main__label { background: var(--ink); color: #fff; padding: 22px; display: flex; flex-direction: column; justify-content: center; }
.sponsor-main__label small { font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--red); }
.sponsor-main__label b { font-family: var(--f-display); font-weight: 800; font-size: 30px; text-transform: uppercase; line-height: 1; margin-top: 6px; }
.sponsor-main__logo { display: grid; place-items: center; padding: 28px; min-height: 170px; }
.sponsor-main__logo img { max-height: 120px; width: auto; max-width: 100%; }
.sponsor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 640px) { .sponsor-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .sponsor-grid { grid-template-columns: repeat(5, 1fr); } }
.sponsor-tile { background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 18px 14px; min-height: 150px; color: var(--text); text-align: center; }
.sponsor-tile img { max-height: 84px; max-width: 100%; width: auto; object-fit: contain; }
.sponsor-tile span { font-size: 13px; font-weight: 600; color: var(--muted); line-height: 1.25; }
.sponsor-tile:hover span { color: var(--red); }
.sponsor-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sponsor-strip .wrap { padding-top: 22px; padding-bottom: 22px; }
.sponsor-strip__main { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.sponsor-strip__main small { font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.sponsor-strip__main img { height: 58px; width: auto; }
.sponsor-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.sponsor-marquee__track { display: flex; gap: 34px; align-items: center; width: max-content; animation: marquee 60s linear infinite; }
.sponsor-marquee:hover .sponsor-marquee__track, .sponsor-marquee:focus-within .sponsor-marquee__track { animation-play-state: paused; }
.sponsor-marquee__track a { flex: none; display: grid; place-items: center; height: 58px; }
.sponsor-marquee__track img { max-height: 54px; max-width: 150px; width: auto; filter: grayscale(1); opacity: .75; transition: filter .2s, opacity .2s; }
.sponsor-marquee__track a:hover img { filter: none; opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* Cihazda "animasyonları azalt" açıksa şerit durmaz, üç kat yavaş akar (üzerine gelince / odakta durur) */
@media (prefers-reduced-motion: reduce) { .sponsor-marquee__track { animation-duration: 180s; } }

/* ---------- Yönetim kurulu ---------- */
.board-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 760px) { .board-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.person { background: var(--card); border: 1px solid var(--line); display: flex; flex-direction: column; }
.person__photo { aspect-ratio: 4 / 5; background: #e6e3dc; overflow: hidden; position: relative; }
.person__photo img, .person__photo .avatar { width: 100% !important; height: 100% !important; border-radius: 0; object-fit: cover; object-position: center 20%; }
.person__photo .avatar--mono { font-size: 52px !important; color: #aca698; background: linear-gradient(160deg, #ece9e2, #dedad1); }
.person__body { padding: 12px 14px 16px; border-top: 3px solid var(--red); }
.person__name { font-family: var(--f-display); font-weight: 800; font-size: 21px; text-transform: uppercase; line-height: 1.05; }
.person__title { font-size: 14px; color: var(--text-2); margin-top: 4px; }
.person__contact { font-size: 13.5px; margin-top: 8px; display: grid; gap: 3px; }
.person__contact a { display: inline-flex; align-items: center; gap: 6px; color: var(--text-2); }
.person__contact a:hover { color: var(--red); }
.person--lead { grid-column: span 2; }
@media (min-width: 760px) { .person--lead { grid-column: span 1; } }

/* ---------- Belgeler ---------- */
.doc-list { list-style: none; margin: 0; padding: 0; background: var(--card); border: 1px solid var(--line); }
.doc-list li + li { border-top: 1px solid var(--line); }
.doc { display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 14px 16px; color: var(--text); }
.doc:hover { background: #faf9f6; color: var(--text); }
.doc__ext { display: grid; place-items: center; width: 44px; height: 52px; background: var(--ink); color: #fff; font-family: var(--f-display); font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; clip-path: polygon(0 0, 72% 0, 100% 22%, 100% 100%, 0 100%); }
.doc__ext.pdf { background: #b71c1c; } .doc__ext.doc, .doc__ext.docx { background: #1f4e9c; } .doc__ext.xls, .doc__ext.xlsx { background: #1d6b3c; } .doc__ext.html { background: var(--ink-3); }
.doc__title { font-weight: 700; font-size: 16px; line-height: 1.25; }
.doc:hover .doc__title { color: var(--red); }
.doc__meta { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ---------- Zengin metin ---------- */
.prose { font-size: 17px; line-height: 1.7; color: #22252a; max-width: 760px; }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-family: var(--f-display); font-weight: 800; font-size: 30px; text-transform: uppercase; line-height: 1.05; margin: 1.6em 0 .5em; padding-bottom: 6px; border-bottom: 2px solid var(--ink); }
.prose h3 { font-family: var(--f-display); font-weight: 700; font-size: 23px; line-height: 1.15; margin: 1.4em 0 .4em; }
.prose h4 { font-size: 18px; margin: 1.2em 0 .4em; }
.prose p { margin: 0 0 1.05em; }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.1em; }
.prose li { margin: .3em 0; }
.prose li::marker { color: var(--red); font-weight: 700; }
.prose blockquote { margin: 1.4em 0; padding: 4px 0 4px 20px; border-left: 4px solid var(--red); font-size: 19px; font-style: italic; color: var(--text-2); }
.prose img { margin: 1.4em 0; }
.prose iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; margin: 1.2em 0; }
.prose table { margin: 1.2em 0; font-size: 15px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }
.prose th { background: #f7f6f2; }
.prose hr { border: 0; border-top: 1px solid var(--line-2); margin: 2em 0; }
.prose .ql-align-center { text-align: center; }
.prose .ql-align-right { text-align: right; }
.prose--wide { max-width: none; }

.article-head { max-width: 860px; }
.article-cover { margin: 0 0 26px; background: #e7e4dd; }
.article-cover img { width: 100%; max-height: 520px; object-fit: cover; }
.share { display: flex; gap: 8px; align-items: center; font-size: 14px; color: var(--muted); }
.share a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line-2); border-radius: 50%; color: var(--text-2); }
.share a:hover { border-color: var(--ink); color: var(--text); }

/* ---------- Formlar ---------- */
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } .form-grid .span-2 { grid-column: 1 / -1; } }
.field label { display: block; font-family: var(--f-display); font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-2); margin-bottom: 6px; }
.field .req { color: var(--red); }
.input, .textarea {
  width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--line-2); border-radius: var(--r); background: #fff; font-size: 16px;
}
.textarea { min-height: 160px; resize: vertical; line-height: 1.5; }
.input:focus, .textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(18,20,23,.08); }
.field-error { color: var(--red); font-size: 13.5px; margin-top: 5px; font-weight: 600; }
.input-validation-error { border-color: var(--red) !important; }
.field-validation-error { color: var(--red); font-size: 13.5px; font-weight: 600; display: block; margin-top: 5px; }
.validation-summary-errors ul { margin: 0; padding-left: 18px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-2); }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); }

/* ---------- Uyarılar & boş durumlar ---------- */
.alert { padding: 14px 16px; border-left: 4px solid var(--ink); background: var(--card); font-size: 15px; }
.alert--ok { border-color: var(--win); background: #eaf6ef; }
.alert--err { border-color: var(--red); background: var(--red-soft); }
.alert--info { border-color: var(--blue); background: #edf2fb; }
.empty { background: var(--card); border: 1px dashed var(--line-2); padding: 36px 20px; text-align: center; color: var(--muted); }
.empty__icon { width: 34px; height: 34px; margin: 0 auto 10px; color: var(--line-2); }
.empty b { display: block; color: var(--text); font-family: var(--f-display); font-weight: 700; font-size: 20px; text-transform: uppercase; margin-bottom: 4px; }
.empty--dark { background: transparent; border-color: var(--ink-3); color: var(--on-ink-2); }
.empty--dark b { color: #fff; }

.pager { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 28px; }
.pager a, .pager span { min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0 10px; border: 1px solid var(--line-2); background: var(--card); font-family: var(--f-display); font-weight: 700; font-size: 16px; }
.pager a:hover { border-color: var(--ink); color: var(--text); }
.pager .is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pager .is-disabled { opacity: .4; }

/* ---------- Onur kürsüsü (ödüller) ---------- */
.honor-season { margin-bottom: 34px; }
.honor-season__title { font-family: var(--f-display); font-weight: 800; font-size: 34px; line-height: 1; display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.honor-season__title small { font-size: 14px; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; font-weight: 700; }
.podium { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .podium { grid-template-columns: repeat(3, 1fr); } }
.honor { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 14px; align-items: center; background: var(--card); border: 1px solid var(--line); padding: 14px; color: var(--text); position: relative; }
.honor:hover { color: var(--text); border-color: var(--ink); }
.honor__medal { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; font-family: var(--f-display); font-weight: 800; font-size: 26px; color: #fff; background: var(--ink-3); }
.honor__medal .icon { width: 28px; height: 28px; }
.honor--1 .honor__medal { background: #c9a227; } .honor--2 .honor__medal { background: #9aa3ad; } .honor--3 .honor__medal { background: #b06f3b; }
.honor--1 { border-top: 4px solid #c9a227; } .honor--2 { border-top: 4px solid #9aa3ad; } .honor--3 { border-top: 4px solid #b06f3b; }
.honor__title { font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.honor__name { font-family: var(--f-display); font-weight: 800; font-size: 22px; text-transform: uppercase; line-height: 1.05; margin-top: 2px; display: flex; align-items: center; gap: 8px; }
.honor__name .crest { width: 26px; height: 26px; }
.honor__comp { font-size: 13.5px; color: var(--text-2); margin-top: 3px; }

/* ---------- Alt bilgi ---------- */
.footer { background: var(--ink); color: var(--on-ink-2); font-size: 14.5px; margin-top: 0; }
.footer__top { display: grid; gap: 30px; grid-template-columns: 1fr; padding-top: 44px; padding-bottom: 34px; }
@media (min-width: 760px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer h4 { font-family: var(--f-display); font-weight: 700; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { color: var(--on-ink-2); }
.footer a:hover { color: #fff; }
.footer__about { max-width: 360px; margin-top: 14px; line-height: 1.6; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact .icon { margin-top: 3px; color: var(--red); }
.footer__bottom { border-top: 1px solid var(--ink-3); }
.footer__bottom .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 16px; padding-bottom: 18px; font-size: 13px; }
.footer .social a { border: 1px solid var(--ink-3); width: 38px; height: 38px; }
.footer .social a:hover { border-color: var(--on-ink-2); }

/* ---------- Canlı yayın kutusu ---------- */
.live-cta { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--red); color: #fff; }
.live-cta:hover { background: var(--red-2); color: #fff; }
.live-cta__icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--red); flex: none; }
.live-cta__icon .icon { width: 18px; height: 18px; margin-left: 2px; }
.live-cta b { display: block; font-family: var(--f-display); font-weight: 800; font-size: 20px; text-transform: uppercase; line-height: 1; }
.live-cta small { display: block; font-size: 13px; opacity: .9; margin-top: 3px; }

/* ---------- Yardımcı ---------- */
.divider { height: 1px; background: var(--line); margin: 24px 0; }
.nowrap { white-space: nowrap; }
.link { color: var(--red); font-weight: 600; }
.link:hover { text-decoration: underline; }
.dot-sep > * + *::before { content: "·"; margin: 0 6px; color: var(--muted); }
.ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card-link-list { list-style: none; margin: 0; padding: 0; background: var(--card); border: 1px solid var(--line); }
.card-link-list a { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--line); font-weight: 600; }
.card-link-list li:last-child a { border-bottom: 0; }
.card-link-list a:hover { background: #faf9f6; }
.susp-count { display: inline-grid; place-items: center; min-width: 24px; height: 24px; padding: 0 6px; background: var(--red); color: #fff; font-family: var(--f-display); font-weight: 800; font-size: 14px; border-radius: 12px; }

@media print {
  .topbar, .masthead, .ticker, .footer, .sponsor-strip, .subnav, .burger { display: none !important; }
  body { background: #fff; }
}

/* ---------- Mobil alt menü ---------- */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--ink); border-top: 1px solid var(--ink-3); padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav a, .bottom-nav button {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-height: 58px;
  background: none; border: 0; color: var(--on-ink-2); font-family: var(--f-display); font-weight: 600; font-size: 12px; letter-spacing: .05em; text-transform: uppercase;
}
.bottom-nav .icon { width: 21px; height: 21px; }
.bottom-nav a.is-active { color: #fff; box-shadow: inset 0 3px 0 var(--red); }
.bottom-nav a:hover, .bottom-nav button:hover { color: #fff; }
body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
@media (min-width: 1100px) {
  .bottom-nav { display: none; }
  body { padding-bottom: 0; }
}

/* Puan tablosu: mobilde isteğe bağlı sütunlar */
.standings .opt { display: none; }
.is-full .standings .opt { display: table-cell; }
@media (min-width: 760px) { .standings .opt { display: table-cell; } }
@media (max-width: 1099px) { .standings .hide-md-down { display: none !important; } }
.tl-row--decisive .tl-score { background: var(--red); }
.tl-row--decisive .tl-min { color: var(--red); }

/* Takım karşılaştırma çubukları */
.compare { display: grid; gap: 12px; }
.compare__row { display: grid; grid-template-columns: 32px 1fr 32px; gap: 4px 8px; align-items: center; }
.compare__label { text-align: center; font-family: var(--f-display); font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-2); }
.compare__row .num { font-family: var(--f-display); font-size: 18px; }
.compare__bar { grid-column: 1 / -1; display: flex; gap: 3px; height: 6px; }
.compare__bar i { display: block; background: var(--ink); min-width: 0; border-radius: 1px; }
.compare__bar i + i { background: var(--red); }

.tl-row--sub .tl-body__icon { display: none !important; }

/* Ana sayfa: lig hakkında tanıtımı */
.about-teaser__lead { font-size: 18px; line-height: 1.55; color: var(--text); max-width: 680px; }
.about-teaser__board { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-top: 16px; }
.about-teaser__person { display: flex; align-items: center; gap: 10px; color: var(--text); }
.about-teaser__person b { display: block; font-weight: 700; line-height: 1.2; }
.about-teaser__person small { display: block; font-size: 13px; color: var(--muted); line-height: 1.3; }
.about-teaser__person:hover b { color: var(--red); }

/* Not satırı (tarafsız olay): dakika üstte, metin altında ortalı */
@media (min-width: 760px) {
  .timeline--split .tl-row.is-neutral { grid-template-columns: 1fr; row-gap: 2px; }
  .timeline--split .tl-row.is-neutral .tl-min { grid-column: 1; grid-row: 1; text-align: center; }
  .timeline--split .tl-row.is-neutral .tl-body { grid-column: 1; grid-row: 2; }
}

/* Liste bileşenleri .stack içindeki aralığı korusun */
.stack > .card-link-list, .stack > .leaders { margin-top: 24px; }
.stack > .card-link-list:first-child, .stack > .leaders:first-child { margin-top: 0; }

/* ---------- Belge önizleme penceresi (lightbox) ---------- */
.lightbox { width: min(1120px, 96vw); height: min(92vh, 1040px); max-width: none; max-height: none; padding: 0; border: 0; background: var(--ink); color: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox[open] { display: flex; flex-direction: column; }
.lightbox::backdrop { background: rgba(8, 9, 11, .84); }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 10px 10px 16px; border-bottom: 3px solid var(--red); flex: none; }
.lightbox__title { font-family: var(--f-display); font-weight: 700; font-size: 18px; letter-spacing: .03em; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.lightbox__actions { display: flex; align-items: center; gap: 8px; flex: none; }
.lightbox__close { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--ink-4); background: transparent; color: #fff; border-radius: var(--r); }
.lightbox__close:hover { border-color: var(--on-ink-2); }
.lightbox__body { flex: 1; min-height: 0; background: #2b2f36; display: flex; align-items: center; justify-content: center; overflow: auto; }
.lightbox__body iframe { width: 100%; height: 100%; border: 0; background: #fff; }
.lightbox__body img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox__msg { max-width: 460px; padding: 30px 22px; text-align: center; color: var(--on-ink-2); line-height: 1.6; }
.lightbox__msg b { display: block; font-family: var(--f-display); font-size: 24px; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
@media (max-width: 640px) {
  .lightbox { width: 100vw; height: 100dvh; max-height: 100dvh; }
  .lightbox__title { font-size: 15px; }
}
