/* ==========================================================================
   TURAN FK — Stil Sistemi
   1. Token'lar  2. Base  3. Layout  4. Bileşenler  5. Header/Footer
   6. Sayfa bölümleri  7. Responsive  8. Print / Motion
   ========================================================================== */

/* 1. TOKEN'LAR ----------------------------------------------------------- */
:root {
  color-scheme: dark;

  --navy-950: #020914;
  --navy-900: #040f22;
  --navy-800: #08172f;
  --navy-700: #0e2246;
  --navy-600: #163264;

  --blue-500: #1a6dff;
  --blue-400: #3d8bff;
  --blue-300: #6ea9ff;
  --cyan-400: #38b6ff;
  --gold:     #f0c060;

  --ink:   #f4f7fc;
  --ink-2: #c3cfe3;
  --muted: #8a9bb8;
  --line:  rgba(120, 160, 230, .18);
  --line-strong: rgba(120, 160, 230, .34);

  --bg: var(--navy-950);
  --surface: var(--navy-900);
  --surface-2: var(--navy-800);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --fs-hero: clamp(3.4rem, 9vw, 7.5rem);
  --fs-h1:   clamp(2.6rem, 6vw, 4.8rem);
  --fs-h2:   clamp(2.2rem, 4.5vw, 3.8rem);
  --fs-h3:   clamp(1.35rem, 2vw, 1.75rem);
  --fs-lead: clamp(1.05rem, 1.4vw, 1.2rem);

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
  --wrap: min(1240px, 100% - 48px);
  --header-h: 84px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* 2. BASE ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding-left: 1.25em; }
strong { font-weight: 700; }
:focus-visible { outline: 2px solid var(--cyan-400); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.05; }
h4 { font-size: 1.15rem; font-weight: 600; line-height: 1.1; }
h2 .accent, h1 .accent { color: var(--blue-400); }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--blue-500); color: #fff; padding: 10px 16px; border-radius: var(--radius);
  font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* 3. LAYOUT -------------------------------------------------------------- */
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding-block: clamp(72px, 9vw, 120px); }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }
.section-alt { background: var(--surface); border-block: 1px solid var(--line); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.section-head h2 { margin-top: 10px; }
.section-head .more { flex-shrink: 0; padding-bottom: 6px; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-300);
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--blue-500); }
.kicker.no-line::before { display: none; }

.lead { font-size: var(--fs-lead); color: var(--ink-2); max-width: 62ch; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.eyebrow-num { font-family: var(--font-display); font-weight: 600; color: var(--muted); letter-spacing: .08em; font-size: .9rem; }

/* 4. BİLEŞENLER ---------------------------------------------------------- */
/* Butonlar */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: .06em;
  text-transform: uppercase; line-height: 1;
  padding: 15px 26px; border-radius: var(--radius); border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, var(--blue-500), #2b86ff); color: #fff; }
.btn-primary:hover { background: linear-gradient(135deg, #2b7cff, #3f95ff); }
.btn-outline { border-color: var(--line-strong); color: var(--ink); background: rgba(8, 23, 47, .35); }
.btn-outline:hover { border-color: var(--blue-400); background: rgba(26, 109, 255, .1); }
.btn-ghost { color: var(--blue-300); padding-inline: 4px; }
.btn-ghost:hover { color: var(--cyan-400); transform: none; }
.btn-sm { padding: 11px 18px; font-size: .95rem; }
.btn-lg { padding: 18px 34px; font-size: 1.15rem; }

/* Metin linki */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--blue-300);
  transition: color .2s, gap .2s;
}
.link-arrow svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.link-arrow:hover { color: var(--cyan-400); gap: 12px; }

/* Etiketler */
.tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 3px; background: rgba(26, 109, 255, .16); color: var(--blue-300);
  border: 1px solid rgba(61, 139, 255, .3);
}
.tag-gold { background: rgba(240, 192, 96, .12); color: var(--gold); border-color: rgba(240, 192, 96, .35); }
.tag-neutral { background: rgba(138, 155, 184, .12); color: var(--ink-2); border-color: var(--line); }
.tag-live { background: rgba(56, 182, 255, .14); color: var(--cyan-400); border-color: rgba(56, 182, 255, .4); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; background: var(--blue-500); color: #fff;
}

