/* ===== PRC GAMES — Vanilla HTML/CSS/JS recreation =====
   Bronze + Blue dark theme · Bilingual EN/TR · Intro-covered page transitions
============================================================== */

/* EXAM WATCH! marka paleti — renkler doğrudan oyunun logosundan ve
   oyun içi arayüz ekranlarından örneklendi:
     #f8b000  logodaki altın sarısı ("WATCH!")
     #ffffff  logodaki beyaz ("EXAM")
     #0b1017  oyun içi yönetim ekranlarının lacivert-siyah zemini
     #4fb3c4  arayüzdeki teal vurgu
   Not: --bronze / .bronze-text isimleri eski temadan kalma; artık
   altın sarısını taşıyorlar. */
:root {
  --bg: #0b1017;
  --surface: #141c25;
  --bronze: #f8b000;
  --bronze-light: #ffc93c;
  --ice: #4fb3c4;
  --ink: #e9ecf1;
  --ink-muted: #a9b0bb;   /* zeminle ~7:1 */
  --ink-dim: #8b929d;     /* eskiden #6e6b67 idi — ~3.4:1 ile AA altındaydı */
  --border: rgba(255, 255, 255, 0.1);
  --border-soft: rgba(255, 255, 255, 0.05);
  --shadow: 0 0 60px rgba(248, 176, 0, 0.15);
}

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
img { display: block; max-width: 100%; }

/* Klavye odağı: koyu temada varsayılan halka görünmüyordu */
:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Hareket hassasiyeti: tüm animasyon ve geçişleri etkisizleştir */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .intro { display: none !important; }
}
::selection { background: var(--bronze); color: var(--bg); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #243040; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--bronze); }

/* ===== Typography helpers ===== */
.font-display { font-family: 'Bebas Neue', sans-serif; }
.font-heading { font-family: 'Outfit', sans-serif; }
.font-body { font-family: 'Manrope', sans-serif; }

/* Logodaki beyaz -> altın geçişini izler (eskiden sonu teal'di, çamurlanıyordu) */
.bronze-text {
  background: linear-gradient(180deg, #ffffff 0%, var(--bronze-light) 42%, var(--bronze) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--bronze);
}

.label-muted {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--ink-muted);
}

/* ===== Grain overlay ===== */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 60;
  mix-blend-mode: overlay;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(7%, -25%); }
  50% { transform: translate(-15%, 10%); }
  70% { transform: translate(0%, 15%); }
  90% { transform: translate(-10%, 10%); }
}

/* ===== Intro overlay ===== */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 1.5s cubic-bezier(0.76, 0, 0.24, 1);
}
/* Sayfa geçişlerinde logo ve yükleme çizgisinin rahatça algılanabilmesi için
   perde animasyonu ilk açılışla aynı, sinematik sürede oynatılır. */
.intro.intro-fast { transition-duration: 1.5s; }
.intro.intro-cover-instant { transform: translateY(0); transition: none; }
.intro.intro-cover { transform: translateY(0); }
.intro.intro-reveal { transform: translateY(-100%); }

.intro-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  background: radial-gradient(circle, rgba(248, 176, 0,0.4) 0%, rgba(79, 179, 196,0.1) 50%, transparent 70%);
}

/* Açılış ekranında gerçek stüdyo logosu */
.intro-logo {
  display: block;
  width: min(440px, 66vw);
  height: auto;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
}
.intro.intro-cover .intro-logo {
  animation: introLogo 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
@keyframes introLogo {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.intro-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
  margin-top: 1.5rem;
  transform: scaleX(0);
  transform-origin: left;
}
.intro.intro-cover .intro-divider {
  animation: dividerGrow 0.7s ease-out 0.85s forwards;
}
@keyframes dividerGrow { to { transform: scaleX(1); } }

.intro-sub {
  margin-top: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--ink-muted);
  text-align: center;
  opacity: 0;
}
.intro.intro-cover .intro-sub {
  animation: fadeIn 0.5s ease 1s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.intro-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
  z-index: 2;
}

.intro-meta {
  position: absolute;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  opacity: 0;
}
.intro.intro-cover .intro-meta {
  animation: fadeIn 0.5s ease forwards;
}
.intro-meta.tl { top: 1.5rem; left: 1.5rem; color: var(--ink-muted); display: flex; align-items: center; gap: 0.5rem; animation-delay: 0.15s !important; }
.intro-meta.tr { top: 1.5rem; right: 1.5rem; text-align: right; animation-delay: 0.2s !important; }
.intro-meta.tr .a { color: var(--bronze); display: block; }
.intro-meta.tr .b { color: var(--ink-dim); display: block; margin-top: 0.25rem; }
@media (min-width: 768px) {
  .intro-meta.tl { top: 2.5rem; left: 3rem; }
  .intro-meta.tr { top: 2.5rem; right: 3rem; }
}
.dot-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--bronze);
  animation: pulseSoft 6s ease-in-out infinite;
}
@keyframes pulseSoft {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.intro-bar {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
}
.intro.intro-cover .intro-bar {
  animation: fadeIn 0.4s ease 0.3s forwards;
}
@media (min-width: 768px) {
  .intro-bar { bottom: 2rem; left: 3rem; right: 3rem; }
}
.intro-bar .lbl {
  width: 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--ink-dim);
}
.intro-bar .lbl.r { text-align: right; color: var(--bronze); }
.intro-bar .track {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.intro-bar .fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bronze), var(--bronze), var(--ice));
  transform: scaleX(0);
  transform-origin: left;
}
.intro.intro-cover .intro-bar .fill {
  animation: barFill 1.4s ease-in-out forwards;
}
@keyframes barFill { to { transform: scaleX(1); } }

