/* Avataria Türkiye — hosting site.css
   Renk paleti: splash + auth + play ile birebir aynı (brand uyumu).
   bg.png arka plan resmi kaldırıldı — pure gradient her ortamda tutarlı. */
:root {
  --ink:          #e2ecff;
  --muted:        rgba(207, 226, 255, 0.72);
  --line:         rgba(255, 255, 255, 0.10);
  --line-soft:    rgba(255, 255, 255, 0.06);
  --glass:        rgba(22, 26, 46, 0.72);
  --glass-strong: rgba(22, 26, 46, 0.85);
  --pink:         #ff5fb3;       /* secondary highlight */
  --cyan:         #5b8def;       /* brand accent (mavi) — splash gradient */
  --gold:         #ffd57a;       /* brand primary (gold) */
  --deep:         #0a0e1c;       /* splash bg */
  --bg-card:      #161a2e;       /* card / topbar bg */
  --danger:       #e81123;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--deep);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  /* bg.png Avataria karakter görseli — KORUNDU. Üzerine brand tonlamalı
     gradient overlay binildi (mavi sol-üst, gold sağ-alt) → görsel hem
     korunur hem splash/auth paletiyle uyumlu hisseder. */
  background:
    linear-gradient(180deg, rgba(10, 14, 28, 0.45), rgba(10, 14, 28, 0.85)),
    url("../img/bg.png") center top / cover fixed no-repeat;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(91, 141, 239, 0.22), transparent 38%),
    radial-gradient(circle at 80% 90%, rgba(255, 213, 122, 0.14), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(255, 95, 179, 0.08), transparent 60%);
}

/* Modern custom scrollbar — Webkit + Firefox (brand uyumlu, ince) */
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); }
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(91, 141, 239, 0.40) 0%, rgba(91, 141, 239, 0.25) 100%);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(255, 213, 122, 0.50) 0%, rgba(91, 141, 239, 0.40) 100%);
}
body { scrollbar-width: thin; scrollbar-color: rgba(91, 141, 239, 0.40) rgba(255, 255, 255, 0.02); }

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

/* ===================== SITE TOPBAR (Electron topbar tarzı) =====================
   Tüm sayfalarda üstte sticky kalan ince bar. Logo + nav + sosyal + auth butonları.
   Glass effect ile bg.png üzerinde okunaklı kalır. */
.site-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 18px;
  background: rgba(10, 14, 28, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.site-topbar .brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.site-topbar .brand-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
  color: var(--deep);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(91, 141, 239, 0.30);
}
.site-topbar .brand-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--ink);
}
.site-topbar nav.tnav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.site-topbar nav.tnav a {
  padding: 9px 18px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: color 0.15s, background 0.15s;
}
.site-topbar nav.tnav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}
.site-topbar nav.tnav a.is-active {
  color: var(--gold);
  background: rgba(255, 213, 122, 0.10);
}
.site-topbar .topbar-social {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 10px;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  flex-shrink: 0;
}
.site-topbar .topbar-social a {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 7px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s, background 0.15s, transform 0.15s;
}
.site-topbar .topbar-social a:hover { background: rgba(255,255,255,0.06); transform: translateY(-1px); }
.site-topbar .topbar-social a.fb:hover { color: #4267B2; }
.site-topbar .topbar-social a.ig:hover { color: #E1306C; }
.site-topbar .topbar-social a.dc:hover { color: #5865F2; }
.site-topbar .topbar-social svg { width: 17px; height: 17px; fill: currentColor; }
.site-topbar .topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.site-topbar .btn-ghost-sm {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
}
.site-topbar .btn-ghost-sm:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}
.site-topbar .btn-primary-sm {
  padding: 8px 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--cyan), #3a6cd6);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(91, 141, 239, 0.32);
  transition: transform 0.15s, box-shadow 0.15s;
}
.site-topbar .btn-primary-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(91, 141, 239, 0.45);
}
.site-topbar .mobile-toggle {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  place-items: center;
}

@media (max-width: 880px) {
  .site-topbar { padding: 0 14px; gap: 10px; }
  .site-topbar nav.tnav,
  .site-topbar .topbar-social,
  .site-topbar .topbar-actions { display: none; }
  .site-topbar .mobile-toggle { display: grid; margin-left: auto; }
}

