/* ==========================================================================
   Euxine Games — style.css
   TR (/) ve EN (/en/) sayfaları bu tek stil dosyasını paylaşır.
   Düz CSS — preprocessor / build adımı yok.
   ========================================================================== */

/* ==========================================================================
   1. FONTS
   ========================================================================== */

/* Archivo — değişken font (wdth 62–125, wght 100–900).
   "Archivo Expanded" ayrı bir dosya değil; wdth ekseninin 125 ucu.
   Başlıklarda font-stretch:125% ile expanded görünüm elde ediyoruz. */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-VariableFont_wdth,wght.ttf") format("truetype-variations"),
       url("../fonts/Archivo-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}

/* IBM Plex Mono — etiket / teknik detay.
   Tasarımda yalnızca 400 ve 600 kullanılıyor; klasördeki diğer ağırlıklar
   (Light, Medium, Bold, italikler) bilinçli olarak kaydedilmedi ki gereksiz
   indirme olmasın. Yeni bir ağırlık kullanacaksan önce buraya ekle. */
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   2. TOKENS
   ========================================================================== */

:root {
  /* --- Palet (ham token) — CLAUDE.md ile senkron --- */
  --coal:     #0B0B0C;
  --panel:    #16161A;
  --turkuaz:  #17E0CB;
  --hazard:   #FF6A2B;
  --concrete: #8A8A92;
  --chalk:    #F4F4F1;

  /* --- Yüzey rampası (Coal ile Panel arasını dolduran ara tonlar) --- */
  --ink-850: #0E0E11; /* alternatif bölüm zemini */
  --ink-800: #111114; /* hover yüzeyi */
  --ink-750: #141418; /* seçili yüzey */
  --ink-650: #1A1A1F; /* saç teli kenarlık */
  --ink-600: #1E1E24; /* görsel çerçevesi */
  --ink-500: #2A2A30; /* outline buton kenarlığı */
  --ink-450: #2C2C34; /* kenarlık hover */
  --ink-400: #4A4A52; /* pasif numara */
  --ink-300: #5C5C64; /* soluk etiket */

  /* --- Metin rampası --- */
  --text-hi:  #E4E4E6;
  --text-mid: #D6D6DA;
  --text-low: #B6B6BC;

  /* --- Semantik roller — bileşen yazarken bunları kullan --- */
  --bg:         var(--coal);
  --bg-raised:  var(--ink-850);
  --surface:    var(--panel);
  --text:       var(--chalk);
  --text-muted: var(--concrete);
  --accent:     var(--turkuaz);
  --accent-2:   var(--hazard);
  --border:     var(--ink-650);
  --border-strong: var(--ink-500);

  /* Aksan dolgular üzerinde metin daima koyu (kontrast için) */
  --on-accent: var(--coal);

  /* --- Tipografi --- */
  --font-display: "Archivo", system-ui, -apple-system, sans-serif;
  --font-body:    "Archivo", system-ui, -apple-system, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "Cascadia Mono", "Segoe UI Mono",
                  Menlo, Consolas, monospace;

  /* --- Ölçü --- */
  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 44px);
  --section-y: clamp(72px, 10vw, 130px);
  --nav-h: 72px;
  --radius: 3px;
}

/* ==========================================================================
   3. RESET / BASE
   ========================================================================== */

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--chalk); }

button { font: inherit; color: inherit; }

h1, h2, h3, p, ul { margin: 0; }
ul { list-style: none; padding: 0; }

::selection { background: var(--accent); color: var(--coal); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

section { scroll-margin-top: calc(var(--nav-h) + 12px); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 12px 18px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  color: var(--on-accent);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   4. LAYOUT PRIMITIVES
   ========================================================================== */

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}

.section {
  padding: var(--section-y) var(--gutter);
}

.section--raised {
  background: var(--bg-raised);
  border-top: 1px solid var(--surface);
  border-bottom: 1px solid var(--surface);
}

.section--ruled {
  border-top: 1px solid var(--surface);
}

/* Bölüm başlığı bloğu */
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 16px;
}

.h2 {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 60px);
  line-height: .98;
  letter-spacing: -.01em;
  color: var(--chalk);
}

.h3 {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--chalk);
}

.lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--text-low);
}