/* ===== Navbar ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(11, 16, 23, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(-80px);
}
.nav.nav-ready {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1), background 0.5s ease, border-color 0.5s ease;
}
.nav.scrolled {
  background: rgba(11, 16, 23, 0.85);
  border-bottom-color: var(--border-soft);
}
.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .nav-inner { padding: 0 2rem; height: 80px; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 3rem; } }

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 0;
}
@media (min-width: 768px) { .logo { gap: 0.75rem; } }
/* Stüdyo logosu (media/web/prc-logo.png — şeffaf, "C" harfi altın) */
.logo-img {
  display: block;
  height: 32px;
  width: auto;
  flex-shrink: 0;
  transition: filter 0.35s;
}
@media (min-width: 768px)  { .logo-img { height: 36px; } }
@media (min-width: 1280px) { .logo-img { height: 40px; } }
.logo:hover .logo-img {
  filter: brightness(1.1) drop-shadow(0 0 14px rgba(248, 176, 0, 0.4));
}
.logo-sep,
.logo-tag { display: none; }
@media (min-width: 1280px) {
  .logo-sep {
    display: block;
    width: 1px; height: 26px;
    background: var(--border);
  }
  .logo-tag {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--ink-dim);
    white-space: nowrap;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
  list-style: none;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
@media (min-width: 1280px) { .nav-links { gap: 2.5rem; } }
.nav-links a {
  position: relative;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  transition: color 0.3s;
  white-space: nowrap;
}
@media (min-width: 1280px) { .nav-links a { letter-spacing: 0.25em; } }
.nav-links a:hover { color: white; }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: white; }
.nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex; align-items: center; gap: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 768px) { .nav-right { gap: 0.75rem; } }

.lang-switch {
  display: none;
  align-items: center; gap: 4px;
  border: 1px solid var(--border);
  padding: 4px;
  border-radius: 9999px;
}
@media (min-width: 640px) { .lang-switch { display: flex; } }
.lang-switch button {
  padding: 4px 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 9999px;
  color: var(--ink-muted);
  transition: all 0.3s;
}
@media (min-width: 768px) { .lang-switch button { padding: 4px 12px; } }
.lang-switch button:hover { color: white; }
.lang-switch button.active {
  background: var(--bronze);
  color: var(--bg);
}

.wishlist-pill {
  display: none;
  align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ice);
  border: 1px solid rgba(79, 179, 196, 0.3);
  padding: 8px 16px;
  transition: all 0.3s;
}
@media (min-width: 1280px) { .wishlist-pill { display: inline-flex; } }
.wishlist-pill:hover { background: var(--ice); color: var(--bg); }
.wishlist-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ice);
  animation: pulseSoft 6s ease-in-out infinite;
}

.menu-btn {
  width: 36px; height: 36px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  border: 1px solid var(--border);
}
@media (min-width: 1024px) { .menu-btn { display: none; } }
.menu-btn span {
  display: block;
  width: 16px; height: 1px;
  background: white;
  transition: transform 0.3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: rgba(11, 16, 23, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-soft);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1);
}
@media (max-width: 1023px) {
  .mobile-menu { display: block; }
}
.mobile-menu.open { max-height: 500px; }
.mobile-menu-inner { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: white;
  transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--bronze); }
.mobile-menu .lang-mobile { display: flex; gap: 8px; margin-top: 0.5rem; }
.mobile-menu .lang-mobile button {
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid var(--border);
  color: var(--ink-muted);
}
.mobile-menu .lang-mobile button.active {
  background: var(--bronze);
  color: var(--bg);
  border-color: var(--bronze);
}

/* ===== Layout primitives ===== */
.container { max-width: 1600px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 3rem; } }

.section-divider { border-top: 1px solid var(--border-soft); }

.section-head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .section-head { margin-bottom: 5rem; } }
.section-head .line { flex: 1; height: 1px; background: var(--border); }

/* ===== Hero (home) ===== */
/* Metin artık fotoğrafın üstünde değil, düz koyu zeminde duruyor:
   perde/bulanıklık yamalarına gerek kalmadı, sanat da kırpılmadan
   kendi çerçevesinde keskin kalıyor. */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 9rem 3rem 6rem; } }

/* Arka plan tamamen CSS — oyunun arayüzündeki ızgara dokusu.
   Böylece hero'da hiç arka plan görseli inmiyor. */
.hero-atmos {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 32% 45%, #000 15%, transparent 78%);
  mask-image: radial-gradient(ellipse 85% 70% at 32% 45%, #000 15%, transparent 78%);
}
/* Sıcak/soğuk lekeler — derinlik verir, hiçbir şeyi bastırmaz */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 18% 40%, rgba(248, 176, 0, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 55% 60% at 88% 62%, rgba(79, 179, 196, 0.10) 0%, transparent 65%);
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
/* Sol paneli arkadan aydınlatan sıcak leke — logoyu zeminden ayırır */
.hero-glow {
  position: absolute;
  left: 26%; top: 50%;
  transform: translate(-50%, -50%);
  width: 62vw; height: 62vw;
  max-width: 900px; max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 176, 0, 0.35) 0%, rgba(248, 176, 0, 0.08) 42%, transparent 70%);
  filter: blur(70px);
  opacity: 0.22;
  z-index: -1;
  animation: pulseSoft 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 4rem;
  }
}
@media (min-width: 1440px) { .hero-grid { gap: 5.5rem; } }

/* ===== Sanat paneli ===== */
.hero-art { position: relative; }
.hero-art::before {   /* çerçevenin arkasındaki sıcak ışıma */
  content: "";
  position: absolute;
  inset: -12% -8%;
  background: radial-gradient(ellipse at center, rgba(248, 176, 0, 0.2) 0%, transparent 68%);
  filter: blur(50px);
  pointer-events: none;
}
.hero-art-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;          /* kaynakla birebir — kırpma yok */
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(248, 176, 0, 0.08);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.6s, box-shadow 0.6s;
  opacity: 0;
  animation: rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards;
}
.hero-art-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-art-frame:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 176, 0, 0.4);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(248, 176, 0, 0.16);
}
.hero-art-frame .corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: rgba(248, 176, 0, 0.75);
  z-index: 2;
}
.hero-art-frame .corner.tl { top: 14px; left: 14px; border-top: 1px solid; border-left: 1px solid; }
.hero-art-frame .corner.tr { top: 14px; right: 14px; border-top: 1px solid; border-right: 1px solid; }
.hero-art-frame .corner.bl { bottom: 14px; left: 14px; border-bottom: 1px solid; border-left: 1px solid; }
.hero-art-frame .corner.br { bottom: 14px; right: 14px; border-bottom: 1px solid; border-right: 1px solid; }
.hero-badge {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: rgba(11, 16, 23, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(248, 176, 0, 0.3);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--bronze);
  white-space: nowrap;
}
@media (min-width: 768px) { .hero-badge { left: 22px; bottom: 22px; } }
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bronze);
  animation: pulseSoft 6s ease-in-out infinite;
}

