/* ==========================================================================
   Kıraç Spor Kulübü - ziyaretçi teması
   Kulüp renkleri yalnızca aşağıdaki :root bloğundan değiştirilir.
   ========================================================================== */

@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 700 900;
    font-display: swap;
    src: url("../fonts/barlow-condensed-800-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
        U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
        U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 700 900;
    font-display: swap;
    src: url("../fonts/barlow-condensed-800-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
        U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
        U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    /* --- KULÜP RENKLERİ ---
       Kıraç Spor Kulübü armasından alınmıştır: kırmızı, siyah, beyaz.
       Ana kırmızı, arma görselinin baskın kırmızısıdır (#E01020). --- */
    --brand:            #e01020;
    --brand-dark:       #a80b18;
    --brand-light:      #ff3547;
    --accent:           #ff5a6e;
    --ink:              #0e0e11;
    --ink-soft:         #1a1a1f;

    /* --- Türetilmiş --- */
    --bg:               #ffffff;
    --bg-alt:           #f5f6fa;
    --text:             #1a1f2e;
    --text-muted:       #626b80;
    --line:             #e3e6ef;
    --white:            #ffffff;

    --radius:           14px;
    --radius-lg:        24px;
    --shadow:           0 4px 20px rgba(14, 14, 17, .08);
    --shadow-lg:        0 18px 50px rgba(14, 14, 17, .16);
    --container:        1200px;
    --header-h:         76px;

    --ease:             cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4 {
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    line-height: 1.05; margin: 0 0 .5em; font-weight: 800; letter-spacing: .005em;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

/* Klavye kullanıcıları için görünür odak halkası */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--ink); color: var(--white); padding: .8rem 1.4rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: var(--white); }

/* ---------------------------------------------------------------- Başlık */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(14, 14, 17, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: background .3s var(--ease);
}
.site-header.is-scrolled { background: rgba(14, 14, 17, .98); box-shadow: 0 8px 28px rgba(0, 0, 0, .22); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: .75rem; margin-right: auto; }
.brand img { height: 58px; width: 58px; object-fit: contain; filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .3)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { color: var(--white); font-weight: 900; font-size: 1.05rem; letter-spacing: -.01em; }
.brand-tagline { color: rgba(255, 255, 255, .55); font-size: .72rem; }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
    color: rgba(255, 255, 255, .82); font-weight: 600; font-size: .93rem;
    padding: .55rem .85rem; border-radius: 8px; position: relative;
}
.nav a:hover, .nav a.is-active { color: var(--white); background: rgba(255, 255, 255, .1); }
.nav a.is-active::after {
    content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .25rem;
    height: 2px; background: var(--brand-light); border-radius: 2px;
}

.nav-cta {
    background: var(--brand); color: var(--white) !important;
    padding: .6rem 1.25rem !important; border-radius: 999px; font-weight: 700;
    box-shadow: 0 4px 16px rgba(224, 16, 32, .38);
}
.nav-cta:hover { background: var(--brand-light) !important; transform: translateY(-1px); }

.nav-toggle {
    display: none; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    cursor: pointer; padding: .62rem; color: var(--white); line-height: 1; border-radius: 10px;
}
.nav-toggle svg { width: 24px; height: 24px; display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

/* --------------------------------------------------------------- Kahraman */
.hero {
    position: relative; overflow: hidden;
    background: linear-gradient(125deg, #0b0b0e 0%, #171116 55%, var(--brand-dark) 100%);
    color: var(--white);
    padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 8, 11, .97) 0%, rgba(12, 10, 13, .86) 42%, rgba(128, 5, 18, .48) 100%),
        radial-gradient(circle at 12% 20%, rgba(224, 16, 32, .38), transparent 44%);
    pointer-events: none;
}
.hero::after {
    content: ""; position: absolute; z-index: 0; inset: 0 0 0 43%;
    background: url("/uploads/galeri/2026/08/u11-anilar.webp") center 42% / cover no-repeat;
    opacity: .78;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
}
.hero-inner { position: relative; z-index: 2; display: grid; gap: 3rem; grid-template-columns: 1.15fr .85fr; align-items: center; }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 .accent {
    background: linear-gradient(120deg, var(--brand-light), var(--accent));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { font-size: 1.08rem; color: rgba(255, 255, 255, .84); max-width: 50ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero-card {
    background: rgba(12, 12, 16, .62);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-lg); padding: 1.75rem;
    backdrop-filter: blur(14px); box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
}
.hero-card h3 { color: var(--white); font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; }

/* Sayaçlar */
.counters { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 1.25rem; }
.counter-value {
    font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; line-height: 1;
    background: linear-gradient(120deg, var(--white), var(--accent));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.counter-range { font-size: clamp(1.55rem, 3vw, 2.15rem); letter-spacing: -.02em; }
.counter-label { font-size: .78rem; color: rgba(255, 255, 255, .62); text-transform: uppercase; letter-spacing: .06em; }

/* --------------------------------------------------------------- Butonlar */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-weight: 700; font-size: .95rem; padding: .85rem 1.75rem;
    border-radius: 999px; border: 2px solid transparent; cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: var(--white); box-shadow: 0 6px 22px rgba(224, 16, 32, .4); }
.btn-primary:hover { background: var(--brand-light); color: var(--white); }
.btn-ghost { border-color: rgba(255, 255, 255, .35); color: var(--white); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); color: var(--white); }
.btn-outline { border-color: var(--brand); color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: var(--white); }
.btn-block { width: 100%; }