.section-head {
  max-width: 60ch;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.section-head .h2 { margin-bottom: 20px; }

/* Başlık solda, açıklama sağda duran varyant */
.section-head--split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.section-head--split .h2 { margin-bottom: 0; }
.section-head--split .section-head__aside {
  max-width: 38ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.btn--solid {
  background: var(--accent);
  color: var(--on-accent);
  padding: 14px 22px;
}
.btn--solid:hover { background: var(--chalk); color: var(--on-accent); }

.btn--lg { font-size: 14px; letter-spacing: .04em; padding: 16px 26px; }

.btn--outline {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-strong);
  padding: 13px 16px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .06em;
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

/* Tıklanamayan, sadece bilgi veren rozet (buton değil) */
.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--text-low);
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  padding: 13px 17px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

/* Turuncu vurgu etiketi */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--on-accent);
  background: var(--accent-2);
  padding: 6px 11px;
  border-radius: 2px;
}

/* ==========================================================================
   6. NAV
   ========================================================================== */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}

.nav.is-scrolled {
  background: rgb(11 11 12 / .9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--surface);
}

/* Mobil menü açıkken şeffaf zemin okunmaz olur */
.nav.is-open { background: var(--coal); }

.nav__bar {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo { display: flex; align-items: center; flex: 0 0 auto; }

/* Logo dosyasının içinde ~%41 şeffaf pay var (üstte %18, altta %23):
   görünen marka, verilen yüksekliğin ancak %59'u kadar. Bu yüzden img'i
   navbar yüksekliğinin tamamına yayıyoruz — dosyanın kendi payı da
   üst/alt nefes boşluğu görevini görüyor. */
.nav__logo img { height: var(--nav-h); width: auto; }

.nav__cluster {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--text-muted);
  transition: color .18s ease;
}
.nav__link:hover { color: var(--chalk); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* TR / EN geçişi — JS yok, karşı dilin statik sayfasına giden bağlantı */
.langswitch {
  display: flex;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink-300);
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  padding: 7px 10px;
  transition: border-color .18s ease;
}
.langswitch:hover { border-color: var(--accent); color: var(--ink-300); }
.langswitch__on { color: var(--accent); font-weight: 600; }
.langswitch__sep { color: #3A3A42; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--chalk);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 20px var(--gutter) 28px;
  background: var(--coal);
  border-bottom: 1px solid var(--surface);
}
.nav__mobile a {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--chalk);
  padding: 6px 0;
}
.nav__mobile-foot {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #1D1D22;
}
.nav__mobile-foot a { padding: 0; }

/* ==========================================================================
   7. HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg);
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) var(--gutter) clamp(72px, 12vh, 120px);
  display: grid;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}

/* Steam widget'ı sabit 646px. İki sütuna ancak sol kolona nefes kalacak
   kadar yer varken geçiyoruz; altında metin üstte, widget altta dizilir. */
@media (min-width: 1240px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr) 646px; }
}

.hero__copy { min-width: 0; }

.hero__widget {
  width: 100%;
  max-width: 646px;
}

.hero__widget iframe {
  display: block;
  width: 100%;
  height: 190px;
  border: 0;
  border-radius: 4px;
}

.hero .tag { margin-bottom: 22px; }

.hero__title { line-height: .86; }

/* Üst sınır, iki sütunlu düzende sol kolona sığacak şekilde seçildi */
.hero__title-main {
  display: block;
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(46px, 8vw, 104px);
  letter-spacing: -.02em;
  color: var(--accent);
}

.hero__title-sub {
  display: block;
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(16px, 2.4vw, 28px);
  letter-spacing: .01em;
  color: var(--chalk);
  margin-top: clamp(6px, 1vw, 12px);
}

.hero__sub {
  max-width: 46ch;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--text-hi);
  margin-top: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: clamp(32px, 5vh, 48px);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  translate: -50% 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--ink-300);
  animation: euxBounce 2.4s ease-in-out infinite;
}

@keyframes euxBounce {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50%      { transform: translateY(6px); opacity: 1; }
}
@keyframes euxPulse {
  0%, 100% { opacity: .35; }
  50%      { opacity: .7; }
}

/* ==========================================================================
   8. GAMES
   ========================================================================== */

.games__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

/* Numaralı katalog listesi (tablist) */
.games__index {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background .18s ease, border-color .18s ease;
  flex: 0 0 auto;
}
.game-tab:hover { border-color: var(--ink-450); }

.game-tab__no {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink-400);
  transition: color .18s ease;
}

.game-tab__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.game-tab__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .18s ease;
}

.game-tab__status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--ink-300);
  transition: color .18s ease;
}

/* Duyurulmamış slotlar daha sönük */
.game-tab--locked .game-tab__no   { color: var(--ink-500); }
.game-tab--locked .game-tab__name { color: var(--ink-400); }

/* Seçili sekme */
.game-tab[aria-selected="true"] {
  background: var(--ink-750);
  border-color: var(--accent);
}
.game-tab[aria-selected="true"] .game-tab__no,
.game-tab[aria-selected="true"] .game-tab__status { color: var(--accent); }
.game-tab[aria-selected="true"] .game-tab__name   { color: var(--chalk); }