/* Sol içerik paneli — altın dikey çizgiyle çapalanır */
.hero-panel {
  position: relative;
  padding-left: 1.35rem;
  max-width: 34rem;
}
@media (min-width: 1024px) { .hero-panel { padding-left: 1.75rem; max-width: none; } }
.hero-panel::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 2px;
  background: linear-gradient(to bottom, var(--bronze) 0%, rgba(248, 176, 0, 0.35) 45%, rgba(248, 176, 0, 0) 100%);
}

.hero-tag {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
  opacity: 0; animation: rise 0.8s ease 0.4s forwards;
}
.hero-tag .bar { width: 32px; height: 1px; background: var(--bronze); }
.hero-tag .txt {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--bronze);
}

/* Oyunun kendi logosu hero başlığı olarak */
.hero-logo {
  margin: 0;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}
.hero-logo img {
  display: block;
  width: min(330px, 68vw);
  height: auto;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.5));
}
@media (min-width: 1024px) { .hero-logo img { width: min(380px, 26vw); } }
@media (min-width: 1440px) { .hero-logo img { width: 420px; } }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 27rem;
  opacity: 0; animation: rise 0.8s ease 0.95s forwards;
}
@media (min-width: 768px) { .hero-sub { font-size: 1rem; } }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  opacity: 0;
  animation: rise 0.8s ease 1.05s forwards;
}

/* ===== Buttons ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.5s;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  z-index: -1;
}
.btn:hover::before { transform: translateX(100%); }
.btn-primary { background: var(--bronze); color: var(--bg); }
.btn-primary:hover { background: white; }
.btn-ice { background: var(--ice); color: var(--bg); }
.btn-ice:hover { background: white; }
.btn-ghost {
  color: white;
  border-color: var(--border);
}
.btn-ghost:hover { color: var(--bronze); border-color: var(--bronze); }
.btn .arrow {
  display: inline-block;
  transition: transform 0.5s;
}
.btn:hover .arrow { transform: translateX(4px); }
.btn .line {
  display: inline-block;
  width: 24px; height: 1px;
  background: currentColor;
  transition: width 0.5s;
}
.btn:hover .line { width: 40px; }

/* ===== Hero meta satırı ===== */
/* Ayraçlar span değil border — satır kırılınca sarkan çizgi kalmıyor */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.6rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  max-width: 30rem;
  opacity: 0;
  animation: rise 0.8s ease 1.3s forwards;
}
.hero-meta > div {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  padding-right: 1.1rem;
}
.hero-meta > div + div {
  padding-left: 1.1rem;
  border-left: 1px solid var(--border);
}
.hero-meta .v {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--bronze);
}
.hero-meta .l {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-muted);
  white-space: nowrap;
}

/* ===== Scroll indicator ===== */
.scroll-ind {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 0.6s ease 1.6s forwards;
}
@media (min-width: 768px) { .scroll-ind { bottom: 2.5rem; right: 3rem; } }
.scroll-ind .lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--ink-muted);
}
.scroll-ind .track {
  position: relative;
  width: 1px; height: 48px;
  background: var(--border);
  overflow: hidden;
}
.scroll-ind .bead {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 12px;
  background: var(--bronze);
  animation: scrollBead 2s ease-in-out infinite;
}
@keyframes scrollBead {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(400%); }
}

/* ===== Home quick-nav cards ===== */
.quick-nav {
  position: relative;
  padding: 6rem 0;
  border-top: 1px solid var(--border-soft);
  overflow: hidden;
}
@media (min-width: 768px) { .quick-nav { padding: 10rem 0; } }
.quick-nav::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(248, 176, 0,0.2) 0%, transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}
.quick-nav-head {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .quick-nav-head { grid-template-columns: 7fr 5fr; }
}
.quick-nav-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: white;
}
@media (min-width: 768px) { .quick-nav-head h2 { font-size: 4.5rem; } }
@media (min-width: 1024px) { .quick-nav-head h2 { font-size: 6rem; } }
.quick-nav-head p {
  color: var(--ink-muted);
  max-width: 28rem;
  line-height: 1.6;
}

.quick-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .quick-cards { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.qc {
  position: relative;
  display: block;
  background: rgba(20, 28, 37, 0.4);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  overflow: hidden;
  transition: all 0.5s;
  height: 100%;
}
@media (min-width: 768px) { .qc { padding: 2.5rem; } }
.qc:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 176, 0, 0.4);
}
.qc .corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: rgba(248, 176, 0, 0.4);
  transition: border-color 0.5s;
}
.qc:hover .corner { border-color: var(--bronze); }
.qc .corner.tl { top: 12px; left: 12px; border-top: 1px solid; border-left: 1px solid; }
.qc .corner.br { bottom: 12px; right: 12px; border-bottom: 1px solid; border-right: 1px solid; }
.qc .tag {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--bronze);
}
.qc h3 {
  margin-top: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.875rem;
  letter-spacing: 0.04em;
  color: white;
}
@media (min-width: 768px) { .qc h3 { font-size: 2.25rem; } }
.qc p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
.qc .cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--bronze);
}
.qc .cta .line {
  width: 24px; height: 1px;
  background: var(--bronze);
  transition: width 0.5s;
}
.qc:hover .cta .line { width: 48px; }

/* ===== Ortak bölüm başlığı (eskiden her sayfada inline style'dı) ===== */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  color: white;
  margin-bottom: 3rem;
  max-width: 22ch;
}