/* Kart */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-800); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card-media.contain img { object-fit: contain; padding: 14%; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-meta { display: flex; align-items: center; gap: 12px; font-size: .8rem; color: var(--muted); }
.card-body h3 { text-transform: none; font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; line-height: 1.3; letter-spacing: 0; }
.card-body p { color: var(--ink-2); font-size: .95rem; }
.card-body .link-arrow, .card-body .btn { margin-top: auto; align-self: flex-start; }
.card-body > .tag { align-self: flex-start; }

/* Featured haber kartı */
.card-featured { grid-row: span 2; }
.card-featured .card-media { aspect-ratio: 16 / 10; flex: 0 0 auto; }
.card-featured .card-body { flex: 0 0 auto; }
.card-featured .card-body h3 { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.3rem); text-transform: uppercase; line-height: 1; letter-spacing: .005em; }

/* Kişi kartı */
.person-card { text-align: left; }
.person-photo {
  aspect-ratio: 4 / 5; background: var(--navy-800); overflow: hidden; position: relative;
  display: grid; place-items: center;
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.person-photo .placeholder {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(4rem, 8vw, 6.5rem); color: var(--blue-400); opacity: .75;
  position: relative; z-index: 1;
}
.person-photo .watermark { position: absolute; inset: 0; opacity: .08; object-fit: contain; padding: 18%; filter: grayscale(1); }
.person-card .card-body h3 { font-size: 1.5rem; }
.person-card .role { color: var(--blue-300); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

/* Duyuru */
.notice {
  display: grid; grid-template-columns: 160px 1fr; gap: 28px;
  padding: 32px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.notice + .notice { margin-top: 16px; }
.notice-meta { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.notice-date { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink-2); line-height: 1.1; }
.notice h3 { text-transform: none; font-family: var(--font-body); font-weight: 700; font-size: 1.25rem; margin-bottom: 12px; letter-spacing: 0; }
.notice p { color: var(--ink-2); }
.notice .signature { margin-top: 16px; font-size: .85rem; color: var(--muted); font-weight: 600; }
.notice-compact { padding: 22px 26px; grid-template-columns: 120px 1fr auto; align-items: center; }
.notice-compact h3 { margin: 0; font-size: 1.05rem; }

/* Fikstür satırı */
.fixture-list { display: flex; flex-direction: column; gap: 12px; }
.fixture-row {
  display: grid; grid-template-columns: 130px 1fr auto 1fr 180px; align-items: center; gap: 20px;
  padding: 20px 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: border-color .2s, background .2s;
}
.fixture-row:hover { border-color: var(--line-strong); background: var(--surface-2); }
.fixture-row.is-tba { opacity: .72; }
.fixture-date { display: flex; flex-direction: column; line-height: 1.2; }
.fixture-date strong { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.fixture-date span { font-size: .78rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.fixture-team { display: flex; align-items: center; gap: 14px; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; text-transform: uppercase; }
.fixture-team.right { justify-content: flex-end; text-align: right; }
.fixture-team .crest, .team .crest { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; background: var(--navy-700); border: 1px solid var(--line-strong); font-size: .8rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-2); font-family: var(--font-body); }
.fixture-team .crest img, .team .crest img { width: 34px; height: 34px; object-fit: contain; }
.fixture-score {
  font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; line-height: 1; letter-spacing: .04em;
  min-width: 96px; text-align: center; padding: 10px 14px; border-radius: var(--radius); background: var(--navy-800);
  border: 1px solid var(--line);
}
.fixture-score.vs { font-size: 1.1rem; color: var(--muted); font-weight: 600; }
.fixture-info { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; text-align: right; }
.fixture-info .venue { font-size: .78rem; color: var(--muted); line-height: 1.3; }
.fixture-info .link-arrow { white-space: nowrap; font-size: .9rem; }
.fixture-list .fixture-scorers { grid-column: 1 / -1; font-size: .85rem; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 12px; margin-top: -6px; }

/* Sekmeler / Filtre chipleri */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tab {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-2);
  transition: all .2s;
}
.tab:hover { border-color: var(--line-strong); color: var(--ink); }
.tab[aria-selected="true"], .tab.is-active { background: var(--blue-500); border-color: var(--blue-500); color: #fff; }

/* İstatistik şeridi */
.stat-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 36px; }
.stat-strip div { background: var(--surface); padding: 20px 12px; text-align: center; }
.stat-strip strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2rem; line-height: 1; }
.stat-strip span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; opacity: .6; }

/* Prose (tüzük, haber, başkan) */
.prose { max-width: 72ch; color: var(--ink-2); font-size: 1.04rem; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--ink); margin-top: 2.2em; padding-top: 1.4em; border-top: 1px solid var(--line); }
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h2 small { display: block; font-family: var(--font-body); font-size: .72rem; letter-spacing: .16em; color: var(--blue-300); margin-bottom: 8px; font-weight: 600; }
.prose h3 { font-family: var(--font-body); text-transform: none; font-weight: 700; font-size: 1.2rem; color: var(--ink); margin-top: 1.8em; letter-spacing: 0; line-height: 1.3; }
.prose h3 .num { color: var(--blue-300); margin-right: 8px; font-weight: 700; }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li + li { margin-top: .4em; }
.prose li::marker { color: var(--blue-300); }
.prose blockquote {
  margin: 1.6em 0; padding: 22px 28px; border-left: 3px solid var(--blue-500);
  background: var(--surface); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; text-transform: uppercase; color: var(--ink); line-height: 1.1;
}
.prose .lead-p { font-size: 1.15rem; color: var(--ink); }
.prose figure { margin: 2em 0; }
.prose figure img { border-radius: var(--radius-lg); }
.prose figcaption { font-size: .82rem; color: var(--muted); margin-top: 10px; }