/* --- Detay paneli --- */
.games__detail { min-width: 0; }

.game-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.game-panel[hidden] { display: none; }

.game-panel__cover {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--ink-600);
  background: var(--surface);
}
.game-panel__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-panel__cover .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  letter-spacing: .08em;
  padding: 6px 10px;
}

.game-panel__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.game-panel__status { letter-spacing: .12em; color: var(--accent); }
.game-panel__genre  { letter-spacing: .08em; color: var(--ink-300); }
.game-panel__meta .dot { width: 8px; height: 8px; color: var(--accent); }

.game-panel__title {
  font-size: clamp(30px, 4vw, 52px);
  line-height: .98;
  font-weight: 800;
  margin-bottom: 18px;
}

.game-panel__desc {
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-low);
  margin-bottom: 28px;
}

.game-panel__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.game-panel__features li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 15px;
  color: var(--text-mid);
}
.game-panel__features li::before {
  content: "\203A";
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  flex: 0 0 auto;
}

.game-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* Duyurulmamış slot paneli */
.game-panel--locked {
  border: 1px dashed #24242B;
  border-radius: 4px;
  background: repeating-linear-gradient(135deg, #0E0E10 0 15px, #111114 15px 30px);
  padding: clamp(40px, 7vw, 80px);
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  min-height: 340px;
}

.game-panel__ghost-no {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 800;
  font-size: clamp(60px, 10vw, 120px);
  line-height: .8;
  color: #1C1C22;
}

.game-panel__soon {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--ink-300);
  animation: euxPulse 2.6s ease-in-out infinite;
}

.game-panel--locked .h3 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink-300);
}

.game-panel__locked-body {
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.6;
  color: #6A6A72;
}

/* ==========================================================================
   9. STUDIO / VALUES
   ========================================================================== */

/* 1px'lik gap + aynı renkte zemin = tek piksellik ayraç ızgarası */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.value {
  background: var(--bg-raised);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .18s ease;
}
.value:hover { background: var(--ink-800); }

.value__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--accent);
}

.value .h3 {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.1;
}

.value p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   10. TEAM
   ========================================================================== */

.team {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 32px);
}

.member {
  width: 190px; /* 300px'ten ~%63'e küçültüldü */
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.member__photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--ink-600);
  background: var(--surface);
  overflow: hidden;
}
.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Kare olmayan portrelerde kadrajı --pos ile tek tek ayarlıyoruz */
  object-position: var(--pos, center);
}

/* Kart küçüldü; metin de orantılı kaldı ki blok tepeden ağır durmasın */
.member__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.member__role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .03em;
  color: var(--accent);
}

/* ==========================================================================
   11. CONTACT
   ========================================================================== */

.contact__lead {
  max-width: 50ch;
  margin-bottom: 40px;
}

.maillist {
  max-width: 680px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.maillist__row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 22px clamp(18px, 3vw, 28px);
  color: var(--chalk);
  transition: background .18s ease, color .18s ease;
}
.maillist__row + .maillist__row { border-top: 1px solid var(--border); }
.maillist__row:hover { background: var(--ink-800); color: var(--accent); }

.maillist__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--text-muted);
  width: 72px;
  flex: 0 0 auto;
}

.maillist__value {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 800;
  font-size: clamp(19px, 2.6vw, 30px);
  line-height: 1;
  letter-spacing: -.02em;
  color: inherit;
  word-break: break-word;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */

.footer {
  border-top: 1px solid var(--surface);
  padding: 32px var(--gutter);
}

.footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Nav'daki ile aynı sebep: dosyadaki şeffaf pay yüzünden yükseklik cömert */
.footer__logo { height: 56px; width: auto; opacity: .75; }

.footer__copy {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-300);
}

.footer__links { display: flex; gap: 24px; }
.footer__links a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.footer__links a:hover { color: var(--chalk); }

/* ==========================================================================
   13. RESPONSIVE
   ========================================================================== */

@media (max-width: 860px) {
  .nav__cluster { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__mobile { display: flex; }

  .games__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Dar ekranda katalog yatay kaydırılan bir şeride dönüşür */
  .games__index {
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }
  .game-tab {
    min-width: 210px;
    scroll-snap-align: start;
  }

  .section-head--split { align-items: flex-start; }
}

@media (max-width: 520px) {
  /* .member 190px'te kalır — dar ekranda alt alta dizilir */
  .maillist__label { width: auto; }
  .hero__scroll { display: none; }
}

/* ==========================================================================
   14. MOTION / PRINT
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
