/* DevCode Technology — site stili
   Renkler logodan: turuncu #E08700, grafit #474747. Başlıklar logodaki dar harflere uyan Barlow Condensed. */
:root {
  --ground: #ffffff;
  --surface: #f4f4f2;
  --ink: #1d1d1d;
  --muted: #5a5a58;
  --line: #e2e2de;
  --brand: #e08700;
  --brand-text: #a35f00;     /* beyaz zeminde okunaklı turuncu */
  --graphite: #474747;
  --on-brand: #1d1d1d;
  --shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 8px 24px rgba(0, 0, 0, .06);
  --radius: 14px;
  --wrap: 1140px;
  --display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "Cascadia Code", Consolas, monospace;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #131313;
    --surface: #1c1c1c;
    --ink: #f1efea;
    --muted: #a9a8a3;
    --line: #2d2d2c;
    --brand: #f29a1a;
    --brand-text: #f5a93f;
    --graphite: #8d8d8a;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 8px 24px rgba(0, 0, 0, .35);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--ground); color: var(--ink);
  font: 400 17px/1.65 var(--body);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-text); text-underline-offset: 3px; }
a:hover { color: var(--brand); }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3 { font-family: var(--display); line-height: 1.05; margin: 0; text-wrap: balance; letter-spacing: .005em; }
p { margin: 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 12px; background: var(--ground); padding: 8px 12px; z-index: 10; }

/* süslü parantez motifi: logodaki { } */
.brace { font-family: var(--mono); font-weight: 500; color: var(--graphite); }
.label {
  font: 500 13px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--brand-text);
  display: inline-flex; gap: .5ch; align-items: center;
}
.label .brace { color: var(--graphite); }

/* ---------- Üst menü ---------- */
.site-header {
  position: sticky; top: 0; z-index: 5;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
.logo { display: block; width: 92px; }
.logo img { width: 100%; }
.logo .on-dark { display: none; }
@media (prefers-color-scheme: dark) { .logo .on-light { display: none; } .logo .on-dark { display: block; } }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 16px;
  padding: 8px 12px; border-radius: 8px;
}
.nav a:hover { background: var(--surface); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--brand-text); }
.nav .lang {
  font: 500 13px/1 var(--mono); letter-spacing: .06em; border: 1px solid var(--line); margin-left: 8px; padding: 9px 11px;
}
@media (max-width: 640px) { .nav .hide-sm { display: none; } }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; font: 600 17px/1 var(--body);
  padding: 15px 22px; border-radius: 999px; text-decoration: none; border: 1.5px solid transparent;
  transition: transform .15s ease, background-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: var(--on-brand); }
