/* ═══════════════════════════════════════════════════════════════
   © TruckerMasterDrivers — All rights reserved
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────────── */
:root {
  --bg-deep:      #050a14;
  --bg-dark:      #0a0e1a;
  --bg-mid:       #0d1624;
  --bg-steam:     #1b2838;
  --bg-card:      #111827;
  --bg-card2:     #0f1923;

  --blue-vivid:   #00c8ff;
  --blue-mid:     #0084cc;
  --blue-soft:    #1e4a7a;
  --blue-faint:   #0d2a45;
  --orange:       #ff6b35;
  --orange-soft:  #cc4a1a;
  --yellow:       #ffd700;
  --red-warn:     #ff3b3b;
  --green-ok:     #00e676;

  --text-primary:   #e8edf5;
  --text-secondary: #8fa8c0;
  --text-muted:     #4a6880;
  --text-accent:    #00c8ff;

  --border:       rgba(0,200,255,0.15);
  --border-hot:   rgba(0,200,255,0.45);
  --glow:         0 0 40px rgba(0,200,255,0.25);
  --glow-strong:  0 0 80px rgba(0,200,255,0.45);
  --shadow-deep:  0 20px 60px rgba(0,0,0,0.7);

  --font-display: 'Rajdhani', sans-serif;
  --font-body:    'Exo 2', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;

  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --section-pad:  clamp(80px, 10vw, 140px) 0;
}

/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--blue-vivid); color: #000; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 3px; }

img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue-vivid); text-decoration: none; transition: var(--transition); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 60px);
}

/* ─────────────────────────────────────────────
   NOISE OVERLAY
───────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.nav-logo img {
  height: 100px;
  width: auto;
  display: block;
}

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(16px, 5vw, 60px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,10,20,0.0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

#navbar.scrolled {
  background: rgba(5,10,20,0.92);
  border-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-primary);
  text-transform: uppercase;
  /* Logo gizleme ve geçiş efektleri */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

/* Scroll yapıldığında logoyu göster */
#navbar.scrolled .nav-logo {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--blue-vivid);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: grid; place-items: center;
  color: #000;
  font-size: 1rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links a:hover { color: var(--blue-vivid); }

.nav-cta {
  background: var(--blue-vivid);
  color: #000 !important;
  padding: 8px 22px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  font-weight: 700 !important;
  letter-spacing: 2px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: #fff !important;
  color: #000 !important;
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────
   LANGUAGE SWITCHER
───────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 20px;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 5px 9px;
  transition: var(--transition);
  text-transform: uppercase;
  line-height: 1;
}

.lang-btn.active {
  color: var(--blue-vivid);
  border-color: rgba(0,200,255,0.35);
  background: rgba(0,200,255,0.07);
}

.lang-btn:hover:not(.active) {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.1);
}

.lang-divider {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  user-select: none;
  margin: 0 1px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 26px; height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}


/* ─────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Diğer Hero stilleri korunuyor */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 60% 50%, rgba(0,132,204,0.18) 0%, transparent 70%),
              linear-gradient(160deg, #020710 0%, #050a14 40%, #080f1c 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-logo-bg {
  position: absolute;
  inset: 0;
  background: url('../images/Logo.jpg') center center no-repeat;
  background-size: 115%;
  z-index: 1;
  pointer-events: none;
  
  /* Sıçramayı önlemek için elementin ulaşacağı son sabit değerler: */
  transform: scale(1);
  opacity: 0.4;
  
  /* 1. heroLogoEntrance: Sadece 1 kere çalışır ve olduğu yerde kalır (forwards) 
    2. pulseBgLogo: Tam 2.5 saniye (giriş bitene kadar) bekler, sonra başlar
  */
  animation: 
    heroLogoEntrance 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
    pulseBgLogo 6s 2.5s infinite alternate ease-in-out;
}

@keyframes heroLogoEntrance {
  0% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1); opacity: 0.4; }
}

@keyframes pulseBgLogo {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.05); opacity: 0.2; } /* Çok hafif ve yavaş bir yakınlaşma */
}

.hero-road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-vivid), transparent);
  animation: roadScan 3s ease-in-out infinite;
}