/* ===== Fragman ===== */
.trailer-section { padding: 6rem 0; border-top: 1px solid var(--border-soft); }
@media (min-width: 768px) { .trailer-section { padding: 8rem 0; } }
/* Genişlik sınırlı: tam konteynerde 16:9 ~845px'lik bir duvar oluyordu */
.trailer-frame {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transition: border-color 0.5s, box-shadow 0.5s;
}
.trailer-frame:hover {
  border-color: rgba(248, 176, 0, 0.35);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 60px rgba(248, 176, 0, 0.12);
}
.trailer-frame > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
  filter: brightness(0.88);
}
.trailer-frame:hover > img { transform: scale(1.02); }
/* Karartma sadece butonun arkasında ve alt şeritte — görselin geri kalanı açık kalır */
.trailer-scrim {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(11, 16, 23, 0.6) 0%, transparent 34%),
    linear-gradient(to top, rgba(11, 16, 23, 0.75) 0%, transparent 32%);
}
.trailer-frame iframe,
.trailer-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.trailer-frame[data-playing="1"] { cursor: default; }
.trailer-frame .corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: rgba(248, 176, 0, 0.6);
  z-index: 2; pointer-events: none;
}
.trailer-frame .corner.tl { top: 14px; left: 14px; border-top: 1px solid; border-left: 1px solid; }
.trailer-frame .corner.tr { top: 14px; right: 14px; border-top: 1px solid; border-right: 1px solid; }
.trailer-frame .corner.bl { bottom: 14px; left: 14px; border-bottom: 1px solid; border-left: 1px solid; }
.trailer-frame .corner.br { bottom: 14px; right: 14px; border-bottom: 1px solid; border-right: 1px solid; }
.trailer-play {
  position: absolute; inset: 0;
  z-index: 3;
  display: flex;
  align-items: center; justify-content: center;
  background: none; border: 0;
  color: white;
}
.trailer-play .ring {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(248, 176, 0, 0.8);
  background: rgba(11, 16, 23, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 0 0 rgba(248, 176, 0, 0.35);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s, border-color 0.4s, box-shadow 0.6s;
}
@media (min-width: 768px) { .trailer-play .ring { width: 88px; height: 88px; } }
.trailer-play .tri {
  width: 0; height: 0;
  margin-left: 5px;
  border-left: 18px solid var(--bronze);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  transition: border-left-color 0.4s;
}
.trailer-play:hover .ring,
.trailer-play:focus-visible .ring {
  transform: scale(1.09);
  background: var(--bronze);
  border-color: var(--bronze);
  box-shadow: 0 0 46px 6px rgba(248, 176, 0, 0.32);
}
.trailer-play:hover .tri,
.trailer-play:focus-visible .tri { border-left-color: var(--bg); }

/* Etiket ortadaki halkanın altına değil, sol alt köşeye */
.trailer-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: rgba(11, 16, 23, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(248, 176, 0, 0.28);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--bronze);
  pointer-events: none;
  white-space: nowrap;
}
@media (min-width: 768px) { .trailer-tag { left: 24px; bottom: 24px; } }
.trailer-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bronze);
  animation: pulseSoft 6s ease-in-out infinite;
}
.trailer-frame[data-playing="1"] .trailer-tag,
.trailer-frame[data-playing="1"] .trailer-scrim { display: none; }

/* Yalnızca ekran okuyucular için */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Features (dönüşümlü bloklar) ===== */
.features { padding: 6rem 0; border-top: 1px solid var(--border-soft); }
@media (min-width: 768px) { .features { padding: 8rem 0; } }
.feat-head {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) { .feat-head { grid-template-columns: 7fr 5fr; align-items: end; gap: 3rem; } }
.feat-head .section-title { margin-bottom: 0; }
.feat-head p { color: var(--ink-muted); line-height: 1.7; max-width: 30rem; }
.feat-row {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
  border-top: 1px solid var(--border-soft);
}
@media (min-width: 900px) {
  .feat-row { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 4rem; padding: 4.5rem 0; }
  .feat-row.flip .feat-art { order: 2; }
}
.feat-art {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  transition: border-color 0.5s, box-shadow 0.5s;
}
.feat-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-row:hover .feat-art {
  border-color: rgba(248, 176, 0, 0.35);
  box-shadow: 0 0 50px rgba(248, 176, 0, 0.1);
}
.feat-art .corner {
  position: absolute; width: 16px; height: 16px;
  border-color: rgba(248, 176, 0, 0.6);
  opacity: 0; transition: opacity 0.5s;
}
.feat-row:hover .feat-art .corner { opacity: 1; }
.feat-art .corner.tl { top: 12px; left: 12px; border-top: 1px solid; border-left: 1px solid; }
.feat-art .corner.br { bottom: 12px; right: 12px; border-bottom: 1px solid; border-right: 1px solid; }
.feat-txt .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  line-height: 1;
  color: rgba(248, 176, 0, 0.55);
}
.feat-txt h3 {
  margin-top: 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  letter-spacing: 0.03em;
  color: white;
}
.feat-txt p {
  margin-top: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 34rem;
}

/* ===== Oynanış döngüsü ===== */
.loop-section { padding: 6rem 0; }
@media (min-width: 768px) { .loop-section { padding: 8rem 0; } }
.loop-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  list-style: none;
  counter-reset: none;
}
@media (min-width: 640px) { .loop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .loop-grid { grid-template-columns: repeat(4, 1fr); } }
.loop-step {
  position: relative;
  background: var(--bg);
  padding: 2.25rem 1.75rem;
  transition: background 0.4s;
}
.loop-step:hover { background: rgba(20, 28, 37, 0.7); }
.loop-step .idx {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.75rem;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, var(--bronze-light) 45%, var(--bronze) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.loop-step h3 {
  margin-top: 0.85rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: white;
}
.loop-step p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
}
/* Adımlar arası ok — döngü hissi */
@media (min-width: 1100px) {
  .loop-step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -7px; top: 3.1rem;
    width: 13px; height: 13px;
    border-top: 1px solid rgba(248, 176, 0, 0.6);
    border-right: 1px solid rgba(248, 176, 0, 0.6);
    transform: rotate(45deg);
    background: var(--bg);
    z-index: 2;
  }
}

/* ===== Stüdyo şeridi ===== */
.studio-strip { padding: 5rem 0; }
.studio-strip-inner {
  display: flex; flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .studio-strip-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; }
}
.studio-strip h3 {
  margin-top: 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: white;
}
.studio-strip p {
  margin-top: 0.5rem;
  color: var(--ink-muted);
  max-width: 34rem;
  line-height: 1.7;
}

