:root {
  /* BACKGROUND */
  --bg: #0b0b0d;
  --panel: #141316;
  --panel2: #1c1b1f;

  /* TEXT */
  --text: #f2f2f2;
  --muted: #b0b0b0;

  /* LINES */
  --line: rgba(255, 255, 255, 0.08);

  /* ACCENTS (FIRE / DUNGEON) */
  --accent: #c83a2a;
  --accent2: #f97316;

  /* EFFECTS */
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.7);

  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(
      900px 500px at 20% 10%,
      rgba(200, 58, 42, 0.18),
      transparent 60%
    ),
    radial-gradient(
      800px 500px at 80% 20%,
      rgba(249, 115, 22, 0.12),
      transparent 60%
    ),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11, 11, 13, 0.7);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #c83a2a, #7a1e14);
  box-shadow: 0 10px 30px rgba(200, 58, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.logo img {
  width: 100%;
}

.brand h1 {
  margin: 0;
  font-size: 14px;
}

.brand p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 14px;
}

.nav a {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  font-size: 14px;
  transition: 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 30px rgba(200, 58, 42, 0.4);
  border: none;
}

/* HERO */
header {
  padding: 30px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-card {
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 26px;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  margin-right: 6px;
}

h2.title {
  margin: 14px 0 12px;
  font-size: 34px;
  line-height: 1.05;
}

@media (max-width: 520px) {
  h2.title {
    font-size: 34px;
  }
}

.subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 0;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* TRAILER */
.poster {
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}

.poster img{
	max-width:100%;
}

.video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* SECTIONS */
section {
  padding: 30px 0;
}

h3 {
  margin: 0 0 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.shot {
  grid-column: span 4;
  min-height: 180px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: flex-end;
  padding: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* SCREENSHOT IMAGES */
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shot:hover img {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  /* ÇOK ÖNEMLİ */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.9);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 980px) {
  .shot {
    grid-column: span 12;
  }
}

/* DOWNLOAD */
.download {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 980px) {
  .download {
    grid-template-columns: 1fr;
  }
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}
/* LANGUAGE SWITCH */
.lang-switch {
  display: flex;
  gap: 6px;
}
.lang-switch a {
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1em;
}
.lang-switch a:hover {
  background: var(--accent);
  border-color: transparent;
}