/* Alıntı bloğu */
.quote-block {
  padding: 36px; background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); border: 1px solid var(--line); border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.quote-block::before { content: "“"; position: absolute; top: -30px; right: 16px; font-family: var(--font-display); font-size: 14rem; color: rgba(61, 139, 255, .12); line-height: 1; font-weight: 700; }
.quote-block blockquote { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 2.4vw, 2.1rem); text-transform: uppercase; line-height: 1.05; }
.quote-block cite { display: block; margin-top: 16px; font-style: normal; font-size: .85rem; color: var(--muted); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

/* Sosyal ikonlar */
.social-list { display: flex; gap: 10px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--ink-2); background: rgba(8, 23, 47, .5);
  transition: all .2s var(--ease);
}
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
.social-link:hover { background: var(--blue-500); border-color: var(--blue-500); color: #fff; transform: translateY(-3px); }
.social-link.is-placeholder { opacity: .55; }
.social-link.is-placeholder:hover { opacity: 1; }
.social-lg .social-link { width: 54px; height: 54px; }
.social-lg .social-link svg { width: 22px; height: 22px; }

/* Sayfa hero'su (alt sayfalar) */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 64px) 0 56px;
  background:
    radial-gradient(900px 400px at 85% 0%, rgba(26, 109, 255, .22), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--bg));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(120,160,230,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(120,160,230,.05) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent); pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { margin-top: 14px; }
.page-hero .lead { margin-top: 18px; }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 22px; font-size: .82rem; color: var(--muted); }
.page-hero-meta strong { color: var(--ink-2); font-weight: 600; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.page-hero-crest { position: absolute; right: -40px; bottom: -80px; width: clamp(220px, 28vw, 380px); opacity: .07; pointer-events: none; }

/* Boş durum */
.empty { padding: 48px; text-align: center; border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); color: var(--muted); }