@keyframes roadScan {
  0%, 100% { opacity: 0; transform: scaleX(0.3); }
  50% { opacity: 1; transform: scaleX(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  /* İçerik aşağıdan yukarı süzülerek gelecek (Transition) */
  transform: translateY(40px);
  animation: heroEntrance 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}

@keyframes heroEntrance {
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,255,0.08);
  border: 1px solid var(--border-hot);
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--blue-vivid);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-vivid);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title .line1 {
  color: var(--text-primary);
  display: block;
  clip-path: inset(0 100% 0 0);
  animation: revealText 1s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}

.hero-title .line2 {
  display: block;
  background: linear-gradient(90deg, var(--blue-vivid), #0084cc, var(--blue-vivid));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite, revealText 1s cubic-bezier(0.4,0,0.2,1) 0.5s forwards;
  clip-path: inset(0 100% 0 0);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes revealText {
  to { clip-path: inset(0 0% 0 0); }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
  margin: 0 auto 48px auto;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 20px; }
/* .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
} */

/* ─────────────────────────────────────────────
   NEW COMPACT BUTTONS (Concept Focused)
───────────────────────────────────────────── */

/* Steam Butonu: Siyah Tema */
.btn-steam-black {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000; /* Saf Siyah */
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px 24px;
  border: 1px solid #222;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-steam-black:hover {
  background: #111;
  border-color: var(--blue-vivid);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.2);
  transform: translateY(-2px);
}

/* Fragman Butonu: Minimalist */
.btn-trailer-mini {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-trailer-mini:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-vivid);
  color: #000;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,200,255,0.5);
  color: #000;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--border-hot);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(0,200,255,0.1);
  border-color: var(--blue-vivid);
  color: var(--blue-vivid);
  transform: translateY(-3px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─────────────────────────────────────────────
   SECTION COMMON
───────────────────────────────────────────── */
section { padding: var(--section-pad); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--blue-vivid);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--blue-vivid);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-title span { color: var(--blue-vivid); }

.section-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.8;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
#about {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,132,204,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}


/* Görsellerin dikey dizilimi ve hizalanması */
.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px; /* İki görsel arasındaki mesafe */
}

.about-visual .media-placeholder {
  /*width: 85%; /* Görsellerin birbirine göre kayması için genişliği kısıtladık */
  aspect-ratio: 16/7.5;
}

/* Üstteki görsel Sola yaslı */
.about-visual .s-left {
  align-self: flex-start;
  z-index: 2;
}

/* Alttaki görsel Sağa yaslı */
.about-visual .s-right {
  align-self: flex-end;
  z-index: 1;
  margin-top: -40px; /* Hafifçe üstteki görselin altına girmesi için (Opsiyonel) */
}


.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  background: rgba(0,200,255,0.06);
  border: 1px solid rgba(0,200,255,0.2);
  padding: 5px 14px;
  letter-spacing: 1px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: var(--transition);
}

.tag:hover {
  background: rgba(0,200,255,0.15);
  border-color: var(--blue-vivid);
  color: var(--blue-vivid);
}

.about-visual { position: relative; }

.media-placeholder {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg-steam);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.media-placeholder:hover {
  border-color: var(--blue-vivid);
  box-shadow: var(--glow);
}

.media-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,200,255,0.06) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,200,255,0.02) 10px, rgba(0,200,255,0.02) 11px);
}

.play-btn-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.play-btn {
  width: 80px; height: 80px;
  background: rgba(0,200,255,0.15);
  border: 2px solid var(--blue-vivid);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: var(--transition);
}

.media-placeholder:hover .play-btn { background: var(--blue-vivid); transform: scale(1.1); }
.play-btn svg { width: 28px; height: 28px; fill: var(--blue-vivid); transition: var(--transition); }
.media-placeholder:hover .play-btn svg { fill: #000; }

.media-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-corner-deco {
  position: absolute;
  top: -10px; right: -10px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--blue-vivid);
  border-right: 2px solid var(--blue-vivid);
  pointer-events: none;
}

.about-corner-deco2 {
  position: absolute;
  bottom: -10px; left: -10px;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   TRAILER
───────────────────────────────────────────── */
#trailer {
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
}

#trailer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,200,255,0.03) 0%, transparent 50%),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(0,200,255,0.03) 79px, rgba(0,200,255,0.03) 80px);
  pointer-events: none;
}

.trailer-header { text-align: center; margin-bottom: 56px; }

.trailer-wrapper { position: relative; max-width: 960px; margin: 0 auto; }