/* ===================== MOBILE DRAWER (soldan kayan tam ekran modal) ===================== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.mobile-drawer.open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-drawer .drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 14, 28, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.mobile-drawer.open .drawer-backdrop { opacity: 1; }

.mobile-drawer .drawer-panel {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: min(320px, 85vw);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0a0e1c 0%, #161a2e 100%);
  border-right: 1px solid var(--line);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 16px;
  border-bottom: 1px solid var(--line-soft);
}
.drawer-head .brand-row {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.drawer-head .brand-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
  color: var(--deep);
  font-size: 15px; font-weight: 800;
}
.drawer-head .brand-name {
  font-size: 15px; font-weight: 600;
  color: var(--ink);
}
.drawer-close {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, border-color 0.15s;
}
.drawer-close:hover {
  background: rgba(232, 17, 35, 0.20);
  border-color: rgba(232, 17, 35, 0.40);
  color: #fff;
}
.drawer-close svg { width: 14px; height: 14px; }

.drawer-nav {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.15s, color 0.15s;
}
.drawer-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
}
.drawer-nav a.is-active {
  color: var(--gold);
  background: rgba(255, 213, 122, 0.10);
}
.drawer-nav a::before {
  content: "→";
  color: var(--muted);
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
  transform: translateX(-4px);
}
.drawer-nav a:hover::before,
.drawer-nav a.is-active::before {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
}

.drawer-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-top: 1px solid var(--line-soft);
}
.drawer-social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.15s, border-color 0.15s;
}
.drawer-social a:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.drawer-social a.fb:hover { color: #4267B2; border-color: #4267B2; }
.drawer-social a.ig:hover { color: #E1306C; border-color: #E1306C; }
.drawer-social a.dc:hover { color: #5865F2; border-color: #5865F2; }
.drawer-social svg { width: 18px; height: 18px; fill: currentColor; }

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 18px 22px;
  border-top: 1px solid var(--line-soft);
}
.drawer-actions a {
  width: 100%;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.drawer-actions .btn-ghost-sm {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.drawer-actions .btn-ghost-sm:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}
.drawer-actions .btn-primary-sm {
  background: linear-gradient(180deg, var(--cyan), #3a6cd6);
  color: #fff;
  border: 0;
  box-shadow: 0 6px 18px rgba(91, 141, 239, 0.32);
}

/* Drawer açıkken body scroll'u kilitle */
body.drawer-locked {
  overflow: hidden;
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 0;        /* alt boşluk yok — hero hemen başlasın */
  display: grid;
  justify-items: center;
  gap: 0;
}

.logo-link {
  width: min(360px, 64vw);  /* eskiden 470px — çok büyüktü, içerikle uzak kalıyordu */
  display: block;
}

.logo-link img {
  width: 100%;
  display: block;
  margin-bottom: -8px;   /* logo PNG'de alt boşluk varsa içeriği yukarı çek */
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, .42));
}

.nav-panel {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .2);
  backdrop-filter: blur(18px);
}

.nav-panel a {
  min-width: 96px;
  padding: 11px 17px;
  border-radius: 999px;
  color: rgba(255, 247, 255, .84);
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.nav-panel a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .13);
}

.nav-panel a:nth-child(2) {
  color: #fff;
  background: linear-gradient(180deg, var(--cyan) 0%, #3a6cd6 100%);
  box-shadow: 0 8px 24px rgba(91, 141, 239, 0.35);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.menu-button span {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;     /* logo'ya yakın başlasın, dikey orta yok */
  padding: 0;
  display: block;          /* place-items:center kaldırıldı — içerik direkt yukarıda */
  text-align: center;
}

/* ===== HERO SPLIT (sağ/sol) — daha geniş, asimetrik, modern landing tarzı ===== */
.hero-split {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: left;
}
.hero-side-l { min-width: 0; }
.hero-side-l .kicker { margin-bottom: 18px; }
.hero-side-l h1 {
  margin-bottom: 16px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  background: linear-gradient(135deg, #fff 0%, #cfe2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-side-l p.lead {
  margin: 0 0 24px;
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
}
.hero-side-l .actions {
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 22px;
}
.hero-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.hero-features .ic {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
  color: var(--deep);
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}

/* Sağ panel — büyük brand mark + canlı stat */
.hero-side-r {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 141, 239, 0.20) 0%, transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(255, 213, 122, 0.14) 0%, transparent 50%),
    rgba(10, 14, 28, 0.45);
  min-height: 320px;
}
.hero-brand-mark {
  width: 140px; height: 140px;
  border-radius: 36px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
  color: var(--deep);
  font-size: 80px; font-weight: 800;
  box-shadow:
    0 20px 60px rgba(91, 141, 239, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.10) inset;
  position: relative;
}
.hero-brand-mark::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 40px;
  border: 1px solid rgba(255, 213, 122, 0.18);
  pointer-events: none;
}
.hero-brand-title {
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}
.hero-brand-sub {
  margin: -16px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 4px;
}
.hero-stat {
  padding: 14px;
  text-align: center;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.hero-stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (max-width: 860px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .hero-side-l h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero-brand-mark { width: 100px; height: 100px; font-size: 56px; border-radius: 26px; }
}

.hero-copy,
.panel,
.download-hero,
.steps article,
.browser-panel {
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045)),
    var(--glass);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .16);
  backdrop-filter: blur(14px);
}