/* 5. HEADER --------------------------------------------------------------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100; height: var(--header-h);
  transition: background .3s, border-color .3s, height .3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled, .site-header.is-solid { background: rgba(2, 9, 20, .92); border-bottom-color: var(--line); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: auto; }
.brand span { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: .04em; line-height: 1; text-transform: uppercase; }
.brand span em { font-style: normal; color: var(--blue-400); }
.brand small { display: block; font-family: var(--font-body); font-size: .62rem; letter-spacing: .2em; color: var(--muted); font-weight: 600; margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 14px; border-radius: var(--radius); color: var(--ink-2); transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: var(--ink); background: rgba(120, 160, 230, .08); }
.nav-link[aria-current="page"], li.is-current > .nav-link { color: var(--ink); box-shadow: inset 0 -2px 0 var(--blue-400); border-radius: var(--radius) var(--radius) 0 0; }
.nav-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.2; transition: transform .2s; }
.nav-link[aria-expanded="true"] svg { transform: rotate(180deg); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px;
  background: var(--navy-900); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: 8px;
  box-shadow: var(--shadow); list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .2s var(--ease);
}
.has-dropdown.is-open .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border-radius: var(--radius); color: var(--ink-2); font-weight: 500; font-size: .95rem;
}
.dropdown a small { font-size: .7rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.dropdown a:hover, .dropdown a[aria-current="page"] { background: rgba(26, 109, 255, .14); color: var(--ink); }
.nav-cta { margin-left: 12px; }

.menu-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: var(--radius); border: 1px solid var(--line-strong); }
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* FOOTER */
.footer { background: var(--navy-950); border-top: 1px solid var(--line); margin-top: clamp(72px, 9vw, 120px); position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-500), transparent); }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding: 72px 0 56px; }
.footer-brand img { width: 56px; }
.footer-main p { color: var(--muted); margin-top: 18px; max-width: 34ch; font-size: .95rem; }
.footer-col h4 { font-size: .78rem; font-family: var(--font-body); letter-spacing: .18em; color: var(--blue-300); margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink-2); transition: color .2s; font-size: .95rem; }
.footer-col a:hover { color: var(--ink); }
.footer-col .social-list { margin-top: 4px; flex-direction: row; }
.footer-col .handle { display: block; margin-top: 14px; font-size: .85rem; color: var(--muted); }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .78rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.footer-motto { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem, 9vw, 7rem); color: rgba(26, 109, 255, .08); text-transform: uppercase; line-height: .85; letter-spacing: .02em; pointer-events: none; user-select: none; text-align: center; padding: 0 0 8px; white-space: nowrap; overflow: hidden; }