.trailer-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border: 2px solid var(--border-hot);
  overflow: hidden;
  box-shadow: var(--glow-strong), var(--shadow-deep);
}

/* .trailer-frame::before {
  content: attr(data-label);
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--blue-vivid);
  letter-spacing: 3px;
  z-index: 2;
  background: rgba(0,0,0,0.7);
  padding: 4px 10px;
} */

.trailer-frame iframe, .trailer-frame video { width: 100%; height: 100%; border: none; }

.trailer-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(135deg, #060e18, #0d1a2e),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,200,255,0.015) 20px, rgba(0,200,255,0.015) 21px);
  cursor: pointer;
  transition: var(--transition);
}

.trailer-placeholder:hover .play-btn { background: var(--blue-vivid); }
.trailer-placeholder:hover .play-btn svg { fill: #000; }

.trailer-deco-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-vivid), transparent);
}

.trailer-deco-line.top { top: -2px; }
.trailer-deco-line.bottom { bottom: -2px; }

.hud-bracket { position: absolute; width: 24px; height: 24px; }
.hud-bracket.tl { top: -2px; left: -2px; border-top: 2px solid var(--blue-vivid); border-left: 2px solid var(--blue-vivid); }
.hud-bracket.tr { top: -2px; right: -2px; border-top: 2px solid var(--blue-vivid); border-right: 2px solid var(--blue-vivid); }
.hud-bracket.bl { bottom: -2px; left: -2px; border-bottom: 2px solid var(--blue-vivid); border-left: 2px solid var(--blue-vivid); }
.hud-bracket.br { bottom: -2px; right: -2px; border-bottom: 2px solid var(--blue-vivid); border-right: 2px solid var(--blue-vivid); }

/* ─────────────────────────────────────────────
   FEATURES
───────────────────────────────────────────── */
#features { background: var(--bg-dark); position: relative; }
.features-header { margin-bottom: 64px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue-vivid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feat-card:hover { background: rgba(0,200,255,0.04); border-color: rgba(0,200,255,0.35); transform: translateY(-4px); }
.feat-card:hover::before { transform: scaleX(1); }

.feat-icon {
  width: 52px; height: 52px;
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.2);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feat-card:hover .feat-icon { background: rgba(0,200,255,0.2); border-color: var(--blue-vivid); }

.feat-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feat-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

.feat-card-num {
  position: absolute;
  bottom: 16px; right: 20px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ─────────────────────────────────────────────
   MALFUNCTIONS
───────────────────────────────────────────── */
#malfunctions {
  background: var(--bg-steam);
  position: relative;
  overflow: hidden;
}

#malfunctions::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255,107,53,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0,200,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.malfunctions-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.4);
  padding: 8px 18px; /* Kutu içi boşluk biraz artırıldı */
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  white-space: nowrap; /* YENİ: Yazının alt satıra inip kutuyu bozmasını kesin olarak engeller */
}

.warning-badge span:first-child {
  width: 6px; 
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: warnPulse 1.2s ease-in-out infinite;
}


@keyframes warnPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255,107,53,0); }
}

.malfunction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.malfunction-card {
  background: var(--bg-card2);
  border: 1px solid rgba(255,107,53,0.15);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.malfunction-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.malfunction-card:hover { border-color: rgba(255,107,53,0.45); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(255,107,53,0.15); }
.malfunction-card:hover::after { transform: scaleX(1); }

.malfunction-icon { font-size: 2rem; margin-bottom: 14px; display: block; }

.malfunction-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.malfunction-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

.malfunction-severity {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid;
}

.severity-high { color: var(--red-warn); border-color: rgba(255,59,59,0.4); background: rgba(255,59,59,0.08); }
.severity-medium { color: var(--orange); border-color: rgba(255,107,53,0.4); background: rgba(255,107,53,0.08); }
.severity-low { color: var(--yellow); border-color: rgba(255,215,0,0.4); background: rgba(255,215,0,0.08); }

.gif-showcase {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gif-slot {
  background: var(--bg-steam);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.gif-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gif-slot:hover { border-color: var(--blue-vivid); }

.gif-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.08) 2px, rgba(0,0,0,0.08) 4px);
  z-index: 1;
  pointer-events: none;
}