/* ===== Page header (inner pages) ===== */
.page-header {
  position: relative;
  padding: 8rem 0 4rem;
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
@media (min-width: 768px) { .page-header { padding: 10rem 0 6rem; } }
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(248, 176, 0,0.18) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(79, 179, 196,0.10) 0%, transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}
.page-header::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, #fff 1px, transparent 1px),
    linear-gradient(to bottom, #fff 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.06;
  pointer-events: none;
}
.breadcrumb {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
  transition: color 0.3s;
}
.breadcrumb:hover { color: var(--bronze); }
.breadcrumb .line {
  display: inline-block;
  width: 24px; height: 1px;
  background: currentColor;
  transition: width 0.5s;
}
.breadcrumb:hover .line { width: 40px; }
.page-header-eyebrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.page-header-eyebrow .line {
  max-width: 180px;
  flex: 1;
  height: 1px;
  background: var(--border);
}
.page-header h1 {
  position: relative;
  z-index: 1;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.75rem;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: white;
}
@media (min-width: 768px) { .page-header h1 { font-size: 6rem; } }
@media (min-width: 1024px) { .page-header h1 { font-size: 8rem; } }
.page-header .sub {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 42rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .page-header .sub { font-size: 1.125rem; } }

/* ===== İki sütunlu sayfa başlığı (oyun sayfası) =====
   Metin solda kalır, sağdaki boşluğa promo kartı yerleşir.
   1280px altında tek sütuna düşer ki başlık daralıp kırılmasın. */
.page-header-split .ph-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1280px) {
  .page-header-split .ph-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 4rem;
  }
}

/* ===== Promo kartı (Wishlist) ===== */
.promo-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 1672 / 941;   /* kaynağın kendi oranı — kırpma yok */
  transition: border-color 0.5s, box-shadow 0.5s, transform 0.5s;
}
.promo-card img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.promo-card .corner {
  position: absolute;
  width: 18px; height: 18px;
  border-color: rgba(248, 176, 0, 0.5);
  z-index: 2;
  transition: border-color 0.5s;
}
.promo-card .corner.tl { top: 10px; left: 10px; border-top: 1px solid; border-left: 1px solid; }
.promo-card .corner.tr { top: 10px; right: 10px; border-top: 1px solid; border-right: 1px solid; }
.promo-card .corner.bl { bottom: 10px; left: 10px; border-bottom: 1px solid; border-left: 1px solid; }
.promo-card .corner.br { bottom: 10px; right: 10px; border-bottom: 1px solid; border-right: 1px solid; }
.promo-card:hover {
  border-color: rgba(248, 176, 0, 0.5);
  box-shadow: 0 0 60px rgba(248, 176, 0, 0.15);
  transform: translateY(-4px);
}
.promo-card:hover .corner { border-color: var(--bronze); }
/* Steam sayfası henüz yokken kart tam görünür kalır, sadece tıklanamaz. */
.promo-card.is-soon { opacity: 1; }

.ph-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ===== Steam yeşili "Add to your wishlist" butonu =====
   Steam mağaza sayfasındaki butonun görünümünü taklit eder. */
.btn-steam {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0;
  border: none;
  border-radius: 2px;
  overflow: hidden;
  background: linear-gradient(to bottom, #93c119 0%, #5c8a12 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}
.btn-steam:hover {
  background: linear-gradient(to bottom, #b6f416 0%, #80a207 100%);
  box-shadow: 0 4px 18px rgba(147, 193, 25, 0.35);
  transform: translateY(-2px);
}
.btn-steam:active { transform: translateY(0); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35); }
.btn-steam .ico {
  display: flex; align-items: center; justify-content: center;
  align-self: stretch;
  width: 46px;
  font-size: 20px;
  background: rgba(0, 0, 0, 0.22);
}
.btn-steam .lbl { padding: 14px 20px 14px 0; }
/* Steam sayfası açılana kadar: gri ve tıklanamaz */
.btn-steam.is-soon {
  opacity: 1;
  background: linear-gradient(to bottom, #39424e 0%, #2a313b 100%);
  color: var(--ink-muted);
  box-shadow: none;
}
.btn-steam.is-soon .ico { background: rgba(0, 0, 0, 0.3); }

/* ===== Game page ===== */
.game-section {
  padding: 6rem 0;
}
@media (min-width: 768px) { .game-section { padding: 8rem 0; } }
.game-row {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .game-row { grid-template-columns: 7fr 5fr; gap: 4rem; }
}
/* Oran key art'ın kendi oranıyla birebir aynı (1232x706) — bu sayede
   object-fit hiçbir yeri kırpmıyor ve logo tam görünüyor. */
.game-cover {
  position: relative;
  aspect-ratio: 1232 / 706;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  transition: border-color 0.5s, box-shadow 0.5s;
}
.game-cover:hover {
  border-color: rgba(248, 176, 0, 0.45);
  box-shadow: 0 0 50px rgba(248, 176, 0, 0.12);
}
/* Zoom YOK: key art'ta logo kenara dayalı, en ufak büyütme onu kırpıyor. */
.game-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
/* Kapakta artık key art'ın kendi logosu var; gradyan sadece üstteki
   rozetlerin okunmasına yetecek kadar hafif tutuldu. */
.game-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11, 16, 23, 0.55), transparent 35%);
  pointer-events: none;
}
.game-cover .corner {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--bronze);
  z-index: 2;
}
.game-cover .corner.tl { top: 16px; left: 16px; border-top: 1px solid; border-left: 1px solid; }
.game-cover .corner.tr { top: 16px; right: 16px; border-top: 1px solid; border-right: 1px solid; }
.game-cover .corner.bl { bottom: 16px; left: 16px; border-bottom: 1px solid; border-left: 1px solid; }
.game-cover .corner.br { bottom: 16px; right: 16px; border-bottom: 1px solid; border-right: 1px solid; }
.game-cover .top-bar {
  position: absolute; top: 24px; left: 24px; right: 24px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 2;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--ice);
  background: rgba(11, 16, 23, 0.6);
  backdrop-filter: blur(4px);
  padding: 8px 12px;
  border: 1px solid rgba(79, 179, 196,0.3);
}
.status-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ice);
  animation: pulseSoft 6s ease-in-out infinite;
}
.code-pill {
  display: none;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--ink-muted);
  background: rgba(11, 16, 23, 0.6);
  backdrop-filter: blur(4px);
  padding: 8px 12px;
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .code-pill { display: inline-block; } }
.game-cover .title-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 2;
}
@media (min-width: 768px) { .game-cover .title-overlay { padding: 2.5rem; } }
.game-cover .title-overlay .codename {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--ink-muted);
}
.game-cover .title-overlay h3 {
  margin-top: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: white;
}
@media (min-width: 768px) { .game-cover .title-overlay h3 { font-size: 3.75rem; } }

