/* KILPAYI — ana sayfa ve içerik sayfaları teması */
:root {
  --red: #c1121f;
  --red-dark: #780000;
  --white: #f2f2f2;
  --dim: #9a9a9a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* hidden özniteliği her zaman kazanır (display kuralları ezemesin) */
[hidden] { display: none !important; }

html, body { min-height: 100%; }

body {
  background: #000;
  color: var(--white);
  font-family: "Segoe UI", system-ui, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; }

/* ---------- Üst çubuk ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  z-index: 50;
  background: linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,0));
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo span {
  letter-spacing: .3em;
  font-size: .95rem;
  font-weight: 600;
}
/* Neon çizgi logo */
.logo-neon {
  display: inline-block;
  width: 3px;
  height: 26px;
  border-radius: 2px;
  background: linear-gradient(#ff6b6b, #ff2a2a 30%, #c1121f 70%, #ff6b6b);
  box-shadow:
    0 0 4px #ff2a2a,
    0 0 10px rgba(255, 42, 42, .8),
    0 0 22px rgba(193, 18, 31, .6);
  animation: neonPulse 3.2s ease-in-out infinite;
}
@keyframes neonPulse {
  0%, 100% { opacity: .92; box-shadow: 0 0 4px #ff2a2a, 0 0 10px rgba(255,42,42,.8), 0 0 22px rgba(193,18,31,.6); }
  50%      { opacity: 1;   box-shadow: 0 0 6px #ff2a2a, 0 0 16px rgba(255,42,42,.95), 0 0 34px rgba(193,18,31,.8); }
}
/* Büyük neon çizgi (hero) */
.neon-line {
  width: 4px;
  height: clamp(34px, 6vh, 64px);
  margin: 0 auto 18px;
  border-radius: 2px;
  background: linear-gradient(transparent, #ff6b6b 12%, #ff2a2a 50%, #ff6b6b 88%, transparent);
  box-shadow:
    0 0 6px #ff2a2a,
    0 0 18px rgba(255, 42, 42, .85),
    0 0 44px rgba(193, 18, 31, .55);
  animation: neonPulse 3.2s ease-in-out infinite;
}
.sub-red {
  color: var(--red);
  letter-spacing: .28em;
  font-size: .78rem;
  margin-top: 8px;
}
.nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav a {
  color: var(--dim);
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .12em;
  padding: 8px 12px;
}
.nav a:hover { color: var(--white); }
.nav .btn-red {
  color: var(--white);
  border: 1px solid var(--red);
  background: var(--red);
}
.nav .btn-red:hover { background: var(--red-dark); }
.nav .btn-ghost { border: 1px solid #333; color: var(--white); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--red);
  color: var(--white);
  background: transparent;
  text-decoration: none;
  letter-spacing: .18em;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}
.btn:hover { background: var(--red-dark); }
.btn-primary {
  background: var(--red);
  box-shadow: 0 0 24px rgba(193,18,31,.35);
}
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 0 34px rgba(193,18,31,.55); }

/* ---------- Hero: tek ekrana sığan sıkı düzen ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 16px 8px;
  gap: clamp(3px, 1vh, 12px);
}
/* Dikey ritmi gap yönetir — çocukların kendi dikey boşlukları sıfırlanır */
.hero > .neon-line,
.hero > .season-tag,
.hero > h1,
.hero > .sub,
.hero > .sub-red,
.hero > .door-hint,
.hero > .count-label,
.hero > .countdown,
.hero > .count-status,
.hero > .cta-row,
.hero > .stats,
.hero > .legal { margin: 0; }
.hero > .door-stage { margin: 0; }

.admin-note {
  width: min(720px, calc(100vw - 24px));
  border: 1px dashed var(--red-dark);
  color: var(--dim);
  font-size: .72rem;
  letter-spacing: .08em;
  padding: 7px 12px;
}

/* ---------- Lansman ekranı: dev geri sayım ---------- */
.lansman {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 16px;
  gap: clamp(10px, 2.4vh, 28px);
}
.lansman .neon-line { margin: 0; height: clamp(70px, 16vh, 150px); }
.lans-brand {
  font-size: clamp(1.8rem, 5.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: .42em;
  margin-right: -.42em;
}
.lans-msj {
  color: var(--dim);
  max-width: 560px;
  line-height: 1.65;
  font-size: clamp(.85rem, 1.9vw, 1rem);
}
.lans-count {
  display: flex;
  align-items: baseline;
  gap: clamp(6px, 1.6vw, 18px);
}
.lc-unit { text-align: center; }
.lc-unit b {
  display: block;
  font-size: clamp(2.6rem, 11vw, 7rem);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-shadow:
    0 0 18px rgba(255, 42, 42, .55),
    0 0 60px rgba(193, 18, 31, .4);
}
.lc-unit span {
  display: block;
  margin-top: clamp(4px, 1vh, 12px);
  color: var(--dim);
  font-size: clamp(.55rem, 1.2vw, .75rem);
  letter-spacing: .35em;
}
.lc-sep {
  font-size: clamp(2rem, 8vw, 5rem);
  color: var(--red);
  font-weight: 300;
  opacity: .7;
  transform: translateY(-.06em);
}
.lans-count.final .lc-unit b {
  color: #ff5a5a;
  animation: pulse .5s ease-in-out infinite;
}

/* Sis ve kızıl ortam ışığı */
.fog {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(55% 42% at 50% 60%, rgba(193,18,31,.13), transparent 70%),
    radial-gradient(90% 55% at 50% 105%, rgba(120,0,0,.16), transparent 70%);
}
.fog::before, .fog::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 45%;
  bottom: -8%;
  left: -20%;
  background: radial-gradient(50% 55% at 50% 50%, rgba(180,30,40,.07), transparent 70%);
  filter: blur(30px);
  animation: drift 26s ease-in-out infinite alternate;
}
.fog::after {
  bottom: 6%;
  animation-duration: 34s;
  animation-direction: alternate-reverse;
  opacity: .7;
}
@keyframes drift {
  from { transform: translateX(-6%); }
  to   { transform: translateX(6%); }
}

/* Uçuşan toz zerreleri (JS üretir) */
.motes { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.mote {
  position: absolute;
  bottom: -4vh;
  border-radius: 50%;
  background: rgba(255,130,130,.5);
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  12%  { opacity: .65; }
  85%  { opacity: .4; }
  100% { transform: translateY(-105vh) translateX(4vw); opacity: 0; }
}

.hero > * { position: relative; z-index: 2; }

.season-tag {
  color: var(--dim);
  letter-spacing: .35em;
  font-size: .75rem;
}
.hero h1 {
  font-weight: 300;
  font-size: clamp(1.25rem, 2.6vh, 1.9rem);
  letter-spacing: .06em;
}
.hero .sub {
  color: var(--dim);
  margin-top: 10px;
  font-size: .95rem;
}

/* ---------- Kapı sahnesi ---------- */
.door-stage {
  position: relative;
  /* Genişlik hem ekrana hem yüksekliğe göre sınırlanır: sayfa tek ekrana sığar */
  /* Not: yükseklik = genişlik × 1.59 (en-boy oranı) — vh sınırı ona göre seçildi */
  width: min(240px, 60vw, 17vh);
  aspect-ratio: 340 / 540;
  margin: 0 auto;
  perspective: 1100px;
  cursor: pointer;
  animation: appear 2.2s ease-out both;
}
@keyframes appear {
  from { opacity: 0; transform: scale(.96) translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.door-stage svg { display: block; }
.door-stage .frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
/* Kapı kanadı — çerçeve boşluğuna oturur, sol menteşeden içeri açılır */
.leaf-wrap {
  position: absolute;
  left: 8.8%; top: 5.2%;
  width: 82.4%; height: 89.2%;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform 2s cubic-bezier(.65, 0, .3, 1), filter 2s;
  filter: drop-shadow(0 0 26px rgba(193,18,31,.25));
}
.leaf-wrap svg { width: 100%; height: 100%; }
.door-stage.open .leaf-wrap {
  transform: rotateY(26deg);
  filter: drop-shadow(0 0 34px rgba(255,80,60,.35)) brightness(.82);
}

/* Kapı altından sızan ışık */
.underglow {
  position: absolute;
  left: 14%; right: 14%;
  bottom: 4%;
  height: 12px;
  background: radial-gradient(55% 100% at 50% 100%, rgba(255,110,70,.75), rgba(193,18,31,.25) 60%, transparent);
  filter: blur(5px);
  animation: flicker 3.4s ease-in-out infinite;
  transition: opacity 1.5s;
}
@keyframes flicker {
  0%, 100% { opacity: .55; }
  38%      { opacity: .85; }
  55%      { opacity: .6; }
  72%      { opacity: .95; }
}
/* Kapı aralanınca kenardan taşan ışık */
.gaplight {
  position: absolute;
  right: 8%; top: 6%;
  width: 5%; height: 88%;
  background: linear-gradient(90deg, transparent, rgba(255,95,60,.6), transparent);
  filter: blur(6px);
  opacity: 0;
  transition: opacity 1.6s ease;
}
.door-stage.open .gaplight { opacity: 1; }
.door-stage.open .underglow { opacity: 1; filter: blur(7px) brightness(1.4); }

.door-hint {
  color: var(--dim);
  font-size: .75rem;
  letter-spacing: .2em;
  margin-top: 6px;
}

/* Açılış şovu: kapı büyür, kanat ardına kadar açılır, oda ışığı taşar */
.door-stage.megaopen {
  transform: scale(1.55) translateY(-2vh);
  transition: transform 2.4s cubic-bezier(.5, 0, .2, 1);
  z-index: 40;
  cursor: default;
}
.door-stage.megaopen .leaf-wrap {
  transform: rotateY(72deg);
  filter: drop-shadow(0 0 44px rgba(255, 80, 60, .5)) brightness(.7);
}
.door-stage.megaopen .gaplight { opacity: 1; width: 30%; right: 4%; }
.door-stage.megaopen .underglow {
  opacity: 1;
  filter: blur(10px) brightness(2.2);
  height: 22px;
}
.door-stage.megaopen .frame { filter: brightness(1.5) saturate(1.5); }

/* İçeri süzülen yolcu maskeleri */
.fly-av {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--red);
  box-shadow: 0 0 14px rgba(193, 18, 31, .7);
  z-index: 45;
  pointer-events: none;
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition: transform 1.9s cubic-bezier(.45, 0, .3, 1), opacity 1.9s ease-in;
}

/* ---------- Geri sayım ---------- */
.count-label {
  margin-top: 18px;
  color: var(--dim);
  letter-spacing: .35em;
  font-size: .72rem;
}
.countdown {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.unit {
  min-width: clamp(58px, 8.5vh, 74px);
  padding: clamp(6px, 1.1vh, 10px) 8px clamp(5px, .9vh, 8px);
  border: 1px solid #262626;
  background: rgba(8,8,8,.82);
}
.unit b {
  display: block;
  font-size: clamp(1.35rem, 2.9vh, 1.8rem);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 18px rgba(193,18,31,.55);
}
.unit span {
  display: block;
  margin-top: 6px;
  font-size: .6rem;
  letter-spacing: .28em;
  color: var(--dim);
}
.countdown.final .unit b {
  color: #ff5a5a;
  animation: pulse .6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { text-shadow: 0 0 14px rgba(255,60,60,.5); }
  50%      { text-shadow: 0 0 30px rgba(255,60,60,.95); }
}
.count-status {
  margin-top: 12px;
  color: var(--red);
  letter-spacing: .25em;
  font-size: .85rem;
  min-height: 1.2em;
}

/* ---------- CTA + sayaçlar ---------- */
.cta-row { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.stats {
  display: flex;
  gap: 34px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.stat b {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
}
.stat span {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: .68rem;
  letter-spacing: .25em;
}

.legal {
  margin-top: 20px;
  color: #6f6f6f;
  font-size: .72rem;
}

/* ---------- İçerik sayfası (Nasıl Oynanır) ---------- */
.page {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 20px 70px;
}
.page h1 {
  font-weight: 300;
  letter-spacing: .12em;
  font-size: 1.7rem;
  text-align: center;
}
.page .lead { color: var(--dim); text-align: center; margin-top: 10px; }
.page h2 {
  margin-top: 44px;
  font-weight: 400;
  letter-spacing: .1em;
  font-size: 1.05rem;
  color: var(--red);
}
.step {
  display: flex;
  gap: 18px;
  border: 1px solid #1f1f1f;
  background: rgba(10,10,10,.85);
  padding: 18px 20px;
  margin-top: 12px;
  text-align: left;
}
.step .no {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 700;
  min-width: 34px;
  line-height: 1.2;
}
.step h3 { font-size: .98rem; font-weight: 600; letter-spacing: .04em; }
.step p { color: var(--dim); font-size: .9rem; margin-top: 6px; line-height: 1.55; }
.faq { margin-top: 12px; border: 1px solid #1f1f1f; background: rgba(10,10,10,.85); padding: 16px 20px; }
.faq h3 { font-size: .95rem; }
.faq p { color: var(--dim); font-size: .9rem; margin-top: 6px; line-height: 1.55; }
.center { text-align: center; }

/* ---------- Kazanan vitrini (ana sayfa, puanlama sonrası 5 dk) ---------- */
.showcase {
  width: min(720px, calc(100vw - 24px));
  border: 1px solid var(--red-dark);
  border-top: 3px solid var(--red);
  background: rgba(10,10,10,.92);
  box-shadow: 0 0 34px rgba(193,18,31,.25);
  padding: 16px 18px 18px;
  margin-bottom: 26px;
}
.sc-title {
  color: var(--red);
  letter-spacing: .35em;
  font-size: .7rem;
  text-align: center;
  margin-bottom: 14px;
}
.sc-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
.sc-p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 64px;
  animation: scIn .6s cubic-bezier(.2, 1.4, .4, 1) both;
  position: relative;
}
@keyframes scIn {
  from { opacity: 0; transform: translateY(16px) scale(.6); }
  to   { opacity: 1; transform: none; }
}
.sc-p img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #333;
}
.sc-p.first img {
  width: 60px;
  height: 60px;
  border-color: var(--red);
  box-shadow: 0 0 18px rgba(193,18,31,.55);
}
.sc-key { font-size: 1rem; margin-bottom: -4px; }
.sc-name {
  font-size: .58rem;
  letter-spacing: .06em;
  color: var(--white);
  white-space: nowrap;
  max-width: 74px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc-p.first .sc-name { font-size: .68rem; color: #ffb3b3; }
.sc-time { font-size: .55rem; color: var(--dim); font-variant-numeric: tabular-nums; }
.sc-more .sc-plus {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px dashed var(--red-dark);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 600;
}

/* ---------- Kalıcı vitrin: sezon kazananı ---------- */
.champion {
  margin-top: 18px;
  padding: 22px 34px;
  border: 1px solid var(--red);
  background: rgba(10,10,10,.92);
  box-shadow: 0 0 40px rgba(193,18,31,.35);
  animation: appear 1.6s ease-out both;
  text-align: center;
}
.champ-av {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid var(--red);
  box-shadow: 0 0 22px rgba(193,18,31,.6);
  margin-top: 12px;
}
.champ-name {
  font-size: 1.35rem;
  letter-spacing: .12em;
  margin-top: 10px;
}
.champ-sub { color: var(--dim); font-size: .85rem; margin-top: 6px; }

/* ---------- PWA / bildirim çubuğu ---------- */
.kk-banner {
  position: fixed;
  left: 50%;
  bottom: 74px;
  transform: translateX(-50%);
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(560px, calc(100vw - 24px));
  padding: 13px 16px;
  border: 1px solid var(--red-dark);
  background: rgba(8,8,8,.96);
  box-shadow: 0 6px 30px rgba(0,0,0,.7), 0 0 18px rgba(193,18,31,.25);
  animation: bannerUp .5s ease-out;
}
@keyframes bannerUp {
  from { opacity: 0; transform: translate(-50%, 14px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.kk-banner-ic { font-size: 1.3rem; }
.kk-banner-tx { flex: 1; font-size: .84rem; line-height: 1.45; color: var(--white); }
.kk-banner-bt { display: flex; gap: 8px; }
.kk-banner button {
  border: 1px solid #333;
  background: transparent;
  color: var(--white);
  padding: 8px 14px;
  font-size: .74rem;
  letter-spacing: .12em;
  cursor: pointer;
  white-space: nowrap;
}
.kk-banner .btn-ekle { border-color: var(--red); background: var(--red); }
.kk-banner .btn-ekle:hover { background: var(--red-dark); }
.kk-banner .btn-vazgec:hover { border-color: var(--dim); }
@media (max-width: 560px) {
  .kk-banner { flex-wrap: wrap; bottom: 8px; }
  .kk-banner-bt { margin-left: auto; }
}

/* ---------- Canlı Meydan (sohbet) ---------- */
.chat-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  margin: 14px auto 0;
  text-align: left;
}
.chat-title {
  color: var(--dim);
  letter-spacing: .3em;
  font-size: .72rem;
  margin-bottom: 10px;
  text-align: center;
}
.chat-list {
  height: clamp(130px, 20vh, 240px);
  overflow-y: auto;
  border: 1px solid #1f1f1f;
  background: rgba(8,8,8,.85);
  padding: 14px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--red-dark) #111;
}
.chat-msg { font-size: .88rem; line-height: 1.45; margin-bottom: 10px; color: var(--white); }
.chat-msg .who { color: var(--red); font-weight: 600; letter-spacing: .04em; }
.chat-av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  vertical-align: -6px;
  margin-right: 6px;
}
.chat-msg .at { color: #555; font-size: .7rem; }
.chat-form { display: flex; gap: 8px; margin-top: 6px; }
.chat-form input {
  flex: 1;
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  color: var(--white);
  padding: 12px 14px;
  font-size: .92rem;
}
.chat-form input:focus { outline: none; border-color: var(--red); }
.chat-form .btn { padding: 12px 22px; }
.chat-note { color: var(--dim); font-size: .78rem; margin-top: 8px; min-height: 1.1em; }
.chat-wrap.locked .chat-list { opacity: .6; }

/* Hayatta kalanlar tablosu (meydan) */
.survivors {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: .88rem;
}
.survivors th {
  color: var(--dim);
  font-size: .65rem;
  letter-spacing: .25em;
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid #222;
}
.survivors td { padding: 9px 10px; border-bottom: 1px solid #151515; }
.survivors .who { color: var(--white); letter-spacing: .05em; }
.survivors .num { color: var(--red); font-variant-numeric: tabular-nums; }

/* Profil maskesi + maske seçim ızgarası */
.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--red);
  box-shadow: 0 0 24px rgba(193,18,31,.45);
  margin-top: 14px;
}
.avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 8px;
  width: 100%;
  max-width: 640px;
  max-height: 340px;
  overflow-y: auto;
  padding: 12px;
  margin-top: 14px;
  border: 1px solid #1f1f1f;
  background: rgba(8,8,8,.85);
  scrollbar-width: thin;
  scrollbar-color: var(--red-dark) #111;
}
.avatar-grid img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .15s, transform .12s;
}
.avatar-grid img:hover { border-color: #555; transform: scale(1.08); }
.avatar-grid img.sel {
  border-color: var(--red);
  box-shadow: 0 0 12px rgba(193,18,31,.6);
}

/* Rozet vitrini (profil) */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 640px;
  margin-top: 18px;
}
.badge-card {
  border: 1px solid #2a2a2a;
  background: rgba(10,10,10,.85);
  padding: 18px 12px;
  text-align: center;
}
.badge-card .ic { font-size: 2rem; filter: drop-shadow(0 0 10px rgba(193,18,31,.5)); }
.badge-card h4 { margin-top: 8px; font-size: .85rem; letter-spacing: .12em; font-weight: 600; }
.badge-card .dt { color: var(--dim); font-size: .7rem; margin-top: 4px; }
.badge-card .links { margin-top: 10px; display: flex; gap: 6px; justify-content: center; }
.badge-card .links a {
  color: var(--dim);
  font-size: .7rem;
  letter-spacing: .1em;
  text-decoration: none;
  border: 1px solid #2a2a2a;
  padding: 5px 9px;
}
.badge-card .links a:hover { color: var(--white); border-color: var(--red); }

@media (max-width: 560px) {
  .hero { padding-top: 84px; }
  .hero h1 { font-size: 1.1rem; }
  .hero .sub { font-size: .84rem; }
  .door-stage { width: min(190px, 52vw, 14.5vh); }
  .stats { gap: 14px; }
  .stat b { font-size: .95rem; }
  .stat span { font-size: .58rem; }
  .unit { min-width: 62px; padding: 9px 6px 7px; }
  .unit b { font-size: 1.5rem; }
  .stats { gap: 18px; }
  .stat b { font-size: 1.05rem; }
  .btn { padding: 12px 26px; font-size: .85rem; }
  .site-header { padding: 10px 12px; flex-wrap: wrap; gap: 4px; }
  .logo span { font-size: .78rem; letter-spacing: .18em; }
  .nav a { padding: 6px 7px; font-size: .72rem; }
  .nav a[href*="nasil-oynanir"] { display: none; } /* sayfada zaten büyük butonu var */
  .season-tag { font-size: .62rem; letter-spacing: .25em; }
}