.gif-overlay { position: relative; z-index: 2; text-align: center; }
.gif-icon { font-size: 2.5rem; display: block; margin-bottom: 8px; }
.gif-label { font-family: var(--font-mono); font-size: 0.65rem; color: rgba(255,255,255,0.5); letter-spacing: 3px; text-transform: uppercase; }

/* ─────────────────────────────────────────────
   MECHANICS
───────────────────────────────────────────── */
#mechanics { background: var(--bg-dark); overflow: hidden; }

.mechanics-showcase { display: flex; flex-direction: column; gap: 120px; margin-top: 80px; }

.mechanic-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mechanic-row.reverse { direction: rtl; }
.mechanic-row.reverse > * { direction: ltr; }

.mechanic-visual { position: relative; }

.mechanic-media {
  background: var(--bg-steam);
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.mechanic-media:hover { border-color: var(--blue-vivid); box-shadow: var(--glow); }

.mechanic-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,200,255,0.04) 0%, transparent 60%),
    repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(0,200,255,0.015) 15px, rgba(0,200,255,0.015) 16px);
}

.mechanic-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mechanic-media-overlay { position: relative; z-index: 1; text-align: center; }
.mechanic-media-icon { font-size: 3rem; margin-bottom: 10px; display: block; }
.mechanic-media-label { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 3px; text-transform: uppercase; }

.mechanic-badge {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--blue-vivid);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 14px;
}

.mechanic-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(0,200,255,0.08);
  line-height: 1;
  margin-bottom: -20px;
  letter-spacing: -3px;
}

.mechanic-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}

.mechanic-title span { color: var(--blue-vivid); }
.mechanic-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 28px; }

.mechanic-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.mechanic-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.mechanic-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-vivid);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────── */
#gallery { background: var(--bg-mid); overflow: hidden; }
.gallery-header { margin-bottom: 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}

.gallery-item {
  background: var(--bg-steam);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 8; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; }

.gallery-img-wrap { width: 100%; padding-top: 56.25%; position: relative; overflow: hidden; }
.gallery-item:nth-child(1) .gallery-img-wrap { padding-top: calc(56.25% * 2 + 4px); }

.gallery-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background:
    linear-gradient(135deg, #0a121e, #0d1a2e),
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0,200,255,0.02) 8px, rgba(0,200,255,0.02) 9px);
}

.gallery-img-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-img-placeholder-icon { font-size: 2rem; z-index: 1; }
.gallery-img-placeholder-label { font-family: var(--font-mono); font-size: 0.65rem; color: rgba(255,255,255,0.25); letter-spacing: 3px; text-transform: uppercase; z-index: 1; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item:hover { border-color: var(--blue-vivid); }

.gallery-item-label { font-family: var(--font-mono); font-size: 0.65rem; color: rgba(255,255,255,0.7); letter-spacing: 2px; text-transform: uppercase; }

/* ─────────────────────────────────────────────
   GIFS SECTION
───────────────────────────────────────────── */
#gifs { background: var(--bg-steam); padding: var(--section-pad); }
.gif-section-header { text-align: center; margin-bottom: 56px; }

.gif-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gif-full-slot {
  background: var(--bg-steam);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: var(--transition);
}

.gif-full-slot img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gif-full-slot:hover { border-color: var(--blue-vivid); z-index: 2; }
.gif-full-slot:hover img { transform: scale(1.05); }

.gif-full-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,200,255,0.02) 2px, rgba(0,200,255,0.02) 3px),
    linear-gradient(135deg, #111a26, #1b2838);
}

.gif-full-slot-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 20px 16px 12px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0;
  transition: var(--transition);
}

.gif-full-slot:hover .gif-full-slot-label { opacity: 1; }

.gif-feature-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  margin-top: 4px;
}

.gif-feature-main {
  background: var(--bg-steam);
  border: 1px solid var(--border);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gif-feature-side { display: flex; flex-direction: column; gap: 4px; }
.gif-feature-side .gif-full-slot { flex: 1; aspect-ratio: auto; }

/* ─────────────────────────────────────────────
   MULTIPLAYER
───────────────────────────────────────────── */
#multiplayer { background: var(--bg-dark); overflow: hidden; position: relative; }

#multiplayer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 50%, rgba(0,132,204,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.mp-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mp-visual { position: relative; }

.mp-media {
  background: var(--bg-steam);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.mp-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,200,255,0.08) 0%, transparent 70%);
}