.game-info { padding-top: 2rem; }
@media (min-width: 1024px) { .game-info { padding-top: 2rem; padding-left: 2rem; } }

.bullets { list-style: none; }
.bullets li {
  display: flex; align-items: start; gap: 1rem;
  padding: 0.5rem 0;
}
.bullets li .marker {
  margin-top: 0.6rem;
  flex-shrink: 0;
  width: 24px; height: 1px;
  background: var(--bronze);
  transition: width 0.5s;
}
.bullets li:hover .marker { width: 40px; }
.bullets li .txt { color: rgba(255,255,255,0.85); }
.game-info .ctas {
  margin-top: 3rem;
  display: flex; flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .game-info .ctas { flex-direction: row; } }

/* ===== Specs grid ===== */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
@media (min-width: 768px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .specs-grid { grid-template-columns: repeat(3, 1fr); } }
.spec-cell {
  background: var(--bg);
  padding: 2rem;
  transition: background 0.3s;
}
.spec-cell:hover { background: rgba(20, 28, 37,0.6); }
.spec-cell .l {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--ink-dim);
}
.spec-cell .v {
  margin-top: 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: white;
}
@media (min-width: 768px) { .spec-cell .v { font-size: 1.875rem; } }

/* 22 dillik liste tek hücreye sığmaz: tam satıra yayılır, punto düşer */
.spec-cell.spec-langs { grid-column: 1 / -1; }
.spec-cell.spec-langs .l { letter-spacing: 0.25em; }
.spec-cell.spec-langs .v {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 2;
  color: rgba(255, 255, 255, 0.82);
}
@media (min-width: 768px) { .spec-cell.spec-langs .v { font-size: 0.95rem; } }
/* Beş kısa özellik, üç sütunlu görünümde son hücrede boşluk bırakıyordu.
   Oyun motoru kartı kalan iki sütunu kaplayarak diller satırını dengeler. */
@media (min-width: 1024px) {
  .specs-grid > .spec-cell:nth-child(5) { grid-column: span 2; }
}

/* ===== Pillars (game page) ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.pillar {
  background: rgba(20, 28, 37, 0.4);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  transition: border-color 0.5s;
}
@media (min-width: 768px) { .pillar { padding: 2.5rem; } }
.pillar:hover { border-color: rgba(248, 176, 0,0.3); }
.pillar .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
}
.pillar h3 {
  margin-top: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: white;
}
.pillar p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ===== About page ===== */
.about-row {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .about-row { grid-template-columns: 5fr 7fr; gap: 5rem; }
}
/* Dikey key art'ın kendi oranı (1147x1372) — kırpma yok, alttaki logo duruyor. */
.about-image {
  position: relative;
  aspect-ratio: 1147 / 1372;
  overflow: hidden;
}
.about-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.about-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(11, 16, 23, 0.45), transparent 45%);
  pointer-events: none;
}
.manifesto-card {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  max-width: 260px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  z-index: 2;
}
@media (min-width: 768px) {
  .manifesto-card { top: 2rem; right: 2rem; }
}
@media (max-width: 767px) {
  .manifesto-card {
    position: relative;
    top: auto; right: auto;
    max-width: none;
    margin: 1rem 0 0;
  }
}
.manifesto-card .quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.875rem;
  color: var(--bronze);
  line-height: 1;
}
.manifesto-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.manifesto-card .src {
  display: block;
  margin-top: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
}

.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: white;
}
@media (min-width: 768px) { .about-text h2 { font-size: 4.5rem; } }
.about-text h2 .bronze { display: block; }
.about-text .paragraphs {
  margin-top: 2.5rem;
  display: flex; flex-direction: column;
  gap: 1.5rem;
  max-width: 36rem;
}
.about-text .paragraphs p {
  color: var(--ink-muted);
  line-height: 1.7;
}
.about-text .stats {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 36rem;
}
@media (min-width: 520px) {
  .about-text .stats { grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: 1.5rem 2rem; }
  .about-text .stats > div:nth-child(3) {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-soft);
  }
  .about-text .stats > div:nth-child(3) .v {
    margin-top: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    white-space: nowrap;
  }
}
.about-text .stats .l {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
}
.about-text .stats .v {
  margin-top: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: white;
}
@media (min-width: 768px) { .about-text .stats .v { font-size: 1.875rem; } }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
.value-cell {
  background: var(--bg);
  padding: 2rem;
  transition: background 0.3s;
}
@media (min-width: 768px) { .value-cell { padding: 3rem; } }
.value-cell:hover { background: rgba(20, 28, 37,0.6); }
.value-cell .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.875rem;
}
.value-cell h3 {
  margin-top: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: white;
}
@media (min-width: 768px) { .value-cell h3 { font-size: 1.875rem; } }
.value-cell p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
@media (min-width: 768px) { .value-cell p { font-size: 1rem; } }
.value-cell .underline {
  display: block;
  margin-top: 1.5rem;
  width: 48px; height: 1px;
  background: rgba(248, 176, 0,0.4);
  transition: width 0.5s;
}
.value-cell:hover .underline { width: 96px; }