.hero-copy {
  width: min(780px, 100%);
  padding: clamp(30px, 5vw, 58px);
  border-radius: 30px;
}

.kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff0fb;
  background: rgba(255, 255, 255, .1);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(54px, 8vw, 112px);
  line-height: .92;
  letter-spacing: 0;
  text-shadow: 0 14px 44px rgba(91, 141, 239, 0.35);
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.hero-copy p,
.download-hero p,
.browser-panel p,
.panel p {
  max-width: 700px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--cyan) 0%, #3a6cd6 100%);
  box-shadow: 0 12px 32px rgba(91, 141, 239, 0.40), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.btn-primary:hover {
  box-shadow: 0 16px 40px rgba(91, 141, 239, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transform: translateY(-1px);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-soft {
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .1);
}

.quick-status {
  width: min(580px, 100%);
  display: grid;
  gap: 6px;
  margin: 24px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(0, 0, 0, .18);
  font-size: 14px;
}

.content-band,
.split-band,
.showcase,
.page-layout {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.content-band {
  margin-bottom: 24px;
}

.cards,
.steps,
.split-band {
  display: grid;
  gap: 16px;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}

.info-card span,
.steps span {
  color: var(--cyan);
  font-weight: 950;
}

.info-card h2 {
  margin-top: 42px;
  font-size: 25px;
}

.info-card p,
.steps p {
  color: var(--muted);
  line-height: 1.58;
}

.split-band {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 28px;
}

.panel,
.browser-panel {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 28px;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--cyan);
  font-weight: 950;
  text-decoration: none;
}

.showcase {
  margin-bottom: 64px;
}

.showcase img {
  width: 100%;
  display: block;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .34);
}

.page-layout {
  margin-top: 54px;
  margin-bottom: 70px;
}

.download-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 30px;
}

.download-hero h1 {
  font-size: clamp(48px, 7vw, 86px);
}

.download-hero p {
  margin-left: 0;
}

.download-box {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  background: rgba(0, 0, 0, .18);
}

.download-box strong {
  font-size: 18px;
}