.mp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.mp-player-count {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,200,255,0.15);
  border: 1px solid var(--blue-vivid);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mp-player-count .dot { width: 8px; height: 8px; background: var(--green-ok); border-radius: 50%; animation: pulse 2s infinite; }
.mp-player-count span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--blue-vivid); letter-spacing: 2px; }

.mp-features-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.mp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(0,200,255,0.04);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.mp-feature-item:hover { border-color: rgba(0,200,255,0.3); background: rgba(0,200,255,0.08); }
.mp-feature-icon { font-size: 1.6rem; flex-shrink: 0; width: 44px; text-align: center; }

.mp-feature-text h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.mp-feature-text p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ─────────────────────────────────────────────
   OPEN WORLD MAP
───────────────────────────────────────────── */
#openworld { background: var(--bg-steam); position: relative; overflow: hidden; padding: var(--section-pad); }

.ow-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.ow-map-visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  overflow: hidden;
}

.ow-map-visual img { width: 100%; height: 100%; object-fit: cover; }

.map-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: mapScan 8s linear infinite;
}

@keyframes mapScan {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

.map-ping {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--blue-vivid);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0,200,255,0.5);
  animation: mapPing 2s ease-out infinite;
}

.map-ping.p1 { top: 30%; left: 25%; animation-delay: 0s; }
.map-ping.p2 { top: 60%; left: 60%; animation-delay: 0.8s; }
.map-ping.p3 { top: 20%; left: 70%; animation-delay: 1.6s; }
.map-ping.p4 { top: 75%; left: 35%; animation-delay: 0.4s; background: var(--orange); box-shadow: 0 0 0 0 rgba(255,107,53,0.5); }

@keyframes mapPing {
  0% { box-shadow: 0 0 0 0 rgba(0,200,255,0.5); }
  100% { box-shadow: 0 0 0 20px rgba(0,200,255,0); }
}

.map-label { position: absolute; font-family: var(--font-mono); font-size: 0.6rem; color: rgba(0,200,255,0.6); letter-spacing: 2px; text-transform: uppercase; }
.map-placeholder-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; z-index: 1; }

.ow-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.ow-stat-card { background: var(--bg-card); border: 1px solid var(--border); padding: 20px; transition: var(--transition); }
.ow-stat-card:hover { border-color: var(--blue-vivid); background: rgba(0,200,255,0.04); }
.ow-stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--blue-vivid); line-height: 1; margin-bottom: 4px; }
.ow-stat-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px; }

/* ─────────────────────────────────────────────
   REPAIR SHOP
───────────────────────────────────────────── */
#repair { background: var(--bg-dark); overflow: hidden; }

.repair-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.repair-visual { position: relative; }

.repair-media {
  background: var(--bg-steam);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.repair-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.repair-scanline {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,0.4), transparent);
  animation: scanline 4s linear infinite;
}

@keyframes scanline {
  0% { top: 0%; }
  100% { top: 100%; }
}

.repair-parts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.part-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.part-card:hover { border-color: var(--green-ok); background: rgba(0,230,118,0.04); }
.part-card-icon { font-size: 1.3rem; }
.part-card-text { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }
.part-type { font-family: var(--font-mono); font-size: 0.6rem; color: var(--green-ok); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.part-type.salvage { color: var(--orange); }

/* ─────────────────────────────────────────────
   ECONOMY
───────────────────────────────────────────── */
#economy { background: var(--bg-mid); overflow: hidden; }

.economy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.eco-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.eco-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-vivid);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.eco-card:hover { transform: translateY(-6px); border-color: rgba(0,200,255,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.eco-card:hover::before { transform: scaleX(1); }

.eco-icon { font-size: 2.8rem; margin-bottom: 20px; display: block; }
.eco-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.eco-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* ─────────────────────────────────────────────
   SYSTEM REQUIREMENTS
───────────────────────────────────────────── */
#sysreq { background: var(--bg-steam); overflow: hidden; }

.sysreq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 48px;
}

.sysreq-panel { background: var(--bg-card2); border: 1px solid var(--border); padding: 36px; }

.sysreq-panel-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-vivid);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.sysreq-row { display: grid; grid-template-columns: 140px 1fr; gap: 12px; margin-bottom: 14px; align-items: start; }
.sysreq-key { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; padding-top: 2px; }
.sysreq-val { font-size: 0.88rem; color: var(--text-primary); line-height: 1.5; }