/* 6. SAYFA BÖLÜMLERİ ------------------------------------------------------ */
/* Hero (ana sayfa) */
.hero {
  position: relative; min-height: min(860px, 100svh); display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: var(--header-h); overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 9, 20, .55) 0%, rgba(2, 9, 20, .25) 35%, rgba(2, 9, 20, .82) 75%, var(--bg) 100%),
    linear-gradient(90deg, rgba(2, 9, 20, .75) 0%, rgba(2, 9, 20, .2) 60%, transparent 100%);
}
.hero-grid { position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(120,160,230,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(120,160,230,.06) 1px, transparent 1px); background-size: 90px 90px; mask-image: radial-gradient(ellipse at 30% 50%, rgba(0,0,0,.8), transparent 70%); }
.hero-content { padding-block: clamp(40px, 6vw, 80px) 40px; }
.hero-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 22px; }
.hero-badges .kicker { color: var(--ink-2); }
.hero h1 { font-size: var(--fs-hero); max-width: 12ch; }
.hero h1 .line2 { display: block; color: var(--blue-400); }
.hero h1 .dot { color: var(--cyan-400); }
.hero .lead { margin-top: 24px; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-strip { position: relative; border-top: 1px solid var(--line); background: rgba(2, 9, 20, .65); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.hero-strip .wrap { display: grid; grid-template-columns: 1fr 1fr auto; gap: 0; align-items: stretch; }
.strip-item { padding: 20px 28px 20px 0; display: flex; flex-direction: column; justify-content: center; gap: 2px; border-right: 1px solid var(--line); }
.strip-item + .strip-item { padding-left: 28px; }
.strip-item:last-child { border-right: 0; padding-right: 0; padding-left: 28px; }
.strip-label { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; display: block; margin-bottom: 6px; }
.strip-match { display: flex; align-items: center; gap: 14px; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; text-transform: uppercase; line-height: 1; }
.strip-match .score { font-weight: 700; font-size: 1.5rem; padding: 6px 12px; border-radius: 4px; background: var(--navy-700); white-space: nowrap; }
.strip-match .score.vs { font-size: 1rem; color: var(--muted); background: transparent; border: 1px solid var(--line-strong); }
.strip-sub { font-size: .78rem; color: var(--muted); margin-top: 6px; }
.strip-scroll { display: flex; align-items: center; gap: 10px; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.strip-scroll svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; animation: nudge 1.8s infinite; }
@keyframes nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Maç merkezi */
.match-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; }
.match-card { padding: 36px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 28px; }
.match-card.result { background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); }
.match-card.next { border-style: dashed; border-color: var(--line-strong); }
.match-card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.match-card-head .meta { font-size: .8rem; color: var(--muted); }
.scoreboard { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.team { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.team .crest { width: 84px; height: 84px; font-size: 1.1rem; }
.team .crest img { width: 64px; height: 64px; }
.team strong { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .04em; line-height: 1.05; }
.score-big { text-align: center; }
.score-big strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(3.4rem, 6vw, 5rem); line-height: 1; letter-spacing: .02em; }
.score-big strong i { font-style: normal; color: var(--blue-400); margin: 0 6px; }
.score-big span { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.score-big .vs { font-size: 2rem; color: var(--muted); }
.match-card-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 20px; font-size: .85rem; color: var(--muted); }
.match-card-foot > span { display: inline-flex; align-items: center; gap: 8px; }
.match-card-foot > span svg { width: 15px; height: 15px; flex-shrink: 0; fill: none; stroke: var(--blue-300); stroke-width: 2; }
.match-card .scorers { font-size: .85rem; color: var(--ink-2); }
.match-card .scorers strong { color: var(--ink); font-weight: 600; }

/* Haber grid */
.news-grid { display: grid; grid-template-columns: 1.15fr 1fr; grid-auto-rows: auto; gap: 20px; }
.news-grid .card:not(.card-featured) { flex-direction: row; }
.news-grid .card:not(.card-featured) .card-media { width: 40%; aspect-ratio: auto; flex-shrink: 0; }
.news-grid-full { grid-template-columns: repeat(3, 1fr); }
.news-grid-full .card { flex-direction: column !important; }
.news-grid-full .card .card-media { width: 100% !important; aspect-ratio: 16/10 !important; }

/* Forma */
.kit-layout { display: grid; grid-template-columns: 1fr 1.1fr; grid-template-rows: auto auto; column-gap: clamp(32px, 6vw, 80px); row-gap: 8px; align-items: center; }
.kit-copy-top { grid-column: 1; grid-row: 1; align-self: end; }
.kit-copy-bottom { grid-column: 1; grid-row: 2; align-self: start; }
.kit-layout .kit-stage { grid-column: 2; grid-row: 1 / span 2; }
.kit-copy h2 { margin-top: 12px; }
.kit-copy .lead { margin-top: 18px; }
.kit-controls { display: inline-flex; gap: 6px; padding: 6px; background: var(--navy-800); border: 1px solid var(--line); border-radius: 999px; margin-top: 28px; }
.kit-view { font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; padding: 10px 20px; border-radius: 999px; color: var(--ink-2); transition: all .2s; }
.kit-view[aria-pressed="true"] { background: var(--blue-500); color: #fff; }
.kit-details { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.kit-details li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--line); }
.kit-details li:last-child { border-bottom: 1px solid var(--line); }
.kit-details .num { font-family: var(--font-display); font-weight: 600; color: var(--blue-300); font-size: 1rem; letter-spacing: .08em; min-width: 32px; }
.kit-details strong { display: block; font-weight: 700; }
.kit-details span { color: var(--muted); font-size: .9rem; }
.kit-actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.kit-stage { position: relative; aspect-ratio: 1; display: grid; place-items: center; border-radius: var(--radius-lg); overflow: hidden; background: radial-gradient(circle at 50% 40%, rgba(26, 109, 255, .28), transparent 62%), var(--navy-900); border: 1px solid var(--line); }
.kit-stage img { width: 88%; height: auto; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .55)); transition: opacity .3s, transform .5s var(--ease); }
.kit-stage img.is-switching { opacity: 0; transform: scale(.97); }
.kit-watermark { position: absolute; inset: auto -10px -30px auto; font-family: var(--font-display); font-weight: 700; font-size: 11rem; color: rgba(120, 160, 230, .06); line-height: 1; pointer-events: none; }
.kit-corner { position: absolute; top: 18px; left: 18px; }
.kit-corner-r { position: absolute; top: 18px; right: 18px; font-family: var(--font-display); font-weight: 600; letter-spacing: .1em; color: var(--muted); font-size: .9rem; }