.btn-primary:hover { background: color-mix(in srgb, var(--brand) 88%, #000); color: var(--on-brand); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--graphite); color: var(--ink); }
.btn[aria-disabled="true"] { cursor: default; opacity: .85; }
.btn small { font: 500 12px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; opacity: .75; }

/* ---------- Giriş ---------- */
.hero { padding: 72px 0 64px; border-bottom: 1px solid var(--line); }
.hero .wrap { display: grid; gap: 48px; align-items: center; }
@media (min-width: 920px) { .hero .wrap { grid-template-columns: 1.05fr .95fr; } }
.hero h1 { font-size: clamp(40px, 8.2vw, 96px); overflow-wrap: break-word; hyphens: auto; font-weight: 700; text-transform: uppercase; letter-spacing: -.005em; }
.hero h1 .brace { font-size: .78em; vertical-align: .06em; font-weight: 400; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero .lead { font-size: 20px; color: var(--muted); max-width: 46ch; margin-top: 22px; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.feature-card {
  display: block; text-decoration: none; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.feature-card:hover { transform: translateY(-3px); color: var(--ink); }
@media (prefers-reduced-motion: reduce) { .feature-card, .btn { transition: none; } }
.feature-card img { width: 100%; aspect-ratio: 1024 / 500; object-fit: cover; }
.feature-card .meta { display: flex; align-items: center; gap: 14px; padding: 16px 18px; }
.feature-card .meta img { width: 52px; height: 52px; border-radius: 12px; aspect-ratio: 1; }
.feature-card .meta strong { font: 700 26px/1 var(--display); display: block; }
.feature-card .meta span { color: var(--muted); font-size: 15px; }
.feature-card .meta .go { margin-left: auto; font: 500 13px/1 var(--mono); color: var(--brand-text); white-space: nowrap; }

/* ---------- Bölümler ---------- */
.section { padding: 88px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { display: grid; gap: 14px; margin-bottom: 44px; max-width: 64ch; }
.section-head h2 { font-size: clamp(38px, 5vw, 56px); font-weight: 700; }
.section-head p { color: var(--muted); font-size: 19px; }

.services { display: grid; gap: 0; border-top: 1px solid var(--line); }
@media (min-width: 760px) { .services { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.service { padding: 30px 0 34px; border-bottom: 1px solid var(--line); display: grid; gap: 10px; align-content: start; }
@media (min-width: 760px) {
  .service:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--line); }
  .service:nth-child(even) { padding-left: 40px; }
}
.service h3 { font-size: 30px; font-weight: 600; }
.service p { color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; padding: 0; list-style: none; }
.tags li { font: 500 12px/1 var(--mono); padding: 6px 9px; border-radius: 6px; background: var(--surface); color: var(--muted); }

.game-row { display: grid; gap: 40px; align-items: center; }
.hero .wrap > *, .game-row > *, .game-hero .wrap > *, .about > * { min-width: 0; }
@media (min-width: 920px) { .game-row { grid-template-columns: .9fr 1.1fr; } }
.game-row .copy { display: grid; gap: 18px; }
.game-row .copy h3 { font-size: 48px; font-weight: 700; display: flex; align-items: center; gap: 16px; }
.game-row .copy h3 img { width: 64px; height: 64px; border-radius: 15px; }
.game-row .copy p { color: var(--muted); font-size: 18px; max-width: 52ch; }
.shots { display: grid; grid-template-columns: repeat(4, minmax(132px, 1fr)); gap: 14px; overflow-x: auto; padding-bottom: 6px; }
.shots img { border-radius: 16px; border: 1px solid var(--line); aspect-ratio: 9 / 16; object-fit: cover; box-shadow: var(--shadow); }
.facts { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.facts li { font: 500 13px/1 var(--mono); padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; }

.about { display: grid; gap: 32px; }
@media (min-width: 860px) { .about { grid-template-columns: 1fr 1fr; } }
.about p { font-size: 19px; color: var(--muted); }
.about p + p { margin-top: 14px; }
.registry { margin: 0; display: grid; gap: 0; border-top: 1px solid var(--line); align-self: start; }
.registry div { display: grid; grid-template-columns: minmax(110px, 150px) minmax(0, 1fr); gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.registry dt { font: 500 13px/1.5 var(--mono); color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.registry dd { margin: 0; font-variant-numeric: tabular-nums; }

.contact { background: var(--graphite); color: #fff; border-radius: 24px; padding: clamp(32px, 6vw, 64px); display: grid; gap: 22px; }
@media (prefers-color-scheme: dark) { .contact { background: var(--surface); color: var(--ink); border: 1px solid var(--line); } }
.contact h2 { font-size: clamp(40px, 6vw, 68px); font-weight: 700; text-transform: uppercase; }
.contact h2 .brace { color: var(--brand); }
.contact p { font-size: 19px; opacity: .85; max-width: 52ch; }
.contact a.mail { font: 600 clamp(22px, 3.4vw, 34px)/1.2 var(--body); color: var(--brand); text-decoration: none; word-break: break-all; }
.contact a.mail:hover { text-decoration: underline; }

/* ---------- Alt bilgi ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0 48px; margin-top: 88px; font-size: 15px; color: var(--muted); }
.site-footer .wrap { display: grid; gap: 28px; }
@media (min-width: 760px) { .site-footer .wrap { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer h4 { font: 500 12px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin: 0 0 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--brand-text); text-decoration: underline; }
.site-footer address { font-style: normal; }

/* ---------- Oyun sayfası ---------- */
.game-hero { padding: 56px 0 64px; border-bottom: 1px solid var(--line); }
.game-hero .wrap { display: grid; gap: 40px; align-items: center; }
@media (min-width: 920px) { .game-hero .wrap { grid-template-columns: 1fr 1fr; } }
.game-hero .title { display: flex; align-items: center; gap: 20px; }
.game-hero .title img { width: 96px; height: 96px; border-radius: 22px; box-shadow: var(--shadow); }
.game-hero h1 { font-size: clamp(48px, 9vw, 92px); font-weight: 700; }
.game-hero .lead { font-size: 21px; color: var(--muted); margin-top: 20px; max-width: 44ch; }
.game-hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.game-hero .banner { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.features { display: grid; gap: 0; border-top: 1px solid var(--line); padding: 0; margin: 0; list-style: none; }
@media (min-width: 760px) { .features { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.features li { padding: 26px 24px 28px 0; border-bottom: 1px solid var(--line); display: grid; gap: 8px; align-content: start; }
.features h3 { font-size: 26px; font-weight: 600; }
.features p { color: var(--muted); font-size: 16px; }
.doc-links { display: grid; gap: 12px; }
@media (min-width: 760px) { .doc-links { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.doc-links a {
  display: grid; gap: 6px; text-decoration: none; color: var(--ink); padding: 20px 22px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
}
.doc-links a:hover { border-color: var(--brand); color: var(--ink); }
.doc-links strong { font: 600 24px/1.1 var(--display); }
.doc-links span { color: var(--muted); font-size: 15px; }

/* ---------- Yasal metinler ---------- */
.legal { padding: 56px 0 24px; }
.legal .wrap { max-width: 820px; }
.crumbs { font: 500 13px/1.4 var(--mono); color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.legal h1 { font-size: clamp(38px, 7vw, 64px); overflow-wrap: break-word; font-weight: 700; }
.legal .updated { font: 500 13px/1.5 var(--mono); color: var(--muted); margin-top: 14px; }
.legal .summary {
  margin: 32px 0 8px; padding: 22px 24px; border-radius: var(--radius); background: var(--surface);
  border-left: 4px solid var(--brand); display: grid; gap: 10px;
}
.legal .summary strong { font: 600 22px/1.2 var(--display); }
.legal h2 { font-size: 30px; font-weight: 600; margin: 44px 0 12px; }
.legal p, .legal li { max-width: 68ch; }
.legal p + p { margin-top: 12px; }
.legal ul, .legal ol { padding-left: 22px; margin: 12px 0; display: grid; gap: 6px; }
.legal .other-lang { margin-top: 22px; font-size: 15px; }
.steps-list { counter-reset: s; list-style: none; padding: 0 !important; }
.steps-list li { counter-increment: s; display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 12px; align-items: baseline; }
.steps-list li::before { content: counter(s); font: 600 14px/28px var(--mono); width: 28px; height: 28px; text-align: center; border-radius: 50%; background: var(--brand); color: var(--on-brand); }

.notfound { padding: 120px 0; text-align: center; display: grid; gap: 18px; justify-items: center; }
.notfound h1 { font-size: clamp(80px, 16vw, 160px); }