/* ─────────────────────────────────────────────
   CTA
───────────────────────────────────────────── */
#cta {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 0;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(0,132,204,0.2) 0%, transparent 70%);
  pointer-events: none;
}

#cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.cta-desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto 48px; line-height: 1.75; }

.cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }

.btn-steam {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1b2838, #2a475e);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid rgba(102,192,244,0.4);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: var(--transition);
  cursor: pointer;
}

.btn-steam:hover {
  border-color: rgba(102,192,244,0.8);
  box-shadow: 0 0 30px rgba(102,192,244,0.3);
  transform: translateY(-3px);
  color: var(--text-primary);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  background: #020508;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand { max-width: 300px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 38px; height: 38px;
  background: rgba(0,200,255,0.06);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-link:hover { background: rgba(0,200,255,0.15); border-color: var(--blue-vivid); color: var(--blue-vivid); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.5px; }
.footer-col ul li a:hover { color: var(--blue-vivid); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted); letter-spacing: 1px; }

.footer-rating { display: flex; align-items: center; gap: 8px; }

.rating-badge {
  background: rgba(0,200,255,0.1);
  border: 1px solid var(--border-hot);
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--blue-vivid);
  letter-spacing: 2px;
}

/* ─────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#lightbox.active { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border: 1px solid var(--border-hot); }

#lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font-display);
  letter-spacing: 1px;
}

#lightbox-close:hover { color: var(--blue-vivid); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .malfunction-grid { grid-template-columns: repeat(2, 1fr); }
  .economy-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { gap: 18px; }
  .lang-switcher { margin-left: 10px; }
}

@media (max-width: 900px) {
  .about-grid,
  .mechanic-row,
  .mp-content,
  .ow-content,
  .repair-content { grid-template-columns: 1fr; gap: 40px; }
  .mechanic-row.reverse { direction: ltr; }
  .malfunctions-header { grid-template-columns: 1fr; gap: 24px; }
  .hero-stats { display: none; }
  .sysreq-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 12; }
  .gallery-item:nth-child(n+2) { grid-column: span 6; }
  .gif-full-grid { grid-template-columns: 1fr 1fr; }
  .gif-feature-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .lang-switcher { margin-left: 8px; }
  .malfunction-grid { grid-template-columns: 1fr; }
  .repair-parts-grid { grid-template-columns: 1fr; }
  .economy-grid { grid-template-columns: 1fr 1fr; }
  .ow-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .gif-full-grid { grid-template-columns: 1fr; }
  .gif-showcase { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: span 12; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-trailer-mini{ align-self: center;}
}

/* Mobile menu */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  background: rgba(5,10,20,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-top: 1px solid var(--border);
}

#mobile-menu.open { display: flex; }

#mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

#mobile-menu a:hover { color: var(--blue-vivid); }

#mobile-menu .lang-switcher {
  margin-left: 0;
  margin-top: 8px;
}

#mobile-menu .lang-btn { font-size: 0.85rem; padding: 8px 14px; }





:root {
  --amber: #00c8ff;
  --amber-glow: #0084cc;
}

/* Tüm sitede sistem imlecini KESİN OLARAK GİZLE */
* {
  cursor: none !important;
}

/* Dış Halka */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  /* Orijinal oyundaki "yumuşak gecikmeli" takip efekti */
  transition: transform 0.15s ease-out, width 0.15s ease, height 0.15s ease, background 0.15s ease, opacity 0.3s ease;
  opacity: 0;
}

/* İç Nokta */
.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  /* Nokta daha hızlı takip eder */
  transition: transform 0.05s ease-out, opacity 0.3s ease;
  opacity: 0;
}

/* Link veya butonun üzerine gelindiğinde (Büyüme Efekti) */
.custom-cursor.active { 
  width: 48px; 
  height: 48px; 
  background: var(--amber-glow); 
  border-color: rgba(255, 107, 0, 0.5);
}

/* Fare ilk hareket ettiğinde görünürlük */
.custom-cursor.visible,
.custom-cursor-dot.visible { 
  opacity: 1; 
}

/* Mobilde (Telefon tablet vb.) efekti kapatıp normal imlece dön */
@media (max-width: 640px) {
  .custom-cursor, .custom-cursor-dot { display: none !important; }
  * { cursor: auto !important; }
}