/* --------------------------------------------------------------- Bölümler */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark h2 { color: var(--white); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.eyebrow {
    display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: var(--brand); margin-bottom: .5rem;
}
.section-dark .eyebrow { color: var(--accent); }

/* ------------------------------------------------------------------ Kart */
.grid { display: grid; gap: 1.75rem; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

.card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid var(--line);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-alt); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.35rem; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 1.12rem; margin: 0 0 .5rem; }
.card-title a { color: var(--text); }
.card-title a:hover { color: var(--brand); }
.card-text { color: var(--text-muted); font-size: .93rem; margin: 0 0 1rem; flex: 1; }
.card-meta { font-size: .8rem; color: var(--text-muted); display: flex; gap: .75rem; align-items: center; }

.badge {
    display: inline-block; padding: .3rem .7rem; border-radius: 999px;
    font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
    background: var(--brand); color: var(--white);
}
.badge-soft { background: rgba(224, 16, 32, .12); color: var(--brand); }
.badge-float { position: absolute; top: .9rem; left: .9rem; z-index: 2; }

/* --------------------------------------------------------------- Duyurular */
.notice-list { display: grid; gap: 1rem; }
.notice {
    display: flex; gap: 1.25rem; align-items: center; padding: 1.15rem 1.35rem;
    background: var(--white); border-radius: var(--radius);
    border-left: 4px solid var(--brand); box-shadow: var(--shadow);
    transition: transform .25s var(--ease);
}
.notice:hover { transform: translateX(6px); }
.notice-date {
    flex-shrink: 0; text-align: center; min-width: 62px;
    background: var(--bg-alt); border-radius: 10px; padding: .5rem;
}
.notice-day { font-size: 1.4rem; font-weight: 900; line-height: 1; color: var(--brand); }
.notice-month { font-size: .7rem; text-transform: uppercase; color: var(--text-muted); }
.notice h3 { font-size: 1.02rem; margin: 0 0 .2rem; }
.notice h3 a { color: var(--text); }
.notice h3 a:hover { color: var(--brand); }
.notice p { margin: 0; font-size: .88rem; color: var(--text-muted); }