/* Kulüp özeti */
.club-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.club-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.club-photo .photo { width: 100%; height: 100%; object-fit: cover; }
.club-photo .crest-badge { position: absolute; right: 20px; bottom: 20px; width: 96px; height: auto; padding: 12px; background: rgba(2, 9, 20, .8); border-radius: var(--radius-lg); border: 1px solid var(--line-strong); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.club-photo .caption { position: absolute; left: 20px; bottom: 20px; right: 130px; font-size: .78rem; color: var(--ink-2); text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.club-copy h2 { margin-top: 12px; }
.club-copy .lead { margin-top: 18px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.values div { padding: 20px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.values strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; text-transform: uppercase; line-height: 1; }
.values span { font-size: .82rem; color: var(--muted); display: block; margin-top: 8px; line-height: 1.4; }
.club-copy .quote-block { margin-top: 24px; }
.club-actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Duyuru şeridi (ana sayfa) */
.notice-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Taraftar CTA */
.fan-section { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 72px); text-align: center; isolation: isolate; border: 1px solid var(--line); }
.fan-section img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.fan-section::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(2, 9, 20, .82), rgba(4, 15, 34, .92)); }
.fan-section h2 { margin-top: 14px; }
.fan-section .lead { margin: 16px auto 0; }
.fan-section .actions { margin-top: 32px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 20px; }
.fan-section .social-list { justify-content: center; }

/* Başkan sayfası */
.president-layout { display: grid; grid-template-columns: 360px 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.president-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.president-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid var(--line); }
.president-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.fact-list { list-style: none; padding: 0; margin: 20px 0 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.fact-list li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 18px; background: var(--surface); font-size: .9rem; }
.fact-list li + li { border-top: 1px solid var(--line); }
.fact-list span { color: var(--muted); }
.fact-list strong { text-align: right; font-weight: 600; }
.triad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 2em 0; }
.triad div { padding: 24px 18px; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; text-transform: uppercase; }
.triad div:nth-child(2) { color: var(--blue-400); }
.slogan-band { margin-top: clamp(56px, 8vw, 96px); padding: clamp(40px, 6vw, 72px) 24px; text-align: center; background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); border-block: 1px solid var(--line); }
.slogan-band h2 { font-size: clamp(2.4rem, 6vw, 5rem); }
.slogan-band p { margin-top: 18px; color: var(--ink-2); font-weight: 600; letter-spacing: .04em; }

/* Yönetim */
.board-hero-card { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: center; padding: 28px; background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); margin-bottom: 40px; }
.board-hero-card .person-photo { border-radius: var(--radius); aspect-ratio: 4 / 5; }
.board-hero-card h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; margin-top: 8px; }
.board-hero-card p { color: var(--ink-2); margin-top: 14px; max-width: 56ch; }
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.duty-box { margin-top: 56px; padding: 36px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px; }
.duty-box ol { columns: 2; gap: 32px; color: var(--ink-2); font-size: .95rem; }
.duty-box li { break-inside: avoid; padding: 6px 0; }