/* ========================================================
   BETA KAYIT SAYFASI ÖZEL TASARIMLARI (ÇAKIŞMA ÖNLEYİCİ)
======================================================== */

.iron-beta-section { min-height: 100vh; display: flex; padding: 120px 20px 60px 20px; position: relative; background: var(--bg-deep); overflow: hidden; }
#ironParticleCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.iron-beta-container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; max-width: 1200px; width: 100%; margin: 0 auto; align-items: center; }

/* DİL SEÇİCİ */
.iron-lang-switcher { position: absolute; top: 20px; right: 20px; z-index: 10; display: flex; gap: 10px; }
.iron-lang-btn { background: rgba(0,200,255,0.05); border: 1px solid rgba(0,200,255,0.3); color: var(--text-secondary); font-family: var(--font-mono); padding: 5px 12px; cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; }
.iron-lang-btn:hover, .iron-lang-btn.active { background: rgba(0,200,255,0.2); color: var(--blue-vivid); border-color: var(--blue-vivid); }

/* SOL TARAF: HYPE & STEAM DESTEK */
.iron-hype-panel { display: flex; flex-direction: column; gap: 30px; animation: fadeUp 1s ease forwards; }
.iron-hype-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1; text-transform: uppercase; margin-bottom: 15px; }
.iron-hype-title span { color: var(--blue-vivid); }
.iron-hype-desc { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; border-left: 2px solid var(--blue-vivid); padding-left: 15px; }

