:root{
  --bg:#0B0F1A;
  --card: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.14);
  --text:#F6F7FB;
  --muted: rgba(246,247,251,.72);
  --brand:#6A5CFF;
  --brand2:#FF4FD8;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --shadow2: 0 12px 30px rgba(0,0,0,.25);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}

/* ---------- NAVBAR (Ortak) ---------- */
.navbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: env(safe-area-inset-top) 14px 10px 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11,15,26,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: var(--text);
}
.brand img{ width: 34px; height: 34px; object-fit: contain; }
.brand span{ font-weight: 900; letter-spacing: .2px; }

.nav-links{
  display:flex;
  align-items:center;
  gap: 18px;
  list-style:none;
  margin:0;
  padding:0;
}
.nav-links a{
  color: var(--muted);
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 999px;
  transition: .15s ease;
}
.nav-links a:hover{
  color: var(--text);
  background: rgba(255,255,255,.08);
}

.nav-right{
  display:flex;
  align-items:center;
  gap: 10px;
}

.lang{
  appearance:none;
  -webkit-appearance:none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  outline: none;
}
.lang option{color:#111}

/* ---------- BUTTONS (Ortak) ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  background: rgba(255,255,255,.08);
  transition: .15s ease;
  white-space: nowrap;
}
.btn.primary{
  border: none;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 14px 30px rgba(106,92,255,.25);
}
.btn:hover{transform: translateY(-1px)}

.burger{
  width: 42px; height: 42px;
  display:none;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.burger span{
  display:block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
  transition: .2s ease;
}
.burger span::before,
.burger span::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: var(--text);
  border-radius: 999px;
  transition: .2s ease;
}
.burger span::before{top:-6px}
.burger span::after{top:6px}

.mobile-panel{
  display:none;
  max-width: 1100px;
  margin: 10px auto 0 auto;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.mobile-panel ul{
  list-style:none;
  margin:0;
  padding: 8px;
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.mobile-panel a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration:none;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 800;
}
.mobile-actions{
  display:flex;
  gap: 10px;
  padding: 10px;
}
.mobile-actions .btn{flex:1}

@media (max-width: 980px){
  .nav-links{display:none}
  .burger{display:flex}
  .mobile-panel{display:none}
  body.menu-open .mobile-panel{display:block}
  body.menu-open .burger span{background: transparent}
  body.menu-open .burger span::before{transform: translateY(6px) rotate(45deg)}
  body.menu-open .burger span::after{transform: translateY(-6px) rotate(-45deg)}
}
/* ---------- FOOTER (Zevc) ---------- */
.zevc-footer{
  margin-top: 18px;
  padding: 18px 14px calc(22px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow:hidden;
}
.zevc-footer::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(106,92,255,.22), transparent 60%),
    radial-gradient(820px 360px at 85% 10%, rgba(255,79,216,.16), transparent 60%);
  pointer-events:none;
  opacity:.95;
}

.zevc-footer .f-wrap{
  position:relative;
  max-width: 1100px;
  margin: 0 auto;
}

.f-top{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  justify-content:space-between;
  padding: 14px 14px 16px 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
@media (max-width: 860px){
  .f-top{flex-direction:column; align-items:stretch;}
}

.f-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--text);
  text-decoration:none;
}
.f-brand img{
  width: 34px;
  height: 34px;
  object-fit:contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.25));
}
.f-brand span{
  font-weight: 950;
  letter-spacing: .2px;
}

.f-desc{
  flex:1;
  color: rgba(246,247,251,.72);
  font-weight: 650;
  line-height: 1.45;
  max-width: 66ch;
}

.f-stores{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.f-store{
  min-width: 160px;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: var(--text);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.15s ease;
}
.f-store:hover{ transform: translateY(-1px); }
.f-store-primary{
  border:none;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 14px 30px rgba(106,92,255,.18);
}

.f-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 980px){
  .f-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .f-grid{ grid-template-columns: 1fr; }
}

.f-col{
  padding: 14px 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.f-title{
  font-weight: 950;
  letter-spacing: -.2px;
  margin-bottom: 10px;
}
.f-link{
  display:block;
  padding: 9px 10px;
  border-radius: 14px;
  color: rgba(246,247,251,.78);
  text-decoration:none;
  font-weight: 750;
  border: 1px solid transparent;
  background: transparent;
  transition: .15s ease;
}
.f-link:hover{
  color: var(--text);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.10);
  transform: translateY(-1px);
}

.f-bottom{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.f-copy{
  color: rgba(246,247,251,.70);
  font-weight: 750;
}

.f-mini{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}
.f-mini a{
  color: rgba(246,247,251,.70);
  font-weight: 800;
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  transition: .15s ease;
}
.f-mini a:hover{
  color: var(--text);
  background: rgba(255,255,255,.07);
  transform: translateY(-1px);
}

.f-social{
  display:flex;
  gap: 10px;
}
.f-ico{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  color: var(--text);
  text-decoration:none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  transition: .15s ease;
}
.f-ico:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
}