/* Tüzük */
.tuzuk-layout { display: grid; grid-template-columns: 280px 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.toc { position: sticky; top: calc(var(--header-h) + 24px); max-height: calc(100vh - var(--header-h) - 48px); overflow: auto; padding: 8px 0; }
.toc h4 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .16em; color: var(--blue-300); margin-bottom: 14px; }
.toc ol { list-style: none; padding: 0; margin: 0; border-left: 1px solid var(--line); }
.toc a { display: block; padding: 8px 16px; font-size: .88rem; color: var(--muted); border-left: 2px solid transparent; margin-left: -1px; transition: all .2s; }
.toc a:hover { color: var(--ink); }
.toc a.is-active { color: var(--ink); border-left-color: var(--blue-400); background: linear-gradient(90deg, rgba(26,109,255,.12), transparent); }
.toc a small { display: block; font-size: .68rem; letter-spacing: .1em; opacity: .7; }
.toc summary { display: none; }
.toc summary svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s; }
.toc details[open] summary svg { transform: rotate(180deg); }
.signature-block { margin-top: 56px; padding: 36px; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); text-align: center; background: var(--surface); }
.signature-block .display { font-size: clamp(2rem, 4vw, 3.2rem); }
.signature-block p { margin-top: 14px; color: var(--ink-2); }
.signature-block .sig { margin-top: 24px; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; text-transform: uppercase; letter-spacing: .06em; }
.signature-block .sig small { display: block; font-family: var(--font-body); font-size: .78rem; letter-spacing: .14em; color: var(--muted); margin-top: 6px; }

