/* PRO EV 7 — proev7.com ortak stil (oyunun koyu temasıyla bire bir) */
:root {
  --bg: #070d18; --bg2: #0b1220; --card: #111a2c;
  --line: rgba(255, 255, 255, .10); --text: #e8eefb; --muted: #9db6d9;
  --accent: #38bdf8; --gold: #fbbf24; --green: #34d399; --red: #f87171;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ── Üst bar ── */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 13, 24, .85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap { display: flex; align-items: center; gap: 14px; height: 62px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 18px; color: var(--text); letter-spacing: .5px; }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
nav.main { margin-left: auto; display: flex; gap: 18px; align-items: center; font-size: 14px; font-weight: 600; }
nav.main a { color: var(--muted); }
nav.main a:hover { color: var(--text); text-decoration: none; }
.lang-switch {
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px;
  font-size: 12.5px; font-weight: 800; color: var(--text) !important;
  background: var(--card);
}

/* ── Kahraman ── */
.hero { padding: 72px 0 40px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -40% -20% auto;  height: 130%;
  background: radial-gradient(ellipse at 50% 0%, rgba(56, 189, 248, .16), transparent 60%);
  pointer-events: none;
}
.hero h1 { font-size: clamp(34px, 6vw, 56px); font-weight: 900; letter-spacing: 1px; }
.hero h1 .gold { color: var(--gold); }
.hero p.tag { color: var(--muted); font-size: clamp(16px, 2.6vw, 21px); margin: 12px auto 0; max-width: 640px; }
.badges { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 12px; text-align: left;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 20px; min-width: 220px; color: var(--text); position: relative;
  transition: transform .15s ease, border-color .15s ease;
}
.store-btn:hover { transform: translateY(-2px); border-color: var(--accent); text-decoration: none; }
.store-btn svg { width: 30px; height: 30px; flex: 0 0 auto; }
.store-btn .small { font-size: 11px; color: var(--muted); letter-spacing: .4px; text-transform: uppercase; }
.store-btn .big { font-size: 18px; font-weight: 800; line-height: 1.15; }
.soon {
  position: absolute; top: -10px; right: -8px;
  background: var(--gold); color: #081018; font-size: 11px; font-weight: 900;
  padding: 3px 10px; border-radius: 999px; letter-spacing: .5px;
}
.hero .note { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* ── Ekran görüntüleri ── */
.shots { display: flex; gap: 22px; justify-content: center; padding: 34px 0 8px; flex-wrap: wrap; }
.shots img {
  width: 250px; border-radius: 22px; border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55), 0 0 40px rgba(56, 189, 248, .10);
}
.shots img:nth-child(2) { transform: translateY(-14px) scale(1.04); }

/* ── Özellikler ── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 44px 0; }
@media (max-width: 860px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px;
}
.feature .ico { font-size: 26px; }
.feature h3 { margin: 8px 0 4px; font-size: 16.5px; }
.feature p { color: var(--muted); font-size: 14px; }

/* ── Bölüm/CTA ── */
.section-title { text-align: center; font-size: clamp(22px, 4vw, 30px); font-weight: 900; padding-top: 26px; }
.cta {
  margin: 30px 0 60px; padding: 34px 24px; text-align: center;
  background: linear-gradient(135deg, #15254a, #0c1730);
  border: 1px solid rgba(56, 189, 248, .35); border-radius: 20px;
}
.cta h2 { font-size: clamp(20px, 3.6vw, 28px); }
.cta p { color: var(--muted); margin-top: 6px; }

/* ── Metin sayfaları (gizlilik/koşullar/destek) ── */
.doc { max-width: 820px; margin: 0 auto; padding: 48px 20px 80px; }
.doc h1 { font-size: clamp(26px, 4.6vw, 36px); font-weight: 900; margin-bottom: 6px; }
.doc .updated { color: var(--muted); font-size: 13.5px; margin-bottom: 26px; }
.doc h2 { font-size: 20px; margin: 30px 0 8px; color: var(--accent); }
.doc h3 { font-size: 16.5px; margin: 20px 0 6px; }
.doc p, .doc li { color: #c7d5ec; font-size: 15.5px; }
.doc ul, .doc ol { padding-left: 22px; margin: 8px 0; }
.doc li { margin: 5px 0; }
.doc .box {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; margin: 16px 0;
}
.doc table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14.5px; }
.doc th, .doc td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; }
.doc th { background: var(--bg2); }

/* ── Alt bilgi ── */
footer.site { border-top: 1px solid var(--line); padding: 30px 0 44px; margin-top: 30px; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; font-size: 13.5px; color: var(--muted); }
footer.site a { color: var(--muted); }
footer.site .copy { margin-left: auto; }

@media (max-width: 640px) {
  nav.main a:not(.lang-switch) { display: none; }
  .shots img { width: 200px; }
  footer.site .copy { margin-left: 0; }
}