.download-box span {
  color: var(--gold);
  font-weight: 950;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.steps article {
  min-height: 190px;
  padding: 24px;
  border-radius: 26px;
}

.browser-panel {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.browser-panel p {
  margin-left: 0;
}

.page-showcase {
  width: 100%;
  margin-top: 28px;
}

.legacy-browser * {
  backdrop-filter: none !important;
}

@media (max-width: 860px) {
  body {
    background-attachment: scroll;
  }

  .site-header {
    position: relative;
  }

  .logo-link {
    width: min(360px, 76vw);
  }

  .menu-button {
    position: absolute;
    top: 28px;
    right: 0;
    display: grid;
  }

  .nav-panel {
    width: 100%;
    display: none;
    flex-direction: column;
    border-radius: 24px;
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-panel a {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 42px 0;
  }

  .cards,
  .split-band,
  .steps,
  .download-hero {
    grid-template-columns: 1fr;
  }

  .browser-panel {
    display: grid;
  }
}

/* ===================== DOWNLOAD SAYFASI ===================== */
/* Hero split — sol: marketing + CTA / sağ: dosya bilgileri kartı */
.dl-hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: left;
}
.dl-side-l { min-width: 0; }
.dl-side-l .kicker { margin-bottom: 16px; }
.dl-side-l h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.02;
  background: linear-gradient(135deg, #fff 0%, #cfe2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dl-side-l p {
  margin: 0 0 22px;
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.dl-side-l .actions { justify-content: flex-start; margin-top: 6px; }

.dl-side-r {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 141, 239, 0.18) 0%, transparent 60%),
    rgba(10, 14, 28, 0.45);
}
.dl-file-icon {
  width: 84px; height: 84px;
  margin: 0 auto;
  border-radius: 20px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
  color: var(--deep);
  box-shadow: 0 14px 36px rgba(91, 141, 239, 0.32);
}
.dl-file-icon svg { width: 40px; height: 40px; }
.dl-file-title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.dl-file-sub {
  margin: -10px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dl-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dl-meta-cell {
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}
.dl-meta-cell strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}
.dl-meta-cell span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.dl-cta {
  width: 100%;
  padding: 14px;
  text-align: center;
  background: linear-gradient(180deg, var(--cyan) 0%, #3a6cd6 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(91, 141, 239, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.dl-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(91, 141, 239, 0.50);
}

/* Sistem gereksinimleri — minimum / önerilen iki kart */
.req-section {
  margin-top: 40px;
}
.req-head {
  text-align: center;
  margin-bottom: 24px;
}
.req-head h2 {
  margin: 8px 0 8px;
  font-size: clamp(26px, 3.5vw, 36px);
  color: #fff;
}
.req-head p {
  margin: 0 auto;
  max-width: 540px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.req-card {
  position: relative;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(14px);
}
.req-card.recommended {
  border-color: rgba(255, 213, 122, 0.35);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 213, 122, 0.10) 0%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}
.req-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.req-card.minimum .req-badge { color: #8ec5ff; }
.req-card.recommended .req-badge { color: var(--gold); }
.req-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.req-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}
.req-list .req-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(91, 141, 239, 0.15);
  color: var(--cyan);
}
.req-card.recommended .req-list .req-icon {
  background: rgba(255, 213, 122, 0.15);
  color: var(--gold);
}
.req-list .req-icon svg { width: 14px; height: 14px; }
.req-list .req-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.req-list .req-label small {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Browser alternative panel — sağ/sol split */
.dl-alt {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.dl-alt-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dl-alt-card .kicker-sm { margin-bottom: 0; }
.dl-alt-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.dl-alt-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.dl-alt-card .actions {
  margin-top: auto;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
}
.dl-alt-card .actions a {
  width: 100%;
  min-height: 44px;
  padding: 12px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
}

@media (max-width: 860px) {
  .dl-hero { grid-template-columns: 1fr; gap: 22px; padding: 22px; }
  .dl-side-l h1 { font-size: clamp(28px, 8vw, 42px); }
  .req-grid { grid-template-columns: 1fr; }
  .dl-alt { grid-template-columns: 1fr; }
}

/* ===================== HABER KARTLARI + NEWS SAYFASI ===================== */
.kicker-sm {
  display: inline-block;
  padding: 5px 11px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 213, 122, 0.08);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.news-band {
  margin-top: 48px;
  margin-bottom: 32px;
}
.news-band-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
}
.news-band-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  color: #fff;
}
.news-all-link {
  flex-shrink: 0;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.news-all-link:hover {
  background: rgba(255, 213, 122, 0.12);
  border-color: rgba(255, 213, 122, 0.35);
  color: var(--gold);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(14px);
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 213, 122, 0.30);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 12px;
}
.news-meta time { color: var(--muted); }

.news-tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.02);
}
.news-tag.tag-info { color: #8ec5ff; }
.news-tag.tag-upd  { color: var(--gold); }
.news-tag.tag-fix  { color: #ff8a92; }
.news-tag.tag-evt  { color: #ff9ad6; }

.news-card-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.news-summary {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.news-link {
  margin-top: auto;
  align-self: flex-start;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.news-link:hover { color: #ffe5a8; }

@media (max-width: 860px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-band-head { flex-direction: column; align-items: flex-start; }
}

/* ===== news.php (tüm haberler) ===== */
.news-header {
  width: 100%;
  padding: 36px 24px 24px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(10, 14, 28, 0.40);
}
.news-header-inner {
  width: min(960px, 100%);
  margin: 0 auto;
}
.news-h1 {
  margin: 4px 0 12px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  text-shadow: 0 12px 36px rgba(91, 141, 239, 0.30);
}
.news-page {
  width: min(820px, calc(100% - 32px));
  margin: 36px auto 60px;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-item {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(14px);
}
.news-item-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.news-item .news-summary {
  margin: 0 0 12px;
  font-size: 15px;
}
.news-item .news-content {
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.65;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
  margin-top: 6px;
}
.news-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--muted);
}
.site-footer {
  text-align: center;
  padding: 30px 24px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line-soft);
}