/* ===== Roadmap page ===== */
.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}
@media (min-width: 768px) {
  .timeline::before { left: 50%; transform: translateX(-50%); }
}
.tl-item {
  position: relative;
  padding-bottom: 4rem;
  display: flex; align-items: center;
}
@media (min-width: 768px) { .tl-item { padding-bottom: 8rem; } }
.tl-item:nth-child(odd) { justify-content: flex-start; }
.tl-item:nth-child(even) { justify-content: flex-end; }
.tl-node {
  position: absolute;
  left: 16px; transform: translateX(-50%);
  width: 16px; height: 16px;
}
@media (min-width: 768px) { .tl-node { left: 50%; } }
.tl-node .dot {
  position: absolute; inset: 0;
  background: var(--bronze);
  border-radius: 50%;
}
.tl-node .ring {
  position: absolute; inset: -8px;
  border: 1px solid rgba(248, 176, 0,0.4);
  border-radius: 50%;
  animation: pulseSoft 6s ease-in-out infinite;
}
.tl-card {
  padding-left: 3rem;
  width: 100%;
}
@media (min-width: 768px) {
  .tl-card {
    padding-left: 0;
    width: 45%;
  }
  .tl-item:nth-child(odd) .tl-card { padding-right: 4rem; }
  .tl-item:nth-child(even) .tl-card { padding-left: 4rem; }
}
.tl-card-inner {
  background: rgba(20, 28, 37,0.5);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  transition: all 0.5s;
}
@media (min-width: 768px) { .tl-card-inner { padding: 2.5rem; } }
.tl-card-inner:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 176, 0,0.4);
}
.tl-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap; gap: 0.5rem;
}
.tl-year-group { display: flex; align-items: center; gap: 1rem; }
.tl-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
}
@media (min-width: 768px) { .tl-year { font-size: 3.75rem; } }
.tl-quarter {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  border: 1px solid var(--border);
  padding: 4px 8px;
}
.tl-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ice);
}
.tl-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ice);
  animation: pulseSoft 6s ease-in-out infinite;
}
.tl-card-inner h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: white;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .tl-card-inner h3 { font-size: 1.875rem; } }
.tl-card-inner p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
@media (min-width: 768px) { .tl-card-inner p { font-size: 1rem; } }
.tl-card-inner .underline {
  display: block;
  margin-top: 1.5rem;
  width: 48px; height: 1px;
  background: rgba(248, 176, 0,0.6);
  transition: width 0.5s;
}
.tl-card-inner:hover .underline { width: 96px; }

/* ===== Contact page ===== */
.contact-top {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-top { grid-template-columns: 8fr 4fr; gap: 3rem; }
}
.email-card {
  position: relative;
  background: rgba(20, 28, 37,0.4);
  border: 1px solid var(--border);
  padding: 2rem;
  overflow: hidden;
  transition: border-color 0.5s;
}
@media (min-width: 768px) { .email-card { padding: 3.5rem; } }
.email-card:hover { border-color: rgba(248, 176, 0,0.4); }
.email-card .corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: rgba(248, 176, 0,0.4);
  transition: border-color 0.5s;
}
.email-card:hover .corner { border-color: var(--bronze); }
.email-card .corner.tl { top: 12px; left: 12px; border-top: 1px solid; border-left: 1px solid; }
.email-card .corner.tr { top: 12px; right: 12px; border-top: 1px solid; border-right: 1px solid; }
.email-card .corner.bl { bottom: 12px; left: 12px; border-bottom: 1px solid; border-left: 1px solid; }
.email-card .corner.br { bottom: 12px; right: 12px; border-bottom: 1px solid; border-right: 1px solid; }
.email-card .head {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--bronze);
}
.email-card .head .lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}
.email-card .address {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: white;
  word-break: break-all;
  transition: color 0.3s;
}
@media (min-width: 640px) { .email-card .address { font-size: 3rem; } }
@media (min-width: 768px) { .email-card .address { font-size: 3.75rem; } }
@media (min-width: 1024px) { .email-card .address { font-size: 4.5rem; } }
.email-card .address:hover { color: var(--bronze); }
.email-card .note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  max-width: 28rem;
}
@media (min-width: 768px) { .email-card .note { font-size: 1rem; } }
.email-card .btns {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap;
  gap: 0.75rem;
}

.studio-stack { display: flex; flex-direction: column; gap: 1.5rem; }
.studio-card {
  background: rgba(20, 28, 37,0.4);
  border: 1px solid var(--border-soft);
  padding: 1.75rem;
}
@media (min-width: 768px) { .studio-card { padding: 2rem; } }
.studio-card .head {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.studio-card .head.bronze { color: var(--bronze); }
.studio-card .head.ice { color: var(--ice); }
.studio-card .head .lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}
.studio-card ul { list-style: none; }
.studio-card ul li:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: white;
  margin-bottom: 0.5rem;
}
.studio-card ul li {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
.studio-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.studio-card .strong { color: var(--bronze); font-weight: 600; }

/* Social grid */
.contact-socials {
  position: relative;
  padding: 5rem 0;
  border-top: 1px solid var(--border-soft);
  overflow: hidden;
}
@media (min-width: 768px) { .contact-socials { padding: 7rem 0; } }
.contact-socials::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(248, 176, 0,0.25) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(79, 179, 196,0.18) 0%, transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}
.socials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 640px) { .socials-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .socials-grid { grid-template-columns: repeat(6, 1fr); gap: 1.5rem; } }
.social {
  position: relative;
  background: rgba(20, 28, 37,0.4);
  border: 1px solid var(--border-soft);
  min-height: 224px;
  padding: 2rem 1.25rem;
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
  text-align: center;
  overflow: hidden;
  transition: transform 0.5s, border-color 0.5s, background 0.5s;
}
@media (min-width: 768px) { .social { min-height: 246px; padding: 2.25rem 1.5rem; } }
.social:hover { transform: translateY(-8px); border-color: rgba(255, 255, 255, 0.18); background: rgba(20, 28, 37,0.68); }
.social .bg-glow {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s;
}
.social:hover .bg-glow { opacity: 1; }
.social .brand-border {
  position: absolute; inset: 0;
  border: 1px solid transparent;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s;
}
.social:hover .brand-border { opacity: 1; }
.social .icon-wrap {
  position: relative;
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  transition: transform 0.5s, background 0.5s;
  font-size: 30px;
}
.social:hover .icon-wrap { transform: scale(1.1); background: rgba(255,255,255,0.08); }
.social .info { position: relative; width: 100%; }
.social .info .name {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.055em;
  color: white;
}
.social .info .handle {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin-top: 0.4rem;
  overflow-wrap: anywhere;
}