/* ----------------------------------------------------------- Maç merkezi */
.match-list { display: grid; gap: 1rem; }
.match-card {
    display: grid; grid-template-columns: 104px 1fr; overflow: hidden;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.match-date { background: var(--ink); color: var(--white); display: grid; place-items: center; align-content: center; padding: 1rem; }
.match-date strong { font-family: var(--font-display); font-size: 2.25rem; line-height: .9; }
.match-date span { color: var(--brand-light); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.match-date small { margin-top: .45rem; opacity: .65; }
.match-main { padding: 1.25rem 1.5rem; }
.match-kicker { color: var(--brand); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.match-teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; margin: .55rem 0; font-weight: 850; }
.match-teams span:last-child { text-align: right; }
.match-teams b { min-width: 62px; text-align: center; font-family: var(--font-display); font-size: 1.65rem; color: var(--brand); }
.match-meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--text-muted); font-size: .78rem; }
.match-empty { padding-block: 3rem; border: 1px dashed var(--line); border-radius: var(--radius-lg); }
.match-home-section { background: linear-gradient(135deg, #111216, #301017); color: var(--white); }
.match-home-section h2 { color: var(--white); }
.home-match-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.home-match-card { padding: 1.35rem; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.home-match-card .match-teams { color: var(--white); }
.home-match-card .match-meta { color: rgba(255,255,255,.58); }

.sponsor-callout-section { padding-block: clamp(2.5rem, 5vw, 4rem); background: var(--ink); }
.sponsor-callout {
    position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    padding: clamp(2rem, 5vw, 3.5rem); border-radius: var(--radius-lg); color: var(--white);
    background: linear-gradient(120deg, #8f0e1a, #e01020 55%, #740a14); box-shadow: var(--shadow-lg);
}
.sponsor-callout::after { content: ""; position: absolute; width: 310px; height: 310px; right: -100px; top: -150px; border: 45px solid rgba(255,255,255,.08); border-radius: 50%; }
.sponsor-callout > * { position: relative; z-index: 1; }
.sponsor-callout h2 { color: var(--white); margin-bottom: .55rem; }
.sponsor-callout .eyebrow { color: rgba(255,255,255,.72); }
.sponsor-callout p { max-width: 670px; margin: 0; color: rgba(255,255,255,.78); }
.sponsor-callout-actions { display: flex; flex-wrap: wrap; gap: .75rem; flex-shrink: 0; }
.sponsor-callout .btn-primary { background: var(--white); color: var(--brand); box-shadow: none; }

/* ------------------------------------------------------------------ Kadro */
.team-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4 / 5; box-shadow: var(--shadow); display: block;
}
.team-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-card:hover img { transform: scale(1.08); }
.team-card-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.5rem; color: var(--white);
    background: linear-gradient(to top, rgba(14, 14, 17, .92) 12%, rgba(14, 14, 17, .25) 55%, transparent 80%);
}
.team-card-overlay h3 { color: var(--white); margin: 0 0 .25rem; font-size: 1.2rem; }
.team-card-overlay span { font-size: .82rem; color: rgba(255, 255, 255, .7); }

.player-card { text-align: center; }
.player-photo {
    aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden;
    background: var(--bg-alt); margin-bottom: .9rem; position: relative;
}
.player-photo img { width: 100%; height: 100%; object-fit: cover; }
.player-no {
    position: absolute; right: .6rem; bottom: .6rem;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--brand); color: var(--white);
    display: grid; place-items: center; font-weight: 900; font-size: 1rem;
}
.player-name { font-weight: 800; font-size: 1rem; margin: 0; }
.player-role { font-size: .82rem; color: var(--text-muted); }

/* ----------------------------------------------------------------- Galeri */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.gallery-item {
    position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
    background: var(--bg-alt); cursor: pointer; border: 0; padding: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.gallery-item:hover img { transform: scale(1.09); }
.home-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.home-gallery-grid .gallery-item { aspect-ratio: 16 / 9; }
.home-gallery-overlay {
    position: absolute; inset: 0; z-index: 2; padding: 1.5rem;
    display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
    color: var(--white); background: linear-gradient(to top, rgba(8, 9, 12, .9), transparent 65%);
}
.home-gallery-overlay strong { color: var(--white); font-family: var(--font-display); font-size: 1.65rem; line-height: 1; }
.home-gallery-overlay small { margin-top: .35rem; text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 800; opacity: .75; }
.gallery-count {
    position: absolute; right: .75rem; bottom: .75rem;
    background: rgba(14, 14, 17, .8); color: var(--white);
    padding: .25rem .6rem; border-radius: 999px; font-size: .75rem; font-weight: 700;
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 500; display: none;
    background: rgba(8, 11, 20, .95); place-items: center; padding: 2rem;
}
.lightbox.is-open { display: grid; }

/* Lightbox aciklen arka planin kaymasini engeller */
body.no-scroll { overflow: hidden; }
.lightbox img { max-width: 92vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close, .lightbox-nav {
    position: absolute; background: rgba(255, 255, 255, .12); border: 0; color: var(--white);
    width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1.4rem;
    display: grid; place-items: center; transition: background .2s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, .28); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-caption { position: absolute; bottom: 1.5rem; color: rgba(255,255,255,.85); font-size: .9rem; text-align: center; }

/* -------------------------------------------------------------- Sponsorlar */
.sponsor-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.25rem; align-items: center; }
.sponsor-item {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.25rem; display: grid; place-items: center; min-height: 100px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.sponsor-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.sponsor-item img { max-height: 60px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .3s, opacity .3s; }
.sponsor-item:hover img { filter: grayscale(0); opacity: 1; }

/* ------------------------------------------------------------------ Formlar */
.form-grid { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .88rem; }
.field .hint { font-size: .78rem; color: var(--text-muted); }
.field input, .field select, .field textarea {
    font: inherit; padding: .8rem 1rem; border: 2px solid var(--line);
    border-radius: 10px; background: var(--white); color: var(--text);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(224, 16, 32, .12);
}
.field textarea { resize: vertical; min-height: 130px; }
.required { color: var(--brand); }

/* Bal küpü alanı - gerçek kullanıcı görmez, ekran okuyucular atlar */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: 1rem 1.25rem; border-radius: 10px; margin-bottom: 1.5rem; font-size: .93rem; }
.alert-success { background: #e7f7ee; color: #14663c; border-left: 4px solid #1a9e5c; }
.alert-error { background: #fdeaec; color: #94141f; border-left: 4px solid var(--brand); }
.alert ul { margin: .5rem 0 0; padding-left: 1.2rem; }

/* ------------------------------------------------------------------ Sayfa */
.page-hero {
    background: linear-gradient(135deg, var(--ink), var(--ink-soft));
    color: var(--white); padding: clamp(2.5rem, 4.5vw, 3.5rem) 0;
    position: relative; overflow: hidden;
}
.page-hero::after {
    content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
    border-radius: 50%; background: radial-gradient(circle, rgba(225,29,46,.35), transparent 70%);
}
.page-hero h1 { color: var(--white); margin: 0; position: relative; }
.page-hero + .section { padding-top: clamp(2.5rem, 4vw, 3.75rem); }
.breadcrumb { font-size: .85rem; color: rgba(255, 255, 255, .6); margin-bottom: .5rem; position: relative; }
.breadcrumb a { color: rgba(255, 255, 255, .85); }

.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter-chip {
    padding: .5rem 1.1rem; border-radius: 999px; font-size: .87rem; font-weight: 700;
    background: var(--white); border: 2px solid var(--line); color: var(--text-muted);
}
.filter-chip:hover { border-color: var(--brand); color: var(--brand); }
.filter-chip.is-active { background: var(--brand); border-color: var(--brand); color: var(--white); }

/* İçerik gövdesi */
.prose { font-size: 1.03rem; line-height: 1.8; }
.prose > * + * { margin-top: 1.1em; }
.prose h2, .prose h3 { margin-top: 1.8em; }
.prose img { border-radius: var(--radius); margin-block: 1.5em; }
.prose blockquote {
    border-left: 4px solid var(--brand); padding-left: 1.25rem; margin-left: 0;
    color: var(--text-muted); font-style: italic;
}
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { border: 1px solid var(--line); padding: .6rem .8rem; text-align: left; }

/* -------------------------------------------------------------- Sayfalama */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; list-style: none; padding: 0; }
.pagination a, .pagination span {
    display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 .8rem;
    border-radius: 10px; border: 2px solid var(--line); font-weight: 700; font-size: .9rem;
    color: var(--text-muted); background: var(--white);
}
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination .active span { background: var(--brand); border-color: var(--brand); color: var(--white); }

/* ------------------------------------------------------------------- Alt */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .68); padding: 4rem 0 0; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
.footer-brand { display: inline-flex; align-items: center; gap: .85rem; margin-bottom: 1.15rem; color: var(--white); }
.footer-brand img { width: 58px; height: 58px; object-fit: contain; }
.footer-brand span { display: grid; gap: .12rem; }
.footer-brand strong { color: var(--white); font-size: 1.05rem; }
.footer-brand small { color: rgba(255,255,255,.52); font-size: .72rem; }
.site-footer h4 { color: var(--white); font-size: .95rem; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 1.1rem; }
.site-footer a { color: rgba(255, 255, 255, .68); }
.site-footer a:hover { color: var(--white); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .92rem; }
.footer-contact { font-size: .92rem; display: grid; gap: .6rem; }
.social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social a {
    width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255, 255, 255, .09); transition: background .25s var(--ease), transform .25s var(--ease);
}
.social a:hover { background: var(--brand); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
    margin-top: 3rem; padding: 1.5rem 0; border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem;
}

.empty-state { text-align: center; padding: 4rem 1rem; color: var(--text-muted); }
.empty-state h3 { color: var(--text); }

/* --------------------------------------------------- Kaydırma animasyonu */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Hareket azaltma tercihini kesinlikle uygula */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important; animation-iteration-count: 1 !important;
        transition-duration: .001ms !important; scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------ Mobil */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
    .nav-toggle { display: block; }
    .nav {
        position: fixed; inset: var(--header-h) 0 auto; flex-direction: column;
        align-items: stretch; gap: .25rem; padding: 1rem 1.25rem 1.75rem;
        background: var(--ink); border-bottom: 1px solid rgba(255, 255, 255, .1);
        transform: translateY(-130%); transition: transform .35s var(--ease);
        max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    }
    .nav.is-open { transform: translateY(0); }
    .nav a { padding: .8rem 1rem; }
    .nav a.is-active::after { display: none; }
    .nav-cta { text-align: center; margin-top: .5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-head { flex-direction: row; align-items: flex-end; gap: 1rem; margin-bottom: 1.75rem; }
    .section-head .btn { padding: .65rem 1.1rem; }
    .hero { padding: 3.25rem 0 3.5rem; }
    .hero::after { inset: 0; opacity: .36; -webkit-mask-image: none; mask-image: none; }
    .hero::before { background: linear-gradient(180deg, rgba(8,8,11,.94), rgba(31,7,13,.88) 62%, rgba(153,8,24,.78)); }
    .hero-inner { gap: 2.25rem; }
    .hero p { font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }
    .hero-actions { gap: .65rem; }
    .hero-actions .btn { flex: 1 1 calc(50% - .35rem); padding: .75rem .9rem; white-space: nowrap; }
    .hero-card { padding: 1.25rem; }
    .hero-card h3 { margin-bottom: 1rem; }
    .counters { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .7rem; }
    .counter-value, .counter-range { font-size: 1.45rem; }
    .counter-label { font-size: .65rem; letter-spacing: .03em; }
    .page-hero { padding: 2.35rem 0; }
    .section { padding: 2.8rem 0; }
}

/* ------------------------------------------------- Sayfa içi ek bileşenler */
.narrow { width: min(100% - 2.5rem, 820px); }

.post-cover {
    width: 100%; border-radius: var(--radius-lg); margin: 1.25rem 0 2rem;
    aspect-ratio: 16 / 9; object-fit: cover; box-shadow: var(--shadow);
}
.article-shell { width: min(100%, 900px); margin-inline: auto; }
.article-meta-row {
    display: flex; align-items: center; gap: .75rem; color: var(--text-muted);
    font-size: .82rem; font-weight: 600;
}
.article-shell .prose { font-size: 1.05rem; line-height: 1.85; }

.related-block { margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }

.sponsor-tier { margin-bottom: 3rem; }
.sponsor-tier:last-child { margin-bottom: 0; }

.contact-layout { display: grid; gap: 3rem; grid-template-columns: 1.5fr .9fr; align-items: start; }
.contact-info {
    background: var(--bg-alt); border-radius: var(--radius-lg); padding: 1.85rem;
    border: 1px solid var(--line);
}
.contact-info h2 { font-size: 1.25rem; }
.contact-info p { font-size: .94rem; }
.contact-info strong { color: var(--text); }

.album-intro { margin-bottom: 2.5rem; }

.map-section { line-height: 0; }
.map-section iframe { width: 100%; height: 420px; border: 0; display: block; }

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
    .home-match-grid { grid-template-columns: 1fr; }
    .sponsor-callout { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
    .home-gallery-grid { grid-template-columns: 1fr; }
    .home-gallery-overlay { padding: 1.15rem; }
    .home-gallery-overlay strong { font-size: 1.4rem; }
    .match-card { grid-template-columns: 78px 1fr; }
    .match-main { padding: 1rem; }
    .match-teams { gap: .5rem; font-size: .85rem; }
    .match-teams b { min-width: 48px; font-size: 1.35rem; }
    .match-meta { flex-direction: column; gap: .2rem; }
    .sponsor-callout-actions, .sponsor-callout-actions .btn { width: 100%; }
}