/* Haber detay */
.article-hero { padding-top: calc(var(--header-h) + 48px); }
.article-head { max-width: 860px; }
.article-head h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin-top: 18px; }
.article-cover { margin: 40px 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 9; background: var(--navy-800); border: 1px solid var(--line); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-cover.contain img { object-fit: contain; padding: 8%; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: clamp(32px, 5vw, 72px); align-items: start; }
.article-side { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 24px; }
.share-box { padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.share-box h4 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .16em; color: var(--blue-300); margin-bottom: 14px; }
.share-box .social-list { gap: 8px; }
.side-fixture { padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.side-fixture .score-big strong { font-size: 2.4rem; white-space: nowrap; }
.side-fixture .team strong { font-size: 1rem; }
.side-fixture .team .crest { width: 60px; height: 60px; }
.side-fixture .team .crest img { width: 44px; height: 44px; }
.related { margin-top: clamp(56px, 8vw, 96px); }


/* Ek bileşenler (PHP sürümü) */
.pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 40px; }
.wrap-narrow { max-width: 960px; }
.prose-sm { font-size: .98rem; }
.prose-sm > * + * { margin-top: .8em; }
.article-lead { margin-top: 18px; }
.pill-dark { background: var(--navy-700); }
.copy-msg { display: block; margin-top: 10px; min-height: 1.2em; }
.error-hero { min-height: 70vh; display: flex; align-items: center; }
.maintenance { min-height: 100vh; display: grid; place-content: center; justify-items: center; text-align: center; gap: 16px; padding: 24px; }
.maintenance h1 { font-size: var(--fs-hero); }
.maintenance .accent { color: var(--blue-400); }
.side-fixture .scoreboard { margin-top: 16px; }
.side-fixture p { margin-top: 16px; }
.side-fixture .link-arrow { margin-top: 12px; }
.ink { color: var(--ink); font-weight: 600; }
.fixture-note { margin-top: 24px; }
.fixture-note a { color: var(--blue-300); }
.back-link { margin-top: 28px; }
.duty-prose h3 { margin-top: 0; }
.duty-prose ol { columns: 2; gap: 32px; }
.duty-box > div:first-child .link-arrow { margin-top: 16px; }
.notice .prose p { color: var(--ink-2); }
.tabs a.tab { text-decoration: none; }
.page-hero-actions .btn svg { width: 16px; height: 16px; }
@media (max-width: 900px) { .duty-prose ol { columns: 1; } }

/* 7. RESPONSIVE ----------------------------------------------------------- */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .fixture-row { grid-template-columns: 110px 1fr auto 1fr; }
  .fixture-info { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; text-align: left; border-top: 1px dashed var(--line); padding-top: 12px; }
  .board-grid, .news-grid-full { grid-template-columns: repeat(2, 1fr); }
  .president-layout { grid-template-columns: 300px 1fr; }
  .tuzuk-layout { grid-template-columns: 240px 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; --wrap: min(1240px, 100% - 32px); }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: var(--bg);
    flex-direction: column; align-items: stretch; padding: 24px 16px 40px; gap: 8px; overflow: auto;
    transform: translateX(100%); transition: transform .3s var(--ease); visibility: hidden;
  }
  .main-nav.is-open { transform: none; visibility: visible; }
  .site-header.is-menu-open { background: var(--bg); border-bottom-color: var(--line); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link { width: 100%; justify-content: space-between; font-size: 1.3rem; padding: 14px 12px; }
  .nav-link[aria-current="page"], li.is-current > .nav-link { box-shadow: inset 3px 0 0 var(--blue-400); border-radius: var(--radius); }
  .dropdown { position: static; min-width: 0; box-shadow: none; border: 0; background: transparent; padding: 0 0 8px 16px; display: none; opacity: 1; visibility: visible; transform: none; }
  .has-dropdown.is-open .dropdown { display: block; }
  .dropdown a { font-size: 1.05rem; }
  .nav-cta { margin: 16px 0 0; width: 100%; }

  .hero-strip .wrap { grid-template-columns: 1fr 1fr; }
  .strip-item:last-child { display: none; }
  .match-grid, .club-layout, .notice-strip, .article-layout, .board-hero-card, .duty-box { grid-template-columns: 1fr; }
  .kit-layout { grid-template-columns: 1fr; }
  .kit-copy-top, .kit-copy-bottom, .kit-layout .kit-stage { grid-column: auto; grid-row: auto; }
  .kit-layout .kit-stage { margin: 8px 0 4px; }
  .hero-media img { object-position: var(--hero-x, 50%) center; }
  .article-side { position: static; }
  .news-grid { grid-template-columns: 1fr; }
  .news-grid .card:not(.card-featured) { flex-direction: column; }
  .news-grid .card:not(.card-featured) .card-media { width: 100%; aspect-ratio: 16 / 10; }
  .card-featured .card-media { min-height: 260px; aspect-ratio: 16 / 10; }
  .president-layout { grid-template-columns: 1fr; }
  .president-aside { position: static; max-width: 420px; }
  .tuzuk-layout { grid-template-columns: 1fr; }
  .toc { position: static; max-height: none; padding: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
  .toc summary { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; cursor: pointer; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; list-style: none; }
  .toc summary::-webkit-details-marker { display: none; }
  .toc h4 { display: none; }
  .toc ol { border: 0; padding: 0 12px 12px; }
  .duty-box ol { columns: 1; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-motto { font-size: 18vw; }
}

@media (max-width: 600px) {
  :root { --wrap: min(1240px, 100% - 32px); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero { min-height: 100svh; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-strip .wrap { grid-template-columns: 1fr; }
  .strip-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 0 !important; }
  .strip-item:nth-child(2) { border-bottom: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 56px 0 40px; }
  .notice, .notice-compact { grid-template-columns: 1fr; gap: 14px; }
  .notice-meta { flex-direction: row; align-items: center; gap: 14px; }
  .fixture-row { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
  .fixture-team.right { justify-content: flex-start; text-align: left; }
  .fixture-score { justify-self: start; }
  .board-grid, .news-grid-full, .values, .triad { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .scoreboard { gap: 10px; }
  .team .crest { width: 64px; height: 64px; }
  .team .crest img { width: 48px; height: 48px; }
  .match-card { padding: 24px; }
  .brand small { display: none; }
  .page-hero { padding-top: calc(var(--header-h) + 40px); }
  .club-photo .caption { right: 20px; bottom: 120px; }
}

/* 8. PRINT / MOTION ------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
@media print {
  :root { color-scheme: light; }
  body { background: #fff; color: #111; font-size: 11pt; }
  .site-header, .footer, .toc, .skip-link, .page-hero::after, .page-hero-crest, .page-hero-actions, .btn { display: none !important; }
  .page-hero { padding: 0 0 20px; background: none; border-bottom: 2px solid #111; }
  .page-hero h1, .prose h2, .prose h3, .prose strong, .signature-block { color: #111; }
  .prose { max-width: none; color: #222; }
  .prose h2 { border-color: #ccc; }
  .prose blockquote { background: #f3f3f3; color: #111; }
  .signature-block { background: none; border-color: #ccc; }
  .tuzuk-layout { display: block; }
  a { color: inherit; }
}

/* v1.1 — Satın Al butonu */
.btn-buy svg { width: 18px; height: 18px; }