/* Form */
.contact-form-wrap {
  padding: 5rem 0;
  border-top: 1px solid var(--border-soft);
}
@media (min-width: 768px) { .contact-form-wrap { padding: 7rem 0; } }
.form-container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .form-container { padding: 0 3rem; } }
.contact-form {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .contact-form { grid-template-columns: repeat(2, 1fr); } }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 1px solid var(--border);
  padding: 1rem;
  font-family: 'Manrope', sans-serif;
  color: white;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  font-size: 0.95rem;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field select option { background: var(--bg); color: white; }
.field textarea { resize: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--bronze); }
.form-foot {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  display: flex; flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 640px) { .form-foot { flex-direction: row; align-items: center; } }
.form-success {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ice);
  opacity: 0;
  transition: opacity 0.5s;
}
.form-success.show { opacity: 1; }
.form-success .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ice);
  animation: pulseSoft 6s ease-in-out infinite;
}

/* ===== Footer ===== */
.foot {
  position: relative;
  border-top: 1px solid var(--border-soft);
  overflow: hidden;
}
.foot-cta {
  position: relative;
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-soft);
}
@media (min-width: 768px) { .foot-cta { padding: 8rem 0; } }
.foot-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(248, 176, 0,0.25) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(79, 179, 196,0.15) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.foot-cta-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; align-items: center;
}
@media (min-width: 1024px) {
  .foot-cta-inner { grid-template-columns: 8fr 4fr; }
}
.foot-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: white;
}
@media (min-width: 768px) { .foot-cta h2 { font-size: 4.5rem; } }
@media (min-width: 1024px) { .foot-cta h2 { font-size: 6rem; } }
.foot-cta p {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 32rem;
}
@media (min-width: 768px) { .foot-cta p { font-size: 1.125rem; } }
.foot-cta-right {
  display: flex; flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) { .foot-cta-right { align-items: flex-end; } }

.foot-marquee {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
.foot-marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.foot-marquee span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.05);
  margin: 0 3rem;
}
@media (min-width: 768px) { .foot-marquee span { font-size: 4.5rem; } }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.foot-bot {
  padding: 4rem 0;
}
.foot-bot-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (min-width: 768px) { .foot-bot-grid { grid-template-columns: repeat(12, 1fr); gap: 2rem; } }
.foot-brand { grid-column: 1 / -1; }
@media (min-width: 768px) { .foot-brand { grid-column: span 4; } }
.foot-brand .b-row {
  display: inline-flex; align-items: center;
}
.foot-logo {
  display: block;
  height: 52px;
  width: auto;
  transition: filter 0.35s;
}
.foot-brand .b-row:hover .foot-logo {
  filter: brightness(1.1) drop-shadow(0 0 14px rgba(248, 176, 0, 0.35));
}
.foot-brand p {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  max-width: 20rem;
  line-height: 1.6;
}
.foot-col { grid-column: span 1; }
@media (min-width: 768px) { .foot-col { grid-column: span 3; } }
.foot-col .lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
}
.foot-col ul { margin-top: 1rem; list-style: none; }
.foot-col ul li { margin-bottom: 0.5rem; }
.foot-col ul a {
  font-size: 0.875rem;
  color: var(--ink-muted);
  transition: color 0.3s;
}
.foot-col ul a:hover { color: var(--bronze); }
.foot-socials {
  margin-top: 1rem;
  display: flex; flex-wrap: wrap;
  gap: 0.5rem;
}
.foot-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--ink-muted);
  transition: all 0.3s;
  font-size: 14px;
}
.foot-socials a:hover { border-color: var(--bronze); color: var(--bronze); }
.foot-brand .foot-copy {
  margin-top: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: var(--ink-dim);
}

/* ===== "Coming soon" (henüz yayında olmayan linkler) ===== */
.btn.is-soon,
a.is-soon,
span.social.is-soon {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}
.btn.is-soon {
  background: transparent;
  color: var(--ink-muted);
  border-color: var(--border);
  opacity: 0.75;
}
.btn.is-soon::before { display: none; }
.social.is-soon:hover { transform: none; }
.foot-socials .soon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-soft);
  color: var(--ink-dim);
  font-size: 14px;
  opacity: 0.45;
}

/* ===== Screenshots (game page) ===== */
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .media-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1280px) { .media-grid { grid-template-columns: repeat(3, 1fr); } }
.shot {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  transition: border-color 0.5s;
}
.shot:hover { border-color: rgba(248, 176, 0, 0.4); }
/* Arayüz ekran görüntülerinde kırpma veri kaybettirir — zoom yerine
   parlaklık/kenar ile geri bildirim veriyoruz. */
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.94);
  transition: filter 0.5s ease;
}
.shot:hover img { filter: saturate(1) brightness(1.04); }
.shot .corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: rgba(248, 176, 0, 0.6);
  opacity: 0;
  transition: opacity 0.5s;
}
.shot:hover .corner { opacity: 1; }
.shot .corner.tl { top: 10px; left: 10px; border-top: 1px solid; border-left: 1px solid; }
.shot .corner.br { bottom: 10px; right: 10px; border-bottom: 1px solid; border-right: 1px solid; }

/* ===== 404 ===== */
.nf {
  position: relative;
  min-height: 72vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 9rem 1.5rem 6rem;
}
.nf::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(248, 176, 0,0.18) 0%, transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}
.nf > * { position: relative; z-index: 1; }
.nf .code {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 22vw, 15rem);
  line-height: 0.85;
  letter-spacing: 0.04em;
}
.nf h1 {
  margin-top: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.75rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  color: white;
}
.nf p {
  margin-top: 1.25rem;
  color: var(--ink-muted);
  max-width: 32rem;
  line-height: 1.7;
}
.nf .btn { margin-top: 2.5rem; }

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