.iron-wishlist-box { background: rgba(0, 200, 255, 0.04); border: 1px solid var(--border-hot); padding: 30px; position: relative; clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px); }
.iron-wishlist-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue-vivid), transparent); }
.iron-wishlist-title { font-family: var(--font-display); color: var(--orange); font-size: 1.4rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.iron-wishlist-title svg { width: 28px; fill: var(--orange); flex-shrink: 0; }
.iron-wishlist-text { font-size: 0.95rem; color: var(--text-primary); margin-bottom: 20px; line-height: 1.6; }

/* DESTEK LİSTESİ */
.iron-support-section { background: rgba(0, 0, 0, 0.3); border-left: 2px solid var(--blue-vivid); padding: 15px 20px; margin-bottom: 25px; }
.iron-support-title { font-family: var(--font-display); color: var(--text-primary); font-size: 1.1rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 12px; }
.iron-support-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.iron-support-list li { font-size: 0.88rem; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.iron-support-list li::before { content: '>'; color: var(--orange); font-family: var(--font-mono); font-weight: bold; flex-shrink: 0; }
.iron-support-list li span { display: inline; }
.iron-support-list a { color: var(--blue-vivid); text-decoration: none; border-bottom: 1px solid rgba(0,200,255,0.4); padding-bottom: 1px; transition: var(--transition); display: inline-block; }
.iron-support-list a:hover { color: var(--text-primary); border-color: var(--text-primary); }

/* SAĞ TARAF: FORM PANELİ */
.iron-form-panel { background: var(--bg-card); border: 1px solid var(--border); padding: 40px; position: relative; box-shadow: var(--shadow-deep); animation: fadeUp 1.2s ease forwards; min-height: 500px; display: flex; flex-direction: column; justify-content: center;}
.iron-form-panel::before, .iron-form-panel::after { content: ''; position: absolute; width: 30px; height: 30px; }
.iron-form-panel::before { top: -2px; left: -2px; border-top: 2px solid var(--blue-vivid); border-left: 2px solid var(--blue-vivid); }
.iron-form-panel::after { bottom: -2px; right: -2px; border-bottom: 2px solid var(--blue-vivid); border-right: 2px solid var(--blue-vivid); }

/* FORM ELEMANLARI */
.iron-form-group { margin-bottom: 20px; }
.iron-form-group label { display: block; font-family: var(--font-mono); font-size: 0.8rem; color: var(--blue-vivid); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.iron-form-control { width: 100%; background: var(--bg-steam); border: 1px solid var(--border); color: var(--text-primary); font-family: var(--font-body); font-size: 0.95rem; padding: 12px 16px; transition: var(--transition); clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px); }
.iron-form-control:focus { outline: none; border-color: var(--blue-vivid); background: rgba(0,200,255,0.05); }

#ironStatusMessage { margin-top: 15px; padding: 12px; font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; text-align: center; display: none; }
.iron-status-error { background: rgba(255, 59, 59, 0.1); border: 1px solid var(--red-warn); color: var(--red-warn); }

/* EFEKTLER */
.iron-fade-out { animation: formFadeOut 0.5s ease forwards; pointer-events: none; }
@keyframes formFadeOut { to { opacity: 0; transform: translateY(-20px) scale(0.95); filter: blur(5px); } }

#ironSuccessScreen { display: none; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
#ironSuccessScreen.active { display: flex; animation: cyberReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }

.iron-success-wrap { width: 90px; height: 90px; border: 2px solid var(--green-ok); border-radius: 50%; display: grid; place-items: center; background: rgba(0, 230, 118, 0.05); box-shadow: 0 0 20px rgba(0, 230, 118, 0.3); animation: pulseSuccess 2s infinite; position: relative; }
.iron-success-wrap::before { content: ''; position: absolute; inset: -10px; border: 1px dashed rgba(0, 230, 118, 0.4); border-radius: 50%; animation: spin 10s linear infinite; }
.iron-success-wrap svg { width: 45px; fill: var(--green-ok); }

.iron-success-title { font-family: var(--font-display); font-size: 2rem; color: var(--green-ok); letter-spacing: 2px; margin: 0; text-shadow: 0 0 15px rgba(0, 230, 118, 0.4); }
.iron-success-desc { color: var(--text-primary); font-size: 1rem; line-height: 1.6; max-width: 85%; }
.iron-success-sub { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-secondary); margin-top: 10px; border-top: 1px solid rgba(0,230,118,0.2); padding-top: 15px; }

@media (max-width: 960px) { .iron-beta-container { grid-template-columns: 1fr; gap: 40px; } .iron-hype-panel { text-align: center; } .iron-hype-desc { border-left: none; padding-left: 0; } .iron-wishlist-title { justify-content: center; } .iron-support-list li { text-align: left; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cyberReveal { 0% { opacity: 0; transform: scale(1.1) skewX(5deg); filter: blur(4px); } 60% { opacity: 1; transform: scale(0.98) skewX(-2deg); filter: blur(0); } 100% { opacity: 1; transform: scale(1) skewX(0); } }
@keyframes pulseSuccess { 0%, 100% { box-shadow: 0 0 20px rgba(0, 230, 118, 0.3); } 50% { box-shadow: 0 0 40px rgba(0, 230, 118, 0.7); } }
@keyframes spin { 100% { transform: rotate(360deg); } }



/* Mobil */

 /* MOBİL İNİSİYATİFİ - SADECE MOBİL SAYFASI İÇİN ÖZEL STİLLER */
        .iron-progress-wrapper {
            margin-bottom: 30px;
        }

        .iron-progress-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 12px;
        }

        .iron-progress-label {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 2px;
        }

        .iron-progress-percent {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 700;
            color: var(--blue-vivid);
            text-shadow: 0 0 20px rgba(0, 200, 255, 0.6);
            transition: color 0.4s;
            line-height: 1;
        }

        .iron-progress-percent.bumped {
            color: var(--green-ok);
            text-shadow: 0 0 20px rgba(0, 230, 118, 0.6);
        }

        .iron-hud-progress-bg {
            width: 100%;
            height: 28px;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid var(--blue-vivid);
            position: relative;
            overflow: hidden;
        }

        .iron-hud-progress-fill {
            height: 100%;
            width: 0%;
            transition: width 2.8s cubic-bezier(0.16, 1, 0.3, 1);
            background: linear-gradient(90deg, var(--blue-vivid), #00d4ff);
            box-shadow: 0 0 20px var(--blue-vivid);
            position: relative;
            overflow: hidden;
        }

        /* Yansıma sadece barın olduğu yerde gözükür */
        .iron-hud-progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            bottom: 0;
            width: 50%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
            animation: barGlow 3s infinite linear;
        }

        .iron-hud-progress-fill.bumped {
            background: linear-gradient(90deg, var(--green-ok), #76ff03);
            box-shadow: 0 0 40px var(--green-ok);
        }

        @keyframes barGlow {
            0% {
                transform: skewX(-20deg) translateX(-100%);
            }

            100% {
                transform: skewX(-20deg) translateX(400%);
            }
        }

        .iron-progress-milestones {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .iron-form-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 25px;
            border-left: 2px solid var(--orange);
            padding-left: 12px;
        }