/* ADANA MÜCADELE — tasarım sistemi v2 */

:root {
  --fd: "Anton", Impact, "Arial Narrow", sans-serif;
  --fb: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
}
:root[data-theme="dark"] {
  --bg: #0a0a0b;
  --bg2: #111113;
  --bg3: #19191c;
  --line: #222226;
  --line2: #34343a;
  --ink: #f4f4f2;
  --muted: #8a8a93;
  --acc: #ffc800;
  --acc-ink: #0a0a0b;
  --acc-text: #ffc800;
  --ok: #41e27c;
  --no: #ff4d3d;
  --acc2: #ffc800;
  --card-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.7);
  --grain-op: 0.045;
  --map-filter: invert(0.92) hue-rotate(180deg) grayscale(0.25) contrast(0.95);
}
:root[data-theme="light"] {
  --bg: #f2f2ee;
  --bg2: #ffffff;
  --bg3: #e8e8e3;
  --line: #d9d9d3;
  --line2: #c2c2ba;
  --ink: #0b0b0c;
  --muted: #62626a;
  --acc: #ffc800;
  --acc-ink: #0b0b0c;
  --acc-text: #8a6b00;
  --ok: #178a45;
  --no: #d2321f;
  --acc2: #8a6b00;
  --card-shadow: 0 16px 40px -22px rgba(0, 0, 0, 0.25);
  --grain-op: 0.03;
  --map-filter: grayscale(0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* film greni — sadece fare/masaüstü (mobilde kaydırma performansı için kapalı) */
@media (hover: hover) and (pointer: fine) {
  body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none; z-index: 2000;
    opacity: var(--grain-op);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  }
}
h1, h2, h3, .fd { font-family: var(--fd); font-weight: 400; text-transform: uppercase; letter-spacing: 0.005em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 16px; color: var(--ink); }
::selection { background: var(--acc); color: var(--acc-ink); }

.wrap { width: min(1280px, 100% - 48px); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: calc(100% - 32px); } }

.eyebrow {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow b { color: var(--acc-text); font-weight: 700; }

/* ---------- butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 17px 30px;
  border-radius: 3px;
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-acc { background: var(--acc); color: var(--acc-ink); }
.btn-acc:hover { transform: translateY(-2px); }
.btn-line { border: 1.5px solid var(--line2); color: var(--ink); }
.btn-line:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-white { background: #f4f4f2; color: #0a0a0b; }
.btn-white:hover { background: var(--acc); transform: translateY(-2px); }
.mini-btn {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid var(--line2);
  padding: 9px 16px; border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}
.mini-btn:hover { border-color: var(--ink); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  transition: background 0.35s, border-color 0.35s, padding 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 28px;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav.on-hero:not(.scrolled) { --ink: #f4f4f2; --muted: #b9b9c0; --line2: rgba(255,255,255,0.32); }
.brand { display: flex; align-items: center; gap: 12px; }
/* amblem: kafesin kuşbakışı — iç içe iki sekizgen */
.brand-mark { width: 34px; height: 34px; flex: none; display: block; }
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-name { font-family: var(--fd); font-size: 16px; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1; color: var(--ink); }
.brand-name small { display: block; font-family: var(--fb); font-weight: 600; font-size: 9.5px; letter-spacing: 0.26em; color: var(--muted); margin-top: 4px; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; gap: 4px; margin-right: 14px; }
.nav-links a {
  padding: 8px 12px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.tbtn {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid var(--line2);
  color: var(--ink);
  transition: border-color 0.2s, transform 0.4s;
}
.tbtn:hover { border-color: var(--ink); transform: rotate(25deg); }
.tbtn svg { width: 17px; height: 17px; }
:root[data-theme="dark"] .ic-moon { display: none; }
:root[data-theme="light"] .ic-sun { display: none; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 3px;
  background: var(--ink); color: var(--bg);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav.on-hero:not(.scrolled) .nav-cta { background: #f4f4f2; color: #0a0a0b; }
.nav-cta:hover { background: var(--acc); color: var(--acc-ink); transform: translateY(-1px); }
@media (max-width: 760px) {
  /* mobilde menü her zaman dolu zeminli ve temaya uyumlu (fotoğrafın üstüne binmez) */
  .nav, .nav.scrolled, .nav.on-hero:not(.scrolled) {
    padding: 10px 16px; height: 60px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  :root[data-theme="dark"] .nav.on-hero:not(.scrolled) { --ink: #f4f4f2; --muted: #8a8a93; --line2: #34343a; }
  :root[data-theme="light"] .nav.on-hero:not(.scrolled) { --ink: #0b0b0c; --muted: #62626a; --line2: #c2c2ba; }
  .nav.on-hero:not(.scrolled) .nav-cta { background: var(--ink); color: var(--bg); }
  .nav-links { display: none; }
  .brand { gap: 10px; }
  .brand-name { font-size: 15px; }
  .brand-name small { display: none; }
  .nav-cta { padding: 10px 16px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100svh; min-height: 560px;
  overflow: hidden;
  color: #f4f4f2;
  background: #0a0a0b;
}
.hero-media { position: absolute; inset: 0; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.15) 35%, rgba(10,10,11,0.35) 65%, rgba(10,10,11,0.94) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.45) 0%, rgba(10,10,11,0) 60%);
}
.hero-in {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 28px 44px;
  display: grid; gap: 22px;
}
.h-eyebrow { color: #c9c9cf; }
.h-eyebrow b { color: var(--acc); }
.h-title { font-size: clamp(76px, 17vw, 236px); line-height: 0.9; letter-spacing: -0.005em; }
/* maske: Ü/İ/Ş noktaları kesilmesin diye üstte pay bırakılır (negatif margin yerleşimi korur) */
.h-line { display: block; overflow: hidden; padding: 0.2em 0 0.06em; margin: -0.2em 0 -0.06em; }
.h-txt { display: inline-block; will-change: transform; }
.h-txt.acc { color: var(--acc); }
.h-bottom { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px; }
.h-disc { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #c9c9cf; max-width: 560px; }
.h-disc span::before { content: "/"; color: var(--acc); margin-right: 8px; }
.h-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.h-scroll {
  position: absolute; right: 30px; top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: #a5a5ad;
  display: flex; align-items: center; gap: 12px;
}
.h-scroll i { width: 1px; height: 64px; background: linear-gradient(#a5a5ad, transparent); display: block; animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
/* ---------- MOBİL HERO: menü → çerçeveli fotoğraf → başlık bloğu (akışta, üst üste binme yok, temaya uyar) ---------- */
@media (max-width: 760px) {
  .hero {
    height: auto; min-height: 0;
    padding-top: 60px; /* sabit menü yüksekliği */
    background: var(--bg); color: var(--ink);
    display: flex; flex-direction: column;
  }
  .hero-media {
    position: relative; inset: auto;
    width: 100%; aspect-ratio: 5 / 4;
    overflow: hidden; will-change: auto;
    transform: none !important; /* mobilde fotoğraf sabit: taşma/kayma yok */
  }
  .hero-media picture { display: block; width: 100%; height: 100%; }
  .hero-media img { object-position: 50% 40%; }
  /* fotoğrafın alt kenarı zemine yumuşakça karışır (tema rengine) */
  .hero-media::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 34%;
    background: linear-gradient(180deg, transparent, var(--bg));
    pointer-events: none;
  }
  .hero-shade { display: none; }
  .hero-in {
    position: relative; left: auto; right: auto; bottom: auto;
    padding: 6px 16px 30px; gap: 14px;
    transform: none !important; opacity: 1 !important;
  }
  .h-eyebrow { color: var(--muted); font-size: 11px; letter-spacing: 0.2em; }
  .h-eyebrow b { color: var(--acc-text); }
  .h-title { font-size: clamp(60px, 20vw, 118px); line-height: 0.98; color: var(--ink); }
  .h-bottom { gap: 16px; }
  .h-disc { color: var(--muted); gap: 5px 12px; font-size: 11.5px; letter-spacing: 0.12em; }
  .h-ctas { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .h-ctas .btn { padding: 16px 10px; font-size: 12.5px; width: 100%; }
  .h-scroll { display: none; }
  :root[data-theme="light"] .hero .btn-white { background: var(--ink); color: var(--bg); }
  :root[data-theme="light"] .hero .h-txt.acc { color: var(--acc-text); }
}

/* atla butonu (pinli sahneler) */
.skip {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 6;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  border: 1.5px solid var(--line2);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--muted);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
}
.skip:hover { color: var(--ink); border-color: var(--ink); }
.skip svg { animation: skipcue 1.6s ease-in-out infinite; }
@keyframes skipcue { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
.reel-skip { left: auto; right: 28px; transform: none; }
@media (max-width: 760px) {
  .skip { bottom: 26px; }
  .reel-skip { right: 16px; }
}

/* ---------- pinlenmiş sahne: branşlar ---------- */
.scene { position: relative; height: 400vh; background: var(--bg); }
.scene-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.scene-flash { position: absolute; inset: 0; background: var(--acc); opacity: 0; pointer-events: none; z-index: 5; }
.scene-word {
  position: absolute; left: 50%; top: 50%;
  font-family: var(--fd); text-transform: uppercase;
  font-size: clamp(64px, 17vw, 300px); line-height: 0.9;
  white-space: nowrap;
  color: var(--ink);
  opacity: 0;
  z-index: 1;
  letter-spacing: -0.01em;
  text-align: center;
}
.scene-word.static { transform: translate(-50%, -50%); opacity: 1; }
.scene-word.is-acc { color: var(--acc); }
.bag-wrap {
  position: absolute; left: 50%; top: 0;
  height: 100%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; align-items: flex-start; justify-content: center;
}
.bag-wrap::before { content: ""; position: absolute; left: 50%; top: 40%; width: 70vmin; height: 70vmin; transform: translate(-50%, -50%); background: radial-gradient(circle, color-mix(in srgb, var(--acc) 10%, transparent) 0%, transparent 62%); pointer-events: none; }
.bag-svg { height: 92svh; width: auto; transform-origin: 50% 0; will-change: transform; }
.fist { position: absolute; top: 46%; width: clamp(140px, 22vw, 320px); z-index: 3; will-change: transform; opacity: 0; }
.fist-l { left: 0; }
.fist-r { right: 0; }
.scene-rail {
  position: absolute; left: 28px; top: 50%; transform: translateY(-50%);
  z-index: 4; display: grid; gap: 10px;
}
.rail-item { display: flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); transition: color 0.3s; }
.rail-item i { width: 22px; height: 1.5px; background: var(--line2); transition: background 0.3s, width 0.3s; }
.rail-item.done { color: var(--ink); }
.rail-item.done i { background: var(--acc); width: 34px; }
.rail-item.now { color: var(--acc-text); }
.scene-head { position: absolute; left: 28px; top: 96px; z-index: 4; }
.scene-prog { position: absolute; right: 28px; bottom: 34px; z-index: 4; font-family: var(--fd); font-size: 42px; color: var(--ink); line-height: 1; }
.scene-prog small { font-size: 18px; color: var(--muted); margin-left: 4px; }
/* MOBİL SAHNE: üstte etiket + sayaç, altında branş kelimesi, onun altında torba — yazı ile torba ASLA üst üste gelmez */
@media (max-width: 760px) {
  .scene { height: 330vh; }
  .scene-head { left: 16px; top: 80px; }
  .scene-prog { right: 16px; top: 72px; bottom: auto; font-size: 28px; }
  .scene-prog small { font-size: 14px; }
  .scene-word { top: 19svh; font-size: clamp(50px, 16vw, 112px); z-index: 3; text-shadow: none; }
  .bag-wrap { top: 29svh; height: auto; }
  .bag-wrap::before { top: 50%; width: 90vw; height: 90vw; }
  .bag-svg { height: 54svh; }
  .fist { width: 30vw; top: 56svh; }
  .scene-rail { display: none; } /* kelime + sayaç yeterli; liste kalabalık yapıyordu */
  .skip { bottom: 20px; }
}

/* ---------- yatay şerit: sürükle / ok / dokunarak kaydır ---------- */
.reel { position: relative; padding: 14vh 0 8vh; background: var(--bg); }
/* başlık ve şerit aynı sol hizada, tam genişlik (ultra geniş ekranda sol boşluk kalmaz) */
.reel-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; padding: 0 28px; }
.reel-title { font-size: clamp(44px, 7vw, 110px); line-height: 0.9; margin-top: 6px; }
.reel-nav { display: flex; align-items: center; gap: 10px; }
.reel-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--line2); color: var(--ink);
  display: grid; place-items: center;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.reel-btn:hover { border-color: var(--ink); }
.reel-btn:active { transform: scale(0.94); }
.reel-scroller {
  overflow-x: auto; overflow-y: hidden;
  /* snap YOK: bırakılan yerde kalır, sadece atalet ile yavaşlar */
  scrollbar-width: none;
  cursor: grab;
  padding: 4px 28px 14px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.reel-scroller::-webkit-scrollbar { display: none; }
.reel-scroller.dragging { cursor: grabbing; scroll-behavior: auto; user-select: none; }
.reel-track { display: flex; gap: 14px; width: max-content; }
.reel-item {
  position: relative; flex: none;
  height: min(58svh, 540px);
  border-radius: 3px; overflow: hidden; background: var(--bg2);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reel-item:hover { transform: translateY(-4px); }
.reel-item.p { aspect-ratio: 3 / 4; }
.reel-item.l { aspect-ratio: 16 / 10; }
.reel-item.s { aspect-ratio: 4 / 5; }
.reel-item img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; user-select: none; -webkit-user-drag: none; }
.reel-item .ri { position: absolute; left: 12px; top: 10px; font-family: var(--fd); font-size: 16px; color: var(--acc); text-shadow: 0 1px 12px rgba(0,0,0,0.6); }
.reel-item.member .ri { background: var(--acc); color: var(--acc-ink); font-family: var(--fb); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 9px; border-radius: 2px; text-shadow: none; }
@media (max-width: 760px) {
  .reel { padding: 10vh 0 6vh; }
  .reel-head { padding: 0 16px; }
  .reel-scroller { padding: 4px 16px 12px; }
  .reel-track { gap: 10px; }
  .reel-item { height: 50svh; }
  .reel-item:hover { transform: none; }
  .reel-nav .btn { display: none; }
}

/* ---------- canlı sayı ---------- */
.live { padding: 20vh 0 18vh; text-align: center; position: relative; }
.live .eyebrow { display: block; margin-bottom: 22px; }
.live-num { font-family: var(--fd); font-size: clamp(140px, 34vw, 460px); line-height: 0.82; color: var(--acc); letter-spacing: -0.02em; }
.live-lbl { font-family: var(--fd); font-size: clamp(22px, 3.6vw, 44px); margin: 14px 0 8px; }
.live-sub { color: var(--muted); font-size: 14.5px; max-width: 46ch; margin: 0 auto 30px; }
.live-ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ---------- kadro ---------- */
.kadro { padding: 10vh 0 14vh; }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
.sec-title { font-size: clamp(48px, 9vw, 150px); line-height: 0.88; }
.fighters-strip {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(280px, 72vw);
  gap: 16px; overflow-x: auto; padding: 4px 0 24px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.fighters-strip::-webkit-scrollbar { display: none; }
/* kadro kartı: fotoğraf kartı doldurur, isim altta gradyan üstünde; karta dokun → tam boyut */
.fighter-card {
  position: relative; aspect-ratio: 3 / 4;
  border-radius: 3px; overflow: hidden; background: var(--bg2);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fighter-card:hover { transform: translateY(-4px); }
.fighter-ph { position: absolute; inset: 0; background: var(--bg3); }
.fighter-ph img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; display: block; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.fighter-card:hover .fighter-ph img.main { transform: scale(1.04); }
/* dar kesilmiş / çok uzun fotoğraf: tam göster, arkasına bulanık kopya */
.fighter-ph.tall img.main { position: relative; z-index: 1; object-fit: contain; object-position: center; }
.fighter-ph.tall img.bd { position: absolute; inset: -12%; width: 124%; height: 124%; object-fit: cover; filter: blur(22px) brightness(0.45) saturate(1.2); transform: none; }
.fighter-ph .ph-empty { width: 100%; height: 100%; display: grid; place-items: center; color: var(--line2); }
.fighter-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 46px 14px 13px;
  background: linear-gradient(180deg, rgba(10,10,11,0) 0%, rgba(10,10,11,0.55) 40%, rgba(10,10,11,0.94) 100%);
}
.fighter-meta b { font-family: var(--fd); font-weight: 400; font-size: 19px; text-transform: uppercase; display: block; line-height: 1.05; color: #f4f4f2; }
.fighter-meta span { color: #c9c9cf; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.fighter-meta .tag { color: var(--acc); }
.roster { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
@media (max-width: 520px) { .roster { grid-template-columns: repeat(2, 1fr); gap: 8px; } }
.coaches { display: flex; justify-content: center; gap: 14px; margin-bottom: 22px; }
.coaches .fighter-card { width: min(320px, 46vw); aspect-ratio: 4 / 5; }
.coaches .fighter-meta b { font-size: 26px; }
.kadro-empty { color: var(--muted); font-size: 14px; padding: 30px 0; }
@media (max-width: 520px) { .coaches { gap: 8px; } .coaches .fighter-card { width: calc(50% - 4px); } .coaches .fighter-meta b { font-size: 20px; } }
.roster-head { padding-top: 140px; margin-bottom: 40px; }
.roster-head .sec-title { margin-top: 10px; }
.page-end { height: 80px; }

/* ---------- konum ---------- */
.konum { padding: 8vh 0 12vh; }
.konum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.konum-txt { display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.konum-title { font-size: clamp(48px, 8vw, 132px); line-height: 0.88; }
.konum-title span { color: var(--acc-text); }
.addr { font-size: 15.5px; line-height: 1.65; color: var(--muted); max-width: 40ch; }
.addr b { color: var(--ink); font-weight: 600; display: block; margin-bottom: 4px; }
.konum-map { position: relative; min-height: 420px; border-radius: 3px; overflow: hidden; background: var(--bg2); border: 1px solid var(--line); }
.konum-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: var(--map-filter); }
@media (max-width: 860px) {
  .konum-grid { grid-template-columns: 1fr; }
  .konum-map { min-height: 320px; }
}

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0 46px; }
.foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; align-items: center; font-size: 12.5px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.foot a:hover { color: var(--ink); }

/* ---------- galeri sayfası ---------- */
.gal-grid { columns: 4 260px; column-gap: 12px; }
.gal-grid a { display: block; margin-bottom: 12px; break-inside: avoid; overflow: hidden; border-radius: 3px; background: var(--bg2); position: relative; }
.gal-grid img { width: 100%; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.gal-grid a:hover img { transform: scale(1.04); }
.gal-grid .who { position: absolute; left: 10px; bottom: 10px; background: var(--acc); color: var(--acc-ink); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 9px; border-radius: 2px; }
.gal-sec { display: flex; align-items: baseline; gap: 12px; margin: 34px 0 16px; }
.gal-sec h2 { font-size: clamp(26px, 4vw, 44px); }
.gal-sec span { color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(6, 6, 7, 0.94); display: grid; place-items: center; padding: 24px; animation: fadein 0.25s; }
@keyframes fadein { from { opacity: 0; } }
.lightbox img { max-width: 94vw; max-height: 88vh; width: auto; border-radius: 3px; }
.lb-x { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; font-size: 20px; display: grid; place-items: center; }
.lb-cap { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: #b9b9c0; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; font-size: 22px; display: grid; place-items: center; }
.lb-prev { left: 16px; } .lb-next { right: 16px; }

/* ---------- toast ---------- */
.toasts { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 900; display: flex; flex-direction: column; gap: 8px; align-items: center; width: min(440px, 92vw); }
.toast {
  background: var(--ink); color: var(--bg);
  padding: 12px 20px; border-radius: 3px;
  font-size: 13.5px; font-weight: 600;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  text-align: center;
}
.toast.show { opacity: 1; transform: none; }
.toast-err { background: var(--no); color: #fff; }
.toast-ok { background: var(--acc); color: var(--acc-ink); }

/* ---------- avatar ---------- */
.av { border-radius: 50%; object-fit: cover; flex: none; }
.av-txt { display: inline-grid; place-items: center; color: #fff; font-family: var(--fd); }

/* ---------- giriş / kayıt ---------- */
.auth-wrap { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-side { position: relative; overflow: hidden; background: #0a0a0b; }
.auth-side img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.auth-side::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0.2), rgba(10,10,11,0.85)); }
.auth-side-txt { position: absolute; left: 28px; bottom: 32px; right: 28px; color: #f4f4f2; z-index: 2; }
.auth-side-txt h2 { font-size: clamp(44px, 6vw, 96px); line-height: 0.88; }
.auth-side-txt p { color: #c9c9cf; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-top: 12px; }
.auth-main { display: grid; place-items: center; padding: 110px 24px 40px; }
.auth-card { width: min(420px, 100%); }
.auth-tabs { display: flex; gap: 22px; border-bottom: 1px solid var(--line); margin-bottom: 30px; }
.auth-tab { padding: 0 0 14px; font-family: var(--fd); font-size: 22px; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.2s, border-color 0.2s; }
.auth-tab.on { color: var(--ink); border-bottom-color: var(--acc); }
.auth-title { font-size: 40px; line-height: 0.95; margin-bottom: 8px; }
.auth-sub { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--line);
  border-radius: 3px;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { border-color: var(--acc); }
.avatar-pick { display: flex; align-items: center; gap: 14px; }
.avatar-prev { width: 58px; height: 58px; border-radius: 50%; background: var(--bg2); border: 1.5px dashed var(--line2); display: grid; place-items: center; overflow: hidden; color: var(--muted); flex: none; }
.avatar-prev img { width: 100%; height: 100%; object-fit: cover; }
.auth-submit { width: 100%; margin-top: 6px; }
.auth-note { margin-top: 20px; font-size: 13px; color: var(--muted); }
.auth-note a { color: var(--acc-text); font-weight: 700; }
.form-err { background: color-mix(in srgb, var(--no) 14%, transparent); color: var(--no); border-radius: 3px; padding: 11px 14px; font-size: 13.5px; font-weight: 600; margin-bottom: 16px; }
@media (max-width: 860px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-side { height: 34svh; min-height: 220px; }
  .auth-main { padding: 34px 20px 50px; }
  .auth-side-txt h2 { font-size: 44px; }
}

/* ---------- custom cursor (sadece fare) ---------- */
.cursor { position: fixed; left: 0; top: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--acc); pointer-events: none; z-index: 3000; transform: translate(-50%, -50%); mix-blend-mode: difference; transition: width 0.25s, height 0.25s, opacity 0.3s; opacity: 0; }
.cursor.big { width: 54px; height: 54px; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }
@media (hover: hover) and (pointer: fine) { body.has-cursor { cursor: none; } body.has-cursor a, body.has-cursor button { cursor: none; } }

/* ---------- reveal ---------- */
.rv { will-change: transform, opacity; }
@media (prefers-reduced-motion: reduce) {
  .scene { height: auto; } .scene-stage { position: relative; height: auto; }
  .reel { height: auto; } .reel-stage { position: relative; height: auto; }
  .h-scroll i { animation: none; }
}

/* ---------- AYDINLIK TEMA: sarı metin açık zeminde okunmaz → koyu tonlar ---------- */
:root[data-theme="light"] .live-num { color: var(--ink); }
:root[data-theme="light"] .scene-word.is-acc { color: var(--acc-text); }
:root[data-theme="light"] .h-eyebrow b { color: var(--acc); }
:root[data-theme="light"] .reel-item .ri,
:root[data-theme="light"] .fighter-meta .tag { color: var(--acc); }
:root[data-theme="light"] .btn-line { border-color: var(--line2); }
:root[data-theme="light"] .btn-line:hover { border-color: var(--ink); }
:root[data-theme="light"] .rail-item.done i { background: var(--acc-text); }
:root[data-theme="light"] .skip { background: color-mix(in srgb, var(--bg) 80%, transparent); }
:root[data-theme="light"] .sec-no { color: var(--acc-text); }

/* ---------- erişilebilirlik: klavye odağı ---------- */
:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; border-radius: 3px; }
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 46px; }
.pw-eye { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; display: grid; place-items: center; color: var(--muted); border-radius: 3px; }
.pw-eye:hover, .pw-eye.on { color: var(--ink); }
.form-err { animation: shake 0.4s; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
.nav-links a.on { color: var(--ink); position: relative; }
.nav-links a.on::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 3px; height: 2px; background: var(--acc); border-radius: 2px; }

/* ---------- MOBİL SIKILAŞTIRMA: boşluk hissini gider, bölümleri yakınlaştır ---------- */
.auth-side picture { display: block; width: 100%; height: 100%; }
@media (max-width: 860px) {
  .auth-side { height: auto; min-height: 0; aspect-ratio: 16 / 10; margin-top: 60px; }
  .auth-side img { opacity: 1; object-position: 50% 40%; }
  .auth-side::after { background: linear-gradient(180deg, rgba(10,10,11,0) 35%, rgba(10,10,11,0.9) 100%); }
  .auth-side-txt { left: 16px; right: 16px; bottom: 14px; }
  .auth-side-txt h2 { font-size: clamp(34px, 10vw, 52px); }
  .auth-side-txt p { font-size: 11px; margin-top: 6px; }
  .auth-main { padding: 24px 16px 44px; }
}
@media (max-width: 760px) {
  .scene { height: 280vh; }
  .reel { padding: 44px 0 36px; }
  .reel-head { margin-bottom: 18px; }
  .reel-title { font-size: clamp(40px, 13vw, 64px); }
  .reel-item { height: 46svh; }
  .live { padding: 56px 0 60px; }
  .live-num { font-size: clamp(120px, 40vw, 200px); }
  .live-lbl { font-size: clamp(22px, 6.4vw, 30px); }
  .live-sub { font-size: 14px; margin-bottom: 22px; }
  .live-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .live-ctas .btn { width: 100%; padding: 16px 10px; }
  .kadro { padding: 40px 0 52px; }
  .sec-head { margin-bottom: 20px; }
  .sec-title { font-size: clamp(44px, 14vw, 72px); }
  .konum { padding: 36px 0 56px; }
  .konum-grid { gap: 22px; }
  .konum-title { font-size: clamp(44px, 14vw, 72px); }
  .konum-txt { gap: 18px; }
  .konum-map { min-height: 280px; }
  footer { padding: 28px 0 34px; }
  .foot { flex-direction: column; align-items: flex-start; gap: 10px; }
  .roster-head { padding-top: 92px; margin-bottom: 22px; }
  .gal-grid { columns: 2; column-gap: 8px; }
  .gal-grid a { margin-bottom: 8px; }
  .gal-sec { margin: 22px 0 12px; }
}
@media (max-width: 860px) {
  .auth-wrap { display: block; min-height: 0; }
  .auth-main { display: block; padding: 26px 16px 48px; }
  .auth-card { margin-inline: auto; }
}
@media (max-width: 760px) {
  /* aydınlık tema: soluk hardal yerine salonun sarı-siyahı — sarı zemin üstünde siyah yazı */
  :root[data-theme="light"] .hero .h-txt.acc { color: #0b0b0c; background: var(--acc); padding: 0 0.07em; margin-left: -0.07em; }
}
