/* ═══════════════════════════════════════════
   Onaymatik — Yeni Nesil SMS Onay Platformu
   Design System
   ═══════════════════════════════════════════ */

:root {
  --bg: #05070f;
  --bg-2: #0a0f1e;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --surface-3: rgba(255, 255, 255, 0.10);
  /* Katı (opak) panel yüzeyleri — açılır menü, popup, bildirim gibi üstte yüzen öğeler için */
  --panel: #121a30;
  --panel-2: #1a2440;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #e9edf8;
  --text-2: #9aa5c0;
  --muted: #5d6b8c;
  --accent: #22d3ee;
  --accent-2: #818cf8;
  --accent-3: #c084fc;
  --success: #34d399;
  --warn: #fbbf24;
  --danger: #f87171;
  --grad: linear-gradient(135deg, #22d3ee, #818cf8 55%, #c084fc);
  --grad-soft: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(129, 140, 248, 0.14));
  --shadow-lg: 0 24px 60px -12px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 40px rgba(34, 211, 238, 0.25);
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --nav-h: 68px;
}

[data-theme="light"] {
  --bg: #f4f6fc;
  --bg-2: #ffffff;
  --surface: rgba(13, 23, 48, 0.035);
  --surface-2: rgba(13, 23, 48, 0.06);
  --surface-3: rgba(13, 23, 48, 0.09);
  --panel: #ffffff;
  --panel-2: #f4f6fc;
  --border: rgba(13, 23, 48, 0.10);
  --border-strong: rgba(13, 23, 48, 0.18);
  --text: #101528;
  --text-2: #4b566e;
  --muted: #8a94ad;
  --shadow-lg: 0 24px 60px -18px rgba(30, 42, 80, 0.25);
  --shadow-glow: 0 0 40px rgba(34, 211, 238, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
/* Genel taşma koruması: medya + tablolar mobilde asla yatay taşmasın */
img, svg, video, canvas { max-width: 100%; }

.ic { width: 1.15em; height: 1.15em; flex-shrink: 0; display: inline-block; vertical-align: -0.2em; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mt-xl { margin-top: 80px; }
.ta-r { text-align: right; }

::selection { background: rgba(34, 211, 238, 0.3); }

/* ─────────── Background FX ─────────── */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 40%, transparent 100%);
}
[data-theme="light"] .bg-grid {
  background-image:
    linear-gradient(rgba(13, 23, 48, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 23, 48, 0.05) 1px, transparent 1px);
}
.orb { position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.5; }
.orb-1 { width: 560px; height: 560px; top: -180px; left: -120px; background: rgba(34, 211, 238, 0.16); animation: drift 22s ease-in-out infinite; }
.orb-2 { width: 480px; height: 480px; top: 5%; right: -160px; background: rgba(129, 140, 248, 0.16); animation: drift 26s ease-in-out infinite reverse; }
.orb-3 { width: 640px; height: 640px; bottom: -280px; left: 30%; background: rgba(192, 132, 252, 0.10); animation: drift 30s ease-in-out infinite; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 40px) scale(1.08); }
}

/* ─────────── Announcement ─────────── */
.announce {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 9px 16px; font-size: 13.5px; color: var(--text-2);
  background: var(--grad-soft);
  border-bottom: 1px solid var(--border);
}
.announce b { color: var(--text); }
.announce-badge {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em;
  background: var(--grad); color: #06121a;
  padding: 2px 8px; border-radius: 99px;
}

/* ─────────── Navbar ─────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: var(--nav-h); }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.logo-mark { width: 34px; height: 34px; display: block; filter: drop-shadow(0 4px 14px rgba(34, 211, 238, 0.4)); }
.logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
.logo-text em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links { display: flex; gap: 4px; margin-right: auto; }
.nav-links a {
  color: var(--text-2); text-decoration: none; font-size: 14.5px; font-weight: 500;
  padding: 8px 13px; border-radius: 10px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.balance-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text); font-weight: 600; font-size: 14px; font-family: var(--font-body);
  padding: 7px 8px 7px 14px; border-radius: 99px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.balance-chip:hover { border-color: var(--accent); }
.balance-chip .ic { color: var(--accent); }
.balance-plus {
  display: grid; place-items: center; width: 24px; height: 24px;
  background: var(--grad); border-radius: 50%; color: #06121a;
}
.balance-plus .ic { width: 14px; height: 14px; color: #06121a; }

.icon-btn {
  display: grid; place-items: center; width: 40px; height: 40px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px;
  color: var(--text-2); cursor: pointer; transition: color 0.2s, border-color 0.2s, transform 0.15s;
}
.icon-btn:hover { color: var(--text); border-color: var(--border-strong); }
.icon-btn:active { transform: scale(0.94); }

[data-theme="dark"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: none; }

.auth-btns { display: flex; gap: 8px; }
.nav-mobile-auth { display: none; }

.nav-burger { display: none; }

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
  padding: 11px 22px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: 13.5px; }
.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad); color: #06121a;
  box-shadow: 0 8px 24px -6px rgba(34, 211, 238, 0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -6px rgba(34, 211, 238, 0.55); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: var(--surface-2); color: var(--text); border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--border-strong); background: var(--surface-3); }

.btn-light { background: #fff; color: #0a0f1e; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.4); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

/* ─────────── Glass card ─────────── */
.glass {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ─────────── Hero ─────────── */
.hero { padding: 76px 0 40px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text-2); font-weight: 500;
  background: var(--surface-2); border: 1px solid var(--border);
  padding: 7px 16px; border-radius: 99px; margin-bottom: 26px;
}
.hero-pill b { color: var(--success); }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* Slogan (admin → Site Ayarları → Slogan) */
.hero-tagline {
  margin: 14px 0 -4px; font-size: 15px; font-weight: 700; letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--accent), #818cf8); -webkit-background-clip: text;
  background-clip: text; color: transparent; text-transform: uppercase;
}
.hero-tagline[hidden] { display: none; }
/* Navbar slogan — logo yanında, her zaman görünür (misafir + giriş yapmış, tüm ekranlar) */
.nav-tagline {
  margin-left: 12px; padding-left: 13px; border-left: 1px solid var(--border);
  font-size: 12.5px; font-weight: 600; color: var(--text-2); white-space: nowrap;
  align-self: center; letter-spacing: 0.01em;
  max-width: 220px; overflow: hidden; text-overflow: ellipsis;
}
.nav-tagline[hidden] { display: none; }
/* Sadece çok dar mobilde gizle (navbar zaten sıkışık) */
@media (max-width: 560px) { .nav-tagline { display: none !important; } }
.hero h1 { font-size: clamp(40px, 5.6vw, 66px); font-weight: 700; margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: var(--text-2); max-width: 520px; margin-bottom: 32px; }
.hero-sub b { color: var(--text); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hstat b { display: block; font-family: var(--font-display); font-size: 27px; font-weight: 700; }
.hstat span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; }
.phone-wrap { position: relative; }
.phone {
  width: 300px; height: 590px;
  background: linear-gradient(160deg, #171d31, #0b0f1e);
  border: 1px solid var(--border-strong);
  border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative; z-index: 2;
  animation: phoneFloat 7s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #05070f; border-radius: 0 0 16px 16px; z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: linear-gradient(180deg, #0a0f22, #070a16);
  display: flex; flex-direction: column;
}
.phone-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 42px 18px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.phone-logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #e9edf8; }
.phone-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--success);
}
.sms-feed { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.sms-item {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px; padding: 11px 13px;
  display: flex; gap: 11px; align-items: center;
  animation: smsIn 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
@keyframes smsIn {
  from { opacity: 0; transform: translateY(-18px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.sms-item .service-tile { width: 38px; height: 38px; font-size: 15px; border-radius: 11px; }
.sms-item-body { min-width: 0; }
.sms-item-body b { display: block; font-size: 12.5px; color: #e9edf8; }
.sms-item-body span { font-size: 11px; color: #8a94ad; }
.sms-code {
  margin-left: auto; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--accent); background: rgba(34, 211, 238, 0.12);
  padding: 5px 9px; border-radius: 9px; letter-spacing: 0.06em;
}

/* AYDINLIK TEMA — telefon: DIŞ ÇERÇEVE siyah (gerçek telefon gibi), EKRAN açık */
[data-theme="light"] .phone { background: linear-gradient(160deg, #1a1f33, #090c16); }
[data-theme="light"] .phone-notch { background: #05070f; }
[data-theme="light"] .phone-screen { background: linear-gradient(180deg, #ffffff, #eef2fb); }
[data-theme="light"] .phone-header { border-bottom-color: rgba(13, 23, 48, 0.08); }
[data-theme="light"] .phone-logo { color: #101528; }
[data-theme="light"] .sms-item { background: rgba(13, 23, 48, 0.04); border-color: rgba(13, 23, 48, 0.08); }
[data-theme="light"] .sms-item-body b { color: #101528; }
[data-theme="light"] .sms-item-body span { color: #6b7488; }

.float-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: color-mix(in srgb, var(--bg-2) 80%, transparent);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong); border-radius: 16px;
  padding: 11px 16px; box-shadow: var(--shadow-lg);
  animation: chipFloat 6s ease-in-out infinite;
}
.float-chip b { display: block; font-size: 13px; }
.float-chip span { font-size: 11.5px; color: var(--muted); }
.float-chip .ic { width: 22px; height: 22px; color: var(--accent); }
.chip-a { top: 12%; left: -22%; animation-delay: 0.5s; }
.chip-a .ic { color: var(--success); }
.chip-b { top: 46%; right: -26%; animation-delay: 1.4s; }
.chip-c { bottom: 10%; left: -18%; animation-delay: 2.2s; }
.chip-c .ic { color: var(--accent-2); }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─────────── Marquee ─────────── */
.marquee-section { padding: 26px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex; gap: 14px; width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 9px 18px 9px 10px; border-radius: 99px;
  font-size: 13.5px; font-weight: 600; color: var(--text-2); white-space: nowrap;
}
.marquee-item .service-tile { width: 28px; height: 28px; font-size: 11px; border-radius: 8px; }
.marquee-item em { font-style: normal; color: var(--accent); font-weight: 700; }

/* ─────────── Sections ─────────── */
.section { padding: 88px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; margin-bottom: 14px; }
.section-head p { color: var(--text-2); font-size: 16.5px; }
/* SMS Onay SEO içerik bloğu */
.seo-content { padding-top: 8px; }
.seo-content .section-tag { display: block; text-align: center; margin-bottom: 22px; }
.seo-prose { max-width: 840px; margin: 0 auto; }
.seo-prose h2 { font-size: clamp(21px, 2.4vw, 27px); font-weight: 700; margin: 34px 0 12px; color: var(--text); line-height: 1.3; }
.seo-prose h2:first-child { margin-top: 0; }
.seo-prose p { color: var(--text-2); font-size: 15.5px; line-height: 1.78; margin: 0 0 15px; }
.seo-prose ul { list-style: none; margin: 0 0 18px; padding: 0; }
.seo-prose li { position: relative; padding-left: 26px; margin-bottom: 11px; color: var(--text-2); font-size: 15.5px; line-height: 1.65; }
.seo-prose li::before { content: ""; position: absolute; left: 3px; top: 8px; width: 8px; height: 8px; border-radius: 3px; background: var(--grad); }
.seo-prose strong { color: var(--text); font-weight: 600; }
.seo-prose a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(34, 211, 238, 0.3); transition: border-color 0.15s; }
.seo-prose a:hover { border-bottom-color: var(--accent); }
/* İç link bloğu — servis + rehber sayfalarına crawlanabilir bağlantılar */
.seo-guides { max-width: 840px; margin: 40px auto 0; }
.seo-guides h2 { font-size: clamp(19px, 2.2vw, 24px); font-weight: 700; margin: 0 0 16px; color: var(--text); text-align: center; }
.seo-guides-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 8px; }
.seo-guides-grid a { display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-radius: 12px; background: var(--surface-2, rgba(255,255,255,0.03)); border: 1px solid var(--border, rgba(255,255,255,0.07)); color: var(--text-2); font-size: 14px; font-weight: 500; text-decoration: none; line-height: 1.35; transition: border-color 0.15s, color 0.15s, background 0.15s; }
.seo-guides-grid a::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 2px; background: var(--grad); }
.seo-guides-grid a:hover { color: var(--text); border-color: var(--accent); background: rgba(34, 211, 238, 0.06); }

/* ─────────── App Panel (Numara Al) ─────────── */
.app-panel {
  display: grid; grid-template-columns: 1fr 1fr 1.1fr;
  gap: 0; overflow: hidden; border-radius: var(--r-xl);
}
.app-col { padding: 26px; border-right: 1px solid var(--border); display: flex; flex-direction: column; min-width: 0; }
.app-col:last-child { border-right: none; }
.app-col-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.app-col-head h3 { font-size: 17px; font-weight: 600; }
.step-num {
  display: grid; place-items: center; width: 30px; height: 30px;
  background: var(--grad); color: #06121a; font-weight: 800; font-size: 14px;
  border-radius: 10px; font-family: var(--font-display);
  box-shadow: 0 4px 14px -2px rgba(34, 211, 238, 0.4);
}

.search-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 12px; padding: 0 14px; margin-bottom: 14px;
  transition: border-color 0.2s;
}
.search-box:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12); }
.search-box .ic { color: var(--muted); width: 17px; height: 17px; }
.search-box input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-family: var(--font-body); font-size: 14px; padding: 11px 0;
}
.search-box input::placeholder { color: var(--muted); }

/* Sağlayıcı sekmeleri (Servis Seç üstünde) — Sağlayıcı 1 / Sağlayıcı 2 */
.provider-tabs { display: flex; gap: 8px; margin-bottom: 12px; }
.provider-tab {
  flex: 1; padding: 10px 12px; border-radius: 11px; cursor: pointer;
  background: var(--bg-2); border: 1px solid var(--border); color: var(--text-2);
  font-family: var(--font-body); font-weight: 700; font-size: 13.5px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.provider-tab:hover { color: var(--text); border-color: var(--accent); }
.provider-tab.active { background: linear-gradient(135deg, var(--accent), #818cf8); color: #04121a; border-color: transparent; }
/* Seçili sağlayıcıda olmayan servis — soluk göster (yine seçilebilir, ülke listesi yönlendirir) */
.list-item.svc-unavail { opacity: 0.5; }
.list-item.svc-unavail .list-item-sub { color: var(--warning, #f5a623); }

.scroll-list { overflow-y: auto; max-height: 400px; display: flex; flex-direction: column; gap: 6px; padding-right: 4px; }
.scroll-list::-webkit-scrollbar { width: 5px; }
.scroll-list::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 99px; }

.list-item {
  display: flex; align-items: center; gap: 12px;
  background: transparent; border: 1px solid transparent;
  padding: 9px 12px; border-radius: 13px; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  text-align: left; width: 100%; color: var(--text); font-family: var(--font-body);
}
.list-item:hover { background: var(--surface-2); }
.list-item.active {
  background: var(--grad-soft); border-color: rgba(34, 211, 238, 0.35);
}
.list-item-name { font-weight: 600; font-size: 14px; display: block; }
.list-item-sub { font-size: 12px; color: var(--muted); display: block; }
.list-item-end { margin-left: auto; text-align: right; }
.list-item-price { font-weight: 700; font-size: 13.5px; color: var(--accent); font-family: var(--font-display); white-space: nowrap; }
.list-item-stock { font-size: 11.5px; color: var(--muted); }
.stock-high { color: var(--success); }
.stock-low { color: var(--warn); }

.service-tile {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; position: relative; overflow: hidden;
  font-weight: 800; font-size: 15px; color: #fff;
  font-family: var(--font-display); letter-spacing: -0.02em;
}
.service-tile i { font-style: normal; transition: opacity 0.2s; }
.service-tile img {
  position: absolute; inset: 0; margin: auto;
  width: 58%; height: 58%; object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
/* Kendi yüklenen görsel: karoyu tamamen kaplasın, mavi arka plan görünmesin */
.service-tile.has-cover { background: transparent !important; }
.service-tile.has-cover i { display: none !important; }
.service-tile img.tile-cover { position: absolute; inset: 0; margin: 0; width: 100% !important; height: 100% !important; object-fit: cover; filter: none; }
.flag {
  width: 34px; height: 24px; border-radius: 5px; overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--border-strong); box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  position: relative; background: #2a3350;
}
.flag svg, .flag img { width: 100%; height: 100%; display: block; object-fit: cover; }
.flag-generic::after {
  content: attr(data-cc);
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 9.5px; font-weight: 800; color: #9aa5c0;
  font-family: var(--font-body); letter-spacing: 0.02em;
}

.empty-hint {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 40px 20px; color: var(--muted); text-align: center; font-size: 13.5px;
}
.empty-hint .ic { width: 34px; height: 34px; opacity: 0.5; }
.empty-hint.tall { padding: 70px 20px; }

/* Summary */
.summary-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px; margin-bottom: 18px;
}
.summary-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.summary-info b { display: block; font-size: 15px; }
.summary-info span { font-size: 12.5px; color: var(--muted); }
.summary-divider { height: 1px; background: var(--border); margin: 14px 0; }
/* Sağlayıcı seçenekleri: Servis 1 / Servis 2 — ülke 2 sağlayıcıda varsa */
.prov-opts-label { font-size: 12px; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }
.prov-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 14px; }
.prov-opt {
  display: flex; flex-direction: column; gap: 4px; text-align: left; cursor: pointer;
  background: var(--bg-2); border: 1.5px solid var(--border); border-radius: 12px; padding: 11px 12px;
  transition: border-color 0.15s, background 0.15s;
}
.prov-opt:hover { border-color: var(--accent); }
.prov-opt.active { border-color: var(--accent); background: rgba(34, 211, 238, 0.08); }
.prov-opt-top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.prov-opt-label { font-size: 13.5px; font-weight: 700; color: var(--text); }
.prov-opt-price { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--accent); }
.prov-opt-sub { font-size: 11px; color: var(--muted); }
.summary-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-2); margin-bottom: 8px; }
.summary-meta b { color: var(--text); }
.summary-price-row { display: flex; justify-content: space-between; align-items: baseline; margin: 16px 0; }
.summary-price-row span { font-size: 13.5px; color: var(--text-2); }
.summary-price {
  font-family: var(--font-display); font-size: 30px; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Sağlayıcı / fiyat katmanı seçici */
.tier-title { font-size: 12.5px; font-weight: 700; color: var(--text-2); margin-bottom: 10px; }
.tier-title span { color: var(--muted); font-weight: 500; font-size: 11.5px; }
.tier-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; max-height: 210px; overflow-y: auto; }
.tier-opt {
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 10px;
  width: 100%; text-align: left; cursor: pointer;
  background: var(--surface-2); border: 1.5px solid var(--border); border-radius: 11px;
  padding: 10px 13px; color: var(--text); font-family: var(--font-body); transition: all 0.15s;
}
.tier-opt:hover { border-color: var(--border-strong); }
.tier-opt.active { border-color: var(--accent); background: var(--grad-soft, rgba(34,211,238,0.08)); }
.tier-opt.oos { opacity: 0.45; cursor: not-allowed; }
.tier-radio { width: 17px; height: 17px; border-radius: 50%; border: 2px solid var(--border-strong); flex-shrink: 0; position: relative; }
.tier-opt.active .tier-radio { border-color: var(--accent); }
.tier-opt.active .tier-radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--accent); }
.tier-name { font-size: 13.5px; font-weight: 600; }
.tier-stock { font-size: 11.5px; color: var(--muted); white-space: nowrap; }
.tier-price { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--accent); white-space: nowrap; }

/* Orders */
.orders-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--text-2);
  margin-bottom: 12px; text-transform: uppercase;
}
/* Siparişlerim bölümü — grid */
.orders-section .section-head { margin-bottom: 34px; }
.orders-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 18px; align-items: start;
}
.order-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px; margin-bottom: 0;
  animation: smsIn 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.15);
}
.orders-grid .order-card:has(.order-code-wrap) { border-color: rgba(52, 211, 153, 0.35); }
.order-badge-ok {
  margin-left: auto; display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: var(--success);
  background: rgba(52, 211, 153, 0.1); padding: 4px 10px; border-radius: 99px;
}
.order-badge-ok .ic { width: 14px; height: 14px; }
.order-top { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.order-top .service-tile { width: 36px; height: 36px; font-size: 13px; border-radius: 10px; }
.order-service b { display: block; font-size: 14px; }
.order-service span { font-size: 12px; color: var(--muted); }
.order-timer {
  margin-left: auto; display: flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--warn);
}
.order-number {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: var(--surface-2); border: 1px dashed var(--border-strong);
  border-radius: 11px; padding: 9px 13px; margin-bottom: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: 0.04em;
}
.copy-mini {
  display: grid; place-items: center; width: 30px; height: 30px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 9px;
  color: var(--text-2); cursor: pointer; transition: all 0.15s;
}
.copy-mini:hover { color: var(--accent); border-color: var(--accent); }

.order-status {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text-2); padding: 4px 0;
}
.spinner {
  width: 15px; height: 15px; border-radius: 50%;
  border: 2px solid var(--surface-3); border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.order-code-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: rgba(52, 211, 153, 0.09); border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 11px; padding: 10px 14px;
  animation: codePop 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.4);
}
@keyframes codePop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.order-code {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--success); letter-spacing: 0.18em;
}
.order-actions { display: flex; gap: 8px; margin-top: 10px; }
.real-badge {
  display: inline-block; vertical-align: 2px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.1em;
  color: #06121a; background: linear-gradient(135deg, #34d399, #10b981);
  padding: 2px 7px; border-radius: 99px; margin-left: 6px;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.4);
}
.prev-codes {
  font-size: 12px; color: var(--muted); margin-bottom: 10px;
  padding: 7px 12px; background: var(--surface); border-radius: 9px;
  border: 1px dashed var(--border);
}
.prev-codes b { color: var(--text-2); font-family: var(--font-display); letter-spacing: 0.08em; }
.order-actions .btn { flex: 1; padding: 8px 10px; font-size: 12.5px; border-radius: 10px; }
.btn-danger-ghost { background: rgba(248, 113, 113, 0.08); color: var(--danger); border: 1px solid rgba(248, 113, 113, 0.25); }
.btn-danger-ghost:hover { background: rgba(248, 113, 113, 0.15); }
.btn-danger-ghost:disabled { opacity: 0.6; cursor: not-allowed; color: var(--warn); background: rgba(251, 191, 36, 0.08); border-color: rgba(251, 191, 36, 0.25); }
.btn-danger-ghost:disabled:hover { background: rgba(251, 191, 36, 0.08); }

/* ─────────── Bento ─────────── */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bento-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; position: relative; overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.bento-card:hover { transform: translateY(-5px); border-color: rgba(34, 211, 238, 0.4); box-shadow: var(--shadow-glow); }
.bento-wide { grid-column: span 2; }
.bento-icon {
  display: grid; place-items: center; width: 48px; height: 48px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 14px; color: var(--accent); margin-bottom: 18px;
}
.bento-icon .ic { width: 23px; height: 23px; }
.grad-icon { background: var(--grad); color: #06121a; border: none; box-shadow: 0 8px 22px -4px rgba(34, 211, 238, 0.45); }
.bento-card h3 { font-size: 18.5px; font-weight: 600; margin-bottom: 9px; }
.bento-card p { font-size: 14.5px; color: var(--text-2); }

.speed-bar {
  margin-top: 20px; position: relative; height: 34px;
  background: var(--surface-2); border-radius: 99px; overflow: hidden;
  display: flex; align-items: center;
  font-size: 12px; font-weight: 700;
}
.speed-fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 26%;
  background: var(--grad); border-radius: 99px;
}
.speed-bar span { position: relative; z-index: 1; padding-left: 14px; color: #06121a; }
.speed-bar .speed-other { margin-left: auto; padding-right: 16px; color: var(--muted); font-weight: 500; }

/* ─────────── Steps ─────────── */
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 14px; align-items: stretch; }
.step-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px 22px; position: relative;
  transition: transform 0.25s, border-color 0.25s;
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(129, 140, 248, 0.45); }
.step-badge {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 30px;
  color: var(--surface-3); -webkit-text-stroke: 1px var(--border-strong);
}
.step-icon {
  display: grid; place-items: center; width: 44px; height: 44px;
  background: var(--grad-soft); border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 13px; color: var(--accent); margin-bottom: 16px;
}
.step-card h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--text-2); }
.step-arrow { display: grid; place-items: center; color: var(--muted); }
.step-arrow .ic { width: 20px; height: 20px; }

/* ─────────── Pricing table ─────────── */
.price-panel { padding: 26px; border-radius: var(--r-xl); }
.price-filters { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }
.price-filters .search-box { margin-bottom: 0; flex: 1; min-width: 220px; }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-2); font-family: var(--font-body); font-weight: 600; font-size: 13px;
  padding: 8px 16px; border-radius: 99px; cursor: pointer; transition: all 0.18s;
}
.chip:hover { color: var(--text); border-color: var(--border-strong); }
.chip.active { background: var(--grad); color: #06121a; border-color: transparent; }

.table-wrap { overflow-x: auto; max-height: 460px; overflow-y: auto; border-radius: var(--r-md); border: 1px solid var(--border); }
.table-wrap::-webkit-scrollbar { width: 6px; height: 6px; }
.table-wrap::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 99px; }
.price-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px; }
.price-table thead { position: sticky; top: 0; z-index: 2; }
.price-table th {
  text-align: left; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); padding: 13px 16px;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
}
.price-table th.ta-r { text-align: right; }
.price-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.price-table tbody tr { transition: background 0.15s; }
.price-table tbody tr:hover { background: var(--surface); }
.price-table tbody tr:last-child td { border-bottom: none; }
.td-service { display: flex; align-items: center; gap: 11px; font-weight: 600; }
.td-service .service-tile { width: 32px; height: 32px; font-size: 12px; border-radius: 9px; }
.td-country { display: flex; align-items: center; gap: 9px; color: var(--text-2); }
.td-country .flag { width: 28px; height: 20px; }
.td-price { font-family: var(--font-display); font-weight: 700; color: var(--accent); text-align: right; white-space: nowrap; }
.badge-success {
  font-size: 12px; font-weight: 700; color: var(--success);
  background: rgba(52, 211, 153, 0.1); padding: 3px 9px; border-radius: 99px;
}
.table-buy { padding: 7px 16px; font-size: 12.5px; border-radius: 9px; }
.no-results { text-align: center; color: var(--muted); padding: 30px !important; }

/* ─────────── API ─────────── */
.api-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.api-grid > * { min-width: 0; }
.api-copy h2 { font-size: clamp(28px, 3.4vw, 38px); margin: 14px 0 16px; }
.api-copy > p { color: var(--text-2); font-size: 16px; margin-bottom: 24px; }
.api-list { list-style: none; margin-bottom: 30px; }
.api-list li { display: flex; align-items: center; gap: 11px; padding: 7px 0; font-size: 15px; color: var(--text-2); }
.api-list li b { color: var(--text); }
.api-list .ic { color: var(--success); width: 18px; height: 18px; }

.code-card {
  background: #0a0e1c; border: 1px solid var(--border-strong);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
[data-theme="light"] .code-card { background: #12172b; }
.code-head {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.code-dots { display: flex; gap: 6px; }
.code-dots i { width: 11px; height: 11px; border-radius: 50%; background: #2c3350; }
.code-dots i:first-child { background: #f87171; }
.code-dots i:nth-child(2) { background: #fbbf24; }
.code-dots i:last-child { background: #34d399; }
.code-tabs { display: flex; gap: 4px; margin-right: auto; }
.code-tab {
  background: none; border: 1px solid transparent; color: #8a94ad;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  padding: 5px 13px; border-radius: 8px; cursor: pointer; transition: all 0.15s;
}
.code-tab:hover { color: #e9edf8; }
.code-tab.active { background: rgba(34, 211, 238, 0.12); color: var(--accent); border-color: rgba(34, 211, 238, 0.3); }
.code-copy { width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.code-body {
  padding: 20px 22px; font-family: "Cascadia Code", "Consolas", monospace;
  font-size: 13px; line-height: 1.75; color: #c6d0ec;
  overflow-x: auto; white-space: pre; min-height: 300px; margin: 0;
}
.code-body .tok-kw { color: #c084fc; }
.code-body .tok-str { color: #7ee2a8; }
.code-body .tok-fn { color: #61c3ff; }
.code-body .tok-com { color: #55618a; font-style: italic; }
.code-body .tok-num { color: #fbbf24; }

/* ─────────── Payments ─────────── */
.pay-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pay-card { padding: 26px 18px; text-align: center; transition: transform 0.25s, border-color 0.25s; }
.pay-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.pay-logo {
  width: 52px; height: 52px; margin: 0 auto 14px;
  display: grid; place-items: center; border-radius: 15px;
  font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff;
}
.pay-logo .ic { width: 24px; height: 24px; }
.pay-papara { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.pay-havale { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.pay-kart { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.pay-kripto { background: linear-gradient(135deg, #10b981, #34d399); }
.pay-shopier { background: linear-gradient(135deg, #ef4444, #f87171); }
.pay-card h3 { font-size: 15.5px; font-weight: 600; margin-bottom: 5px; }
.pay-card p { font-size: 12.5px; color: var(--muted); }

/* ─────────── Big stats & Testimonials ─────────── */
.big-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 40px 20px; border-radius: var(--r-xl); text-align: center;
  background: var(--grad-soft); border-color: rgba(34, 211, 238, 0.2);
}
.bstat b {
  display: block; font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bstat span { font-size: 13.5px; color: var(--text-2); font-weight: 500; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: transform 0.25s; }
.testi-card:hover { transform: translateY(-4px); }
.stars { display: flex; gap: 3px; color: #fbbf24; }
.stars .ic { width: 16px; height: 16px; }
.testi-card p { font-size: 14.5px; color: var(--text-2); flex: 1; }
.testi-user { display: flex; align-items: center; gap: 12px; }
.testi-user b { display: block; font-size: 14px; }
.testi-user span:last-child { font-size: 12.5px; color: var(--muted); }
.avatar {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  font-weight: 700; font-size: 14px; color: #fff; font-family: var(--font-display);
}
.av-1 { background: linear-gradient(135deg, #22d3ee, #0891b2); }
.av-2 { background: linear-gradient(135deg, #818cf8, #6366f1); }
.av-3 { background: linear-gradient(135deg, #c084fc, #9333ea); }

/* ─────────── FAQ ─────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: var(--r-md); overflow: hidden; transition: border-color 0.2s; }
.faq-item[open] { border-color: rgba(34, 211, 238, 0.35); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 24px; cursor: pointer; font-weight: 600; font-size: 15.5px;
  list-style: none; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic { color: var(--muted); transition: transform 0.25s; width: 19px; height: 19px; }
.faq-item[open] summary .ic { transform: rotate(180deg); color: var(--accent); }
.faq-item p { padding: 0 24px 20px; color: var(--text-2); font-size: 14.5px; }
.faq-item p b { color: var(--text); }

/* ─────────── Blog ─────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { display: flex; flex-direction: column; text-decoration: none; color: var(--text); overflow: hidden; transition: transform 0.25s, border-color 0.25s; }
.blog-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.blog-cover {
  height: 150px; display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.blog-cover .ic { width: 44px; height: 44px; color: rgba(255, 255, 255, 0.9); position: relative; z-index: 1; }
.cover-1 { background: linear-gradient(135deg, #0891b2, #22d3ee, #67e8f9); }
.cover-2 { background: linear-gradient(135deg, #4f46e5, #818cf8, #a5b4fc); }
.cover-3 { background: linear-gradient(135deg, #9333ea, #c084fc, #e9d5ff); }
.blog-cover::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(255,255,255,0.35), transparent 55%);
}
.blog-body { padding: 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.blog-cat { font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em; color: var(--accent); }
.blog-body h3 { font-size: 16.5px; font-weight: 600; line-height: 1.35; }
.blog-body p { font-size: 13.5px; color: var(--text-2); flex: 1; }
.blog-meta { font-size: 12px; color: var(--muted); }

/* ─────────── CTA banner ─────────── */
.cta-banner {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(135deg, #0e7490 0%, #4f46e5 55%, #7e22ce 100%);
  border-radius: var(--r-xl); padding: 72px 32px;
  box-shadow: 0 30px 80px -20px rgba(79, 70, 229, 0.5);
}
.cta-glow {
  position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.22); filter: blur(90px);
}
.cta-banner h2 { position: relative; color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.cta-banner p { position: relative; color: rgba(255, 255, 255, 0.85); font-size: 17px; margin-bottom: 32px; }
.cta-banner p b { color: #fff; }
.cta-btns { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─────────── Footer ─────────── */
.footer { border-top: 1px solid var(--border); padding: 64px 0 32px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-2); font-size: 13.5px; margin: 16px 0 20px; max-width: 280px; }
.socials { display: flex; gap: 10px; }
.social-btn {
  display: grid; place-items: center; width: 38px; height: 38px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 11px;
  color: var(--text-2); transition: all 0.2s;
}
.social-btn:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-2); text-decoration: none; font-size: 14px; padding: 5px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 26px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted);
}
.footer-badges { display: flex; align-items: center; gap: 7px; }
.footer-badges .ic { color: var(--success); width: 15px; height: 15px; }

/* ─────────── Support FAB ─────────── */
.support-fab { position: fixed; right: 26px; bottom: 26px; z-index: 90; }
.fab-btn {
  display: grid; place-items: center; width: 58px; height: 58px;
  background: var(--grad); border: none; border-radius: 50%;
  color: #06121a; cursor: pointer;
  box-shadow: 0 12px 32px -6px rgba(34, 211, 238, 0.55);
  transition: transform 0.2s;
}
.fab-btn:hover { transform: scale(1.08); }
.fab-btn .ic { width: 25px; height: 25px; }
.fab-btn .fab-x { display: none; }
.support-fab.open .fab-msg { display: none; }
.support-fab.open .fab-x { display: block; }
.fab-popover {
  position: absolute; bottom: 72px; right: 0; width: 250px;
  padding: 20px; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(12px) scale(0.96); pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  background: color-mix(in srgb, var(--bg-2) 92%, transparent);
}
.support-fab.open .fab-popover { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab-popover b { font-size: 15px; }
.fab-popover p { font-size: 13px; color: var(--text-2); margin: 6px 0 14px; }
.fab-popover .btn { margin-bottom: 8px; }

/* ─────────── Modals ─────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(3, 5, 12, 0.72); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 420px; padding: 34px;
  border-radius: var(--r-xl); position: relative;
  background: var(--panel); border: 1px solid var(--border-strong);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(0.97); transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1.1);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal h3 { font-size: 23px; margin-bottom: 8px; }
.modal-sub { font-size: 14px; color: var(--text-2); margin-bottom: 24px; }
.demo-note { color: var(--warn); font-size: 12.5px; }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  display: grid; place-items: center; width: 34px; height: 34px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text-2); cursor: pointer; transition: all 0.15s;
}
.modal-close:hover { color: var(--text); }
.modal form { display: flex; flex-direction: column; gap: 16px; }
.modal label { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--text-2); }
.modal input, .auth-card input {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 15px; color: var(--text); font-family: var(--font-body); font-size: 14.5px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.modal input:focus, .auth-card input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.13); }
.modal-foot { text-align: center; font-size: 13.5px; color: var(--text-2); margin-top: 20px; }
.modal-foot a { color: var(--accent); font-weight: 600; text-decoration: none; }

.amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-bottom: 18px; }
.amount-btn {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 6px; color: var(--text); font-family: var(--font-display);
  font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.15s;
}
.amount-btn:hover { border-color: var(--border-strong); }
.amount-btn.active { background: var(--grad); color: #06121a; border-color: transparent; box-shadow: 0 6px 18px -4px rgba(34, 211, 238, 0.4); }

.paymethod-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.paymethod {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 13px;
  padding: 11px 14px; cursor: pointer; font-size: 14px; font-weight: 600;
  transition: all 0.15s;
}
.paymethod:hover { border-color: var(--border-strong); }
.paymethod.active { border-color: var(--accent); background: var(--grad-soft); }
.paymethod input { display: none; }
.paymethod em { margin-left: auto; font-style: normal; font-size: 11.5px; color: var(--muted); font-weight: 500; }
.pm-icon {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 15px;
}
.pm-icon .ic { width: 16px; height: 16px; }

/* ─────────── Toasts ─────────── */
.toast-stack {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 300; display: flex; flex-direction: column; gap: 10px; align-items: center;
  pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 11px;
  background: color-mix(in srgb, var(--bg-2) 90%, transparent);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong); border-radius: 14px;
  padding: 13px 20px; font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  max-width: min(92vw, 480px);
}
.toast.out { animation: toastOut 0.3s forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(16px) scale(0.95); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(10px) scale(0.96); } }
.toast .ic { width: 19px; height: 19px; }
.toast-success .ic { color: var(--success); }
.toast-error .ic { color: var(--danger); }
.toast-info .ic { color: var(--accent); }

/* ─────────── Bakım modu ─────────── */
.maint-overlay {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center; padding: 24px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}
.maint-box {
  text-align: center; max-width: 420px; padding: 44px 36px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.maint-icon { font-size: 44px; margin-bottom: 16px; }
.maint-box h2 { font-size: 26px; margin-bottom: 12px; }
.maint-box p { color: var(--text-2); font-size: 15px; }

/* ─────────── Reveal ─────────── */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ─────────── Responsive ─────────── */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 26px; }
  .chip-a { left: -8%; } .chip-b { right: -10%; } .chip-c { left: -6%; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .api-grid { grid-template-columns: 1fr; gap: 36px; }
  .pay-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-card:last-child { grid-column: span 2; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .app-panel { grid-template-columns: 1fr 1fr; }
  .app-col-summary { grid-column: span 2; border-top: 1px solid var(--border); border-right: none; }
  .app-col:nth-child(2) { border-right: none; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; padding: 14px 20px 20px; gap: 4px;
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; font-size: 15.5px; }
  .nav-burger { display: grid; }
  .auth-btns { display: none; }
  .nav-mobile-auth { display: flex; gap: 10px; margin-top: 10px; }
  .nav-mobile-auth .btn { flex: 1; }
  .balance-chip span#balanceText { display: none; }
  .balance-chip { padding-left: 10px; }

  .hero { padding: 48px 0 30px; }
  .hero-stats { gap: 22px; }
  .hstat b { font-size: 22px; }
  .phone { width: 265px; height: 525px; }
  .float-chip { display: none; }

  .section { padding: 60px 0; }
  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .steps-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-card:last-child { grid-column: span 2; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card:last-child { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:last-child { grid-column: span 1; }
  .big-stats { grid-template-columns: 1fr 1fr; gap: 26px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .app-panel { grid-template-columns: 1fr; }
  .app-col { border-right: none; border-bottom: 1px solid var(--border); }
  .app-col-summary { grid-column: span 1; border-bottom: none; }
  .app-col:nth-child(2) { border-bottom: 1px solid var(--border); }
  .scroll-list { max-height: 300px; }
  .announce { font-size: 12px; text-align: center; }
}

/* ── Küçük telefonlar (≤480px): kenar boşluklarını daralt, başlıkları küçült ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-head h2, .hero-copy h1 { font-size: clamp(26px, 8vw, 34px); }
  .hero-sub { font-size: 15px; }
  .big-stats { grid-template-columns: 1fr 1fr; }
  .pay-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal { padding: 22px 18px; }
  .toast-stack { left: 12px; right: 12px; transform: none; width: auto; }
  .toast { width: 100%; }
  /* Dokunmatik hedefler: min 44px yükseklik */
  .btn, .amount-btn, .list-item, .prov-opt { min-height: 44px; }
}

.list-more {
  text-align: center; padding: 14px 12px; font-size: 12.5px; color: var(--muted);
  border-top: 1px dashed var(--border); font-weight: 600;
}

/* ═══════════ KULLANICI MENÜSÜ (navbar dropdown) ═══════════ */
.user-chip-wrap { position: relative; }
.user-chip {
  display: flex; align-items: center; gap: 9px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 99px;
  padding: 5px 12px 5px 5px; cursor: pointer; color: var(--text);
  font-family: var(--font-body); font-weight: 600; font-size: 13.5px;
  transition: border-color 0.18s, background 0.18s;
}
.user-chip:hover, .user-chip.open { border-color: var(--border-strong); background: var(--surface-3); }
.user-chip-av { width: 28px; height: 28px; font-size: 11px; }
.user-chip-chev { width: 14px; height: 14px; color: var(--muted); transition: transform 0.2s; }
.user-chip.open .user-chip-chev { transform: rotate(180deg); }

.user-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 150;
  width: 250px; padding: 8px;
  background: var(--bg-2); border: 1px solid var(--border-strong); border-radius: 16px;
  box-shadow: var(--shadow-lg);
  animation: menuIn 0.18s cubic-bezier(0.2, 0.9, 0.3, 1.15);
}
@keyframes menuIn { from { opacity: 0; transform: translateY(-6px) scale(0.98); } }
.user-menu-head {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px 12px;
  border-bottom: 1px solid var(--border); margin-bottom: 8px;
}
.user-menu-av { width: 38px; height: 38px; font-size: 14px; flex-shrink: 0; }
.user-menu-head b { display: block; font-size: 14px; line-height: 1.25; }
.user-menu-head span { font-size: 12px; color: var(--muted); word-break: break-all; }
.user-menu-balance {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(167, 139, 250, 0.1));
  border: 1px solid var(--border); border-radius: 11px;
  padding: 9px 13px; margin-bottom: 8px; font-size: 12.5px; color: var(--text-2);
}
.user-menu-balance b { font-family: var(--font-display); font-size: 16px; color: var(--text); }
.user-menu-item {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: none; border: none; border-radius: 10px;
  padding: 10px 12px; cursor: pointer;
  color: var(--text-2); font-family: var(--font-body); font-weight: 600; font-size: 13.5px;
  transition: background 0.15s, color 0.15s; text-align: left;
}
.user-menu-item:hover { background: var(--surface-2); color: var(--text); }
.user-menu-item .ic { width: 16px; height: 16px; }
.user-menu-item.danger { color: var(--danger); }
.user-menu-item.danger:hover { background: rgba(248, 113, 113, 0.1); }
.user-menu-sep { height: 1px; background: var(--border); margin: 7px 4px; }

.nav-orders-count {
  display: inline-grid; place-items: center; min-width: 17px; height: 17px;
  padding: 0 5px; margin-left: 4px; border-radius: 99px;
  background: var(--grad); color: #070b14;
  font-size: 10.5px; font-weight: 800; vertical-align: 1px;
}

/* ═══════════ HESAP BİLGİLERİM MODALI ═══════════ */
.account-modal { max-width: 470px; }
.acc-loading { display: flex; align-items: center; gap: 10px; justify-content: center; padding: 40px 0; color: var(--muted); }
.acc-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.acc-avatar { width: 62px; height: 62px; font-size: 22px; flex-shrink: 0; box-shadow: 0 8px 24px -6px rgba(34, 211, 238, 0.35); }
.acc-id h3 { font-size: 21px; margin-bottom: 2px; }
.acc-id > span { display: block; font-size: 13px; color: var(--text-2); }
.acc-since { margin-top: 5px; font-size: 12px !important; color: var(--muted) !important; display: flex !important; align-items: center; gap: 5px; }
.acc-since .ic { width: 13px; height: 13px; }
.acc-balance {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(167, 139, 250, 0.12));
  border: 1px solid var(--border-strong); border-radius: 15px;
  padding: 15px 18px; margin-bottom: 16px;
}
.acc-balance span { display: block; font-size: 12px; color: var(--text-2); font-weight: 600; }
.acc-balance b {
  font-family: var(--font-display); font-size: 27px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.acc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 18px; }
.acc-stat {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 8px; text-align: center;
}
.acc-stat b { display: block; font-family: var(--font-display); font-size: 17px; margin-bottom: 2px; }
.acc-stat span { font-size: 10.8px; color: var(--muted); font-weight: 600; letter-spacing: 0.02em; }
.acc-actions { display: flex; gap: 10px; }
.acc-actions .btn { flex: 1; }

/* ═══════════ SİPARİŞ GEÇMİŞİ + BOŞ DURUM ═══════════ */
.orders-empty {
  text-align: center; padding: 44px 20px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px dashed var(--border-strong); border-radius: var(--r-lg);
  color: var(--text-2); font-size: 14.5px;
}
.orders-empty .ic { width: 34px; height: 34px; color: var(--muted); margin-bottom: 10px; }
.orders-empty a { color: var(--accent); font-weight: 700; text-decoration: none; }
.orders-history { margin-top: 34px; }
.orders-history h3 {
  display: flex; align-items: center; gap: 9px;
  font-size: 16px; margin-bottom: 14px; color: var(--text-2);
}
.orders-history h3 .ic { width: 17px; height: 17px; color: var(--muted); }
.hist-list { display: flex; flex-direction: column; gap: 8px; }
.hist-row {
  display: flex; align-items: center; gap: 13px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 13px;
  padding: 11px 15px;
}
.hist-row .service-tile { width: 34px; height: 34px; border-radius: 10px; font-size: 12px; }
.hist-store-ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 17px; flex-shrink: 0; }
.hist-store-ico img { width: 20px; height: 20px; border-radius: 5px; object-fit: contain; }
.hist-info { flex: 1; min-width: 0; }
.hist-info b { display: block; font-size: 13.5px; }
.hist-info span { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.hist-date { font-size: 11.5px; color: var(--muted); white-space: nowrap; }
.hist-price { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; white-space: nowrap; flex-shrink: 0; }
.hist-badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 99px; white-space: nowrap; flex-shrink: 0; }
/* Geçmiş siparişte alınan doğrulama kodu — belirgin + kopyalanabilir (uzun kod ellipsis ile daralır) */
.hist-code {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; flex-shrink: 1; min-width: 0;
  background: rgba(52, 211, 153, 0.1); border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 9px; padding: 4px 6px 4px 9px;
}
.hist-code-label { font-size: 9px; font-weight: 800; letter-spacing: 0.06em; color: var(--success); opacity: 0.85; flex-shrink: 0; }
.hist-code b { font-family: var(--font-display), monospace; font-size: 14px; letter-spacing: 0.04em; color: var(--text); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 150px; }
.hist-code .copy-mini { width: 26px; height: 26px; }
@media (max-width: 700px) { .hist-code-label { display: none; } }
.hist-ok { color: var(--success); background: rgba(52, 211, 153, 0.1); }
.hist-refund { color: var(--muted); background: var(--surface-2); }
.hist-wait { color: #fbbf24; background: rgba(251, 191, 36, 0.1); }
/* Geçmiş: mağaza siparişi NUMARA + KOD (iki kopyalanabilir alan) */
.hist-deliv { display: inline-flex; align-items: center; gap: 6px; flex-shrink: 1; min-width: 0; flex-wrap: wrap; justify-content: flex-end; }
.hist-code-num { background: rgba(56, 167, 232, 0.1); border-color: rgba(56, 167, 232, 0.3); }
.hist-code-num .hist-code-label { color: #38a7e8; }

@media (max-width: 700px) {
  .user-chip-name { display: none; }
  .acc-stats { grid-template-columns: repeat(2, 1fr); }
  .hist-date { display: none; }
  .hist-row { gap: 9px; padding: 10px 12px; }
  .hist-code { padding: 3px 5px 3px 7px; }
  .hist-code b { max-width: 84px; }
  /* Mağaza NUMARA/KOD etiketleri ayırt edilebilsin (tek SMS kod pilinde gizli kalır) */
  .hist-deliv .hist-code-label { display: inline; }
  .hist-deliv .hist-code b { max-width: 96px; }
}

/* ═══════════ BİLDİRİM (DUYURU) PANELİ ═══════════ */
.notif-wrap { position: relative; }
.notif-dot {
  position: absolute; top: 6px; right: 6px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent-2, #f87171); border: 2px solid var(--bg); animation: notifPulse 2s infinite;
}
@keyframes notifPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); } }
.notif-panel {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 160;
  width: 340px; max-width: 90vw; max-height: 440px; overflow: hidden;
  background: var(--panel); border: 1px solid var(--border-strong); border-radius: 18px;
  box-shadow: var(--shadow-lg);
  animation: menuPop 0.2s cubic-bezier(0.2, 0.9, 0.3, 1.15);
}
@keyframes menuPop { from { opacity: 0; transform: translateY(-8px); } }
.notif-head { padding: 15px 18px; border-bottom: 1px solid var(--border); }
.notif-head b { font-size: 15px; }
.notif-list { max-height: 380px; overflow-y: auto; padding: 6px; }
.notif-item { display: flex; gap: 11px; padding: 12px; border-radius: 12px; transition: background 0.15s; }
.notif-item:hover { background: var(--surface); }
.notif-item.pinned { background: var(--grad-soft, rgba(34,211,238,0.08)); }
.notif-emoji { font-size: 20px; flex-shrink: 0; }
.notif-item b { font-size: 13.5px; display: block; margin-bottom: 2px; }
.notif-item p { font-size: 12.5px; color: var(--text-2); margin: 0 0 4px; line-height: 1.5; }
.notif-time { font-size: 11px; color: var(--muted); }
.notif-empty { text-align: center; padding: 28px; color: var(--muted); font-size: 13.5px; }

/* ═══════════ DESTEK BÖLÜMÜ ═══════════ */
.destek-grid { display: grid; grid-template-columns: 340px 1fr; gap: 22px; align-items: start; }
.destek-side { display: flex; flex-direction: column; gap: 12px; }
.destek-card {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: var(--r-lg);
  text-decoration: none; color: var(--text); transition: transform 0.18s, border-color 0.18s;
}
a.destek-card:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.destek-icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0; }
.destek-icon .ic { width: 22px; height: 22px; color: #fff; }
.di-telegram { background: linear-gradient(135deg, #2aabee, #229ed9); }
.di-mail { background: linear-gradient(135deg, #f56040, #c13584); }
.di-clock { background: linear-gradient(135deg, #34d399, #059669); }
.di-life { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.destek-card b { display: block; font-size: 14.5px; }
.destek-card span { font-size: 12.5px; color: var(--text-2); }
.destek-card > div { flex: 1; min-width: 0; }
.destek-arrow { width: 16px; height: 16px; color: var(--muted); }
.destek-main { padding: 26px; border-radius: var(--r-xl); }
.destek-main h3 { display: flex; align-items: center; gap: 10px; font-size: 19px; margin-bottom: 18px; }
.destek-main h3 .ic { width: 20px; height: 20px; color: var(--accent); }
.destek-form { display: flex; flex-direction: column; gap: 14px; }
.destek-form label { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; font-weight: 600; }
.destek-form input, .destek-form textarea {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 15px; color: var(--text); font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color 0.18s, box-shadow 0.18s; resize: vertical;
}
.destek-form input:focus, .destek-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,211,238,0.12); }
.destek-note { font-size: 12.5px; color: var(--muted); text-align: center; }
.destek-tickets { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.destek-tickets h4 { font-size: 14px; margin-bottom: 12px; color: var(--text-2); }
.my-ticket { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 11px; margin-bottom: 8px; }
.my-ticket b { font-size: 13.5px; display: block; }
.my-ticket span { font-size: 11.5px; color: var(--muted); }
.ticket-status { font-size: 11.5px; font-weight: 700; padding: 4px 11px; border-radius: 99px; }
.st-open { color: #fbbf24; background: rgba(251,191,36,0.12); }
.st-answered { color: var(--accent); background: rgba(34,211,238,0.12); }
.st-closed { color: var(--muted); background: var(--surface-2); }
.my-ticket { cursor: pointer; transition: border-color 0.18s, transform 0.18s; }
.my-ticket:hover { border-color: var(--accent); transform: translateY(-1px); }
.faq-narrow { max-width: 780px; margin: 0 auto; }

/* ── Destek talebi detay modalı ── */
.ticket-modal { max-width: 540px; width: 100%; }
.tm-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; padding-right: 30px; }
.tm-head h3 { font-size: 17px; margin: 0; }
.tm-thread { display: flex; flex-direction: column; gap: 12px; max-height: 46vh; overflow-y: auto; padding: 4px 2px; margin-bottom: 14px; }
.tm-msg { padding: 10px 13px; border-radius: 13px; max-width: 85%; }
.tm-msg-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.tm-msg-head b { font-size: 12.5px; }
.tm-msg-head span { font-size: 10.5px; color: var(--muted); }
.tm-msg p { font-size: 13.5px; line-height: 1.5; margin: 0; white-space: pre-wrap; word-break: break-word; }
.tm-mine { align-self: flex-end; background: rgba(34,211,238,0.10); border: 1px solid rgba(34,211,238,0.22); }
.tm-staff { align-self: flex-start; background: var(--surface); border: 1px solid var(--border); }
.tm-reply { display: flex; gap: 8px; align-items: flex-end; }
.tm-reply textarea { flex: 1; resize: vertical; min-height: 42px; }
.tm-reply .btn { white-space: nowrap; }

/* ═══════════ BLOG ═══════════ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.blog-empty { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 40px 0; }
.blog-card { border-radius: 16px; overflow: hidden; cursor: pointer; display: flex; flex-direction: column; transition: transform 0.2s, border-color 0.2s; border: 1px solid var(--border); }
.blog-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.blog-cover { aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.blog-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-cover-ph { display: grid; place-items: center; background: linear-gradient(135deg, rgba(34,211,238,0.12), rgba(192,132,252,0.12)); }
.blog-cover-ph .ic { width: 40px; height: 40px; color: var(--accent); opacity: 0.7; }
.blog-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.blog-card-body h3 { font-size: 17px; line-height: 1.35; }
.blog-card-body p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; flex: 1; }
.blog-meta { font-size: 12px; color: var(--muted); }
/* ⭐ Popüler yazı — üstte tam genişlik, BÜYÜK yatay kart */
.blog-card-featured { grid-column: 1 / -1; flex-direction: row; align-items: stretch; border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.blog-card-featured .blog-cover { width: 42%; flex-shrink: 0; aspect-ratio: auto; height: auto; min-height: 240px; align-self: stretch; position: relative; overflow: hidden; }
.blog-card-featured .blog-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-card-featured .blog-card-body { padding: 28px 32px; justify-content: center; gap: 12px; }
.blog-card-featured h3 { font-size: 24px; line-height: 1.3; }
.blog-card-featured p { font-size: 15px; line-height: 1.65; flex: 0 1 auto; }
.blog-pop-badge { align-self: flex-start; font-size: 11.5px; font-weight: 800; letter-spacing: 0.05em; color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); padding: 5px 12px; border-radius: 99px; }
@media (max-width: 760px) {
  .blog-card-featured { flex-direction: column; }
  .blog-card-featured .blog-cover { width: 100%; aspect-ratio: 16/9; min-height: 0; }
  .blog-card-featured h3 { font-size: 19px; }
}

/* Blog yazı detay (tam sayfa) */
.blog-view { max-width: 760px; }
.blog-article { padding: 34px 38px 44px; border-radius: 18px; margin-top: 18px; }
/* ═══ SEO LANDING (ülke/servis sayfaları — zengin kart düzeni) ═══ */
.blog-view.landing-mode .blog-article { background: transparent; border: none; box-shadow: none; padding: 0; max-width: 1120px; margin: 10px auto 40px; }
.lp { display: flex; flex-direction: column; gap: 18px; }
.lp-hero, .lp-feat, .lp-why, .lp-steps, .lp-uses, .lp-faq { background: var(--panel); border: 1px solid var(--border); border-radius: 20px; }
.lp-hero { padding: 34px 38px; position: relative; overflow: hidden; }
.lp-hero::after { content: ""; position: absolute; top: -120px; right: -80px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%); pointer-events: none; }
.lp-crumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; position: relative; z-index: 1; }
.lp-crumb b { color: var(--text-2); }
.lp-badge { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); padding: 8px 15px; border-radius: 99px; margin-bottom: 18px; position: relative; z-index: 1; }
.lp-hero h1 { font-size: 34px; line-height: 1.2; margin-bottom: 16px; position: relative; z-index: 1; }
.lp-intro { font-size: 16px; line-height: 1.7; color: var(--text-2); max-width: 920px; margin-bottom: 24px; position: relative; z-index: 1; }
.lp-intro b { color: var(--text); }
.lp-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; position: relative; z-index: 1; }
.lp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; position: relative; z-index: 1; }
.lp-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; }
.lp-stat b { display: block; font-size: 26px; font-weight: 800; margin-bottom: 5px; color: var(--text); }
.lp-stat span { font-size: 13.5px; color: var(--muted); }
.lp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lp-feat { padding: 24px 24px 26px; }
.lp-feat-ico { width: 46px; height: 46px; border-radius: 12px; background: color-mix(in srgb, var(--accent) 14%, transparent); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.lp-feat-ico .ic { width: 24px; height: 24px; color: var(--accent); }
.lp-feat h3 { font-size: 18px; margin-bottom: 10px; }
.lp-feat p { font-size: 14px; line-height: 1.65; color: var(--muted); }
.lp-why, .lp-steps, .lp-uses, .lp-faq { padding: 30px 34px; }
.lp-why h2, .lp-steps h2, .lp-uses h2, .lp-faq h2 { font-size: 24px; line-height: 1.25; margin-bottom: 18px; }
.lp-why p { font-size: 15px; line-height: 1.75; color: var(--text-2); margin-bottom: 14px; }
.lp-why p:last-child { margin-bottom: 0; }
.lp-why a, .lp-intro a { color: var(--accent); }
.lp-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-grid2 > section { margin: 0; }
.lp-step { display: flex; gap: 14px; margin-bottom: 18px; }
.lp-step:last-child { margin-bottom: 0; }
.lp-step-n { flex-shrink: 0; width: 27px; height: 27px; border-radius: 8px; background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.lp-step b { display: block; margin-bottom: 5px; font-size: 15.5px; }
.lp-step p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.lp-checklist { list-style: none; padding: 0; margin: 0; }
.lp-checklist li { position: relative; padding-left: 32px; margin-bottom: 16px; font-size: 14px; line-height: 1.6; color: var(--text-2); }
.lp-checklist li:last-child { margin-bottom: 0; }
.lp-checklist li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; border-radius: 50%; background: color-mix(in srgb, #22c55e 22%, transparent); color: #4ade80; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.lp-checklist li b { color: var(--text); }
.lp-faq-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.lp-faq-head h2 { margin-bottom: 6px; }
.lp-faq-head p { font-size: 14px; color: var(--muted); }
.lp-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.lp-faq-grid details { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 15px 18px; }
.lp-faq-grid summary { cursor: pointer; font-weight: 600; font-size: 14.5px; list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.lp-faq-grid summary::-webkit-details-marker { display: none; }
.lp-faq-grid summary .ic { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s; color: var(--muted); }
.lp-faq-grid details[open] summary .ic { transform: rotate(180deg); }
.lp-faq-grid p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-top: 12px; }
@media (max-width: 860px) {
  .lp-stats, .lp-features, .lp-grid2, .lp-faq-grid { grid-template-columns: 1fr; }
  .lp-hero { padding: 26px 22px; } .lp-hero h1 { font-size: 26px; }
  .lp-why, .lp-steps, .lp-uses, .lp-faq { padding: 24px 22px; }
}
.blog-article-cover { width: 100%; border-radius: 14px; margin-bottom: 24px; max-height: 340px; object-fit: cover; }
.blog-article-tag { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--accent); background: rgba(34,211,238,0.1); padding: 5px 12px; border-radius: 99px; margin-bottom: 14px; }
.blog-article h1 { font-size: 30px; line-height: 1.25; margin-bottom: 12px; }
.blog-article-meta { display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 26px; }
/* Blog istatistik rozetleri: tarih + görüntülenme */
.blog-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.blog-stats { display: inline-flex; align-items: center; gap: 12px; }
.blog-stat { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--muted); white-space: nowrap; }
.blog-stat svg { opacity: .8; flex: 0 0 auto; }
.blog-stat-views b { color: var(--text); font-weight: 700; }
.blog-article-meta .blog-stats { margin-left: 6px; }
.blog-article-meta .blog-stat { font-size: 13px; }
.blog-article-content p { font-size: 15.5px; line-height: 1.75; color: var(--text-2); margin-bottom: 18px; }
/* SSR (crawler için sunucudan basılan) makale — JS varken kaldırılır */
.ssr-article { max-width: 820px; margin: 0 auto; padding: 30px 20px; }
.ssr-article:empty { display: none; }
.ssr-article h1 { font-size: 28px; line-height: 1.25; margin-bottom: 16px; }
.ssr-article h2 { font-size: 22px; margin: 26px 0 10px; }
.ssr-article h3 { font-size: 18px; margin: 20px 0 8px; }
.ssr-article p, .ssr-article li { font-size: 15.5px; line-height: 1.75; color: var(--text-2); margin-bottom: 12px; }
.ssr-article ul, .ssr-article ol { padding-left: 22px; margin-bottom: 16px; }
.blog-article-content h2 { font-size: 21px; line-height: 1.3; margin: 30px 0 12px; color: var(--text); font-weight: 700; }
.blog-article-content h3 { font-size: 17px; line-height: 1.35; margin: 22px 0 10px; color: var(--text); font-weight: 700; }
.blog-article-content h2::before { content: ""; display: inline-block; width: 4px; height: 18px; border-radius: 3px; background: linear-gradient(var(--accent), #818cf8); margin-right: 10px; vertical-align: -2px; }
.blog-article-content ul, .blog-article-content ol { margin: 0 0 18px; padding-left: 22px; }
.blog-article-content li { font-size: 15.5px; line-height: 1.7; color: var(--text-2); margin-bottom: 8px; }
.blog-article-content ul li::marker { color: var(--accent); }
.blog-article-content ol li::marker { color: var(--accent); font-weight: 700; }
.blog-article-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.blog-article-content strong { color: var(--text); font-weight: 700; }
/* Yazı içi SSS */
.blog-faq { margin-top: 34px; }
.blog-faq h2 { font-size: 21px; margin-bottom: 14px; font-weight: 700; }
.blog-faq .faq-item { margin-bottom: 10px; }
/* Yazı sonu CTA */
.blog-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: space-between; margin-top: 34px; padding: 22px 24px; border-radius: 16px; background: linear-gradient(135deg, rgba(34,211,238,0.12), rgba(129,140,248,0.12)); border: 1px solid var(--border); }
.blog-cta-txt b { display: block; font-size: 17px; margin-bottom: 4px; color: var(--text); }
.blog-cta-txt p { font-size: 13.5px; color: var(--muted); margin: 0; max-width: 420px; }
.blog-cta .btn { flex-shrink: 0; }
@media (max-width: 560px) { .blog-article { padding: 26px 22px 32px; } .blog-article h1 { font-size: 24px; } .blog-cta { flex-direction: column; align-items: stretch; } .blog-cta .btn { justify-content: center; } }

/* ═══════════ MİSAFİR / UYGULAMA MODU ═══════════ */
.app-tabs { display: none; }
body.is-auth .app-tabs { display: block; background: var(--panel); border-bottom: 1px solid var(--border); position: sticky; top: 62px; z-index: 60; }
.app-tabs-inner { display: flex; gap: 6px; padding: 9px 0; overflow-x: auto; }
.app-tab { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 12px; background: transparent; border: 1px solid transparent; color: var(--text-2); font-family: var(--font-body); font-weight: 600; font-size: 14.5px; cursor: pointer; white-space: nowrap; transition: background 0.15s, color 0.15s; }
.app-tab .ic { width: 17px; height: 17px; }
.app-tab:hover { background: var(--surface); color: var(--text); }
.app-tab.active { background: linear-gradient(135deg, var(--accent), #818cf8); color: #04121a; }
.app-tab-count { background: rgba(4,18,26,0.22); border-radius: 99px; padding: 1px 7px; font-size: 11.5px; font-weight: 700; }

/* Mod görünürlüğü — is-auth: uygulama, misafir: marketing */
body.is-auth .guest-only { display: none !important; }
body:not(.is-auth) .app-view { display: none !important; }
/* Blog misafir için pazarlama akışında görünür kalır; üyede sekmeyle açılan app-view olur */
body:not(.is-auth) #blog { display: block !important; }
body.is-auth .app-view { display: none; }
body.is-auth .app-view.active { display: block; }
body.is-auth .nav-links { display: none; }
body.is-auth .app-view.active { animation: appFade 0.25s ease; }
@keyframes appFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Son başarılı onaylar şeridi (kompakt) */
.recent-success { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding: 9px 15px; background: var(--surface); border: 1px solid var(--border); border-radius: 13px; }
.rs-label { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--text-2); white-space: nowrap; }
.rs-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(52,211,153,0.22); animation: rsPulse 1.6s infinite; }
@keyframes rsPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.rs-track { overflow: hidden; flex: 1; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.rs-marquee { display: flex; gap: 9px; width: max-content; animation: rsScroll 40s linear infinite; }
@keyframes rsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .rs-marquee { animation: none; } }
.rs-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; font-size: 12.5px; color: var(--text); background: var(--surface-2); border: 1px solid var(--border); border-radius: 99px; padding: 5px 11px 5px 6px; }
.rs-item .service-tile { width: 20px; height: 20px; font-size: 9px; border-radius: 6px; }
.rs-item .rs-ok { color: var(--success); font-weight: 700; }
@media (max-width: 640px) { .rs-label span.rs-text { display: none; } }

/* ═══════════ FAVORİLER & HIZLI TEKRAR SİPARİŞ ═══════════ */
.quick-picks { margin-bottom: 24px; display: flex; flex-direction: column; gap: 18px; }
.qp-head { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 11px; }
.qp-head .ic { width: 17px; height: 17px; color: var(--accent); }
.qp-track { display: flex; gap: 12px; overflow-x: auto; padding: 2px 2px 6px; scrollbar-width: thin; scrollbar-color: var(--border-strong) transparent; }
.qp-track::-webkit-scrollbar { height: 6px; }
.qp-track::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 99px; }
.qp-card {
  position: relative; flex: 0 0 auto; width: 200px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 13px; display: flex; flex-direction: column; gap: 11px;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.qp-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 28px -14px rgba(34, 211, 238, 0.45); }
.qp-main { display: flex; align-items: center; gap: 10px; cursor: pointer; padding-right: 28px; }
.qp-main .service-tile { width: 38px; height: 38px; font-size: 14px; flex-shrink: 0; }
.qp-info { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.qp-info b { font-size: 13.5px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qp-info span { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qp-info span .flag { width: 16px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.qp-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; cursor: pointer; padding-top: 10px; border-top: 1px solid var(--border); }
.qp-price { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); }
.qp-go { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: #05070f; background: var(--grad); padding: 6px 12px; border-radius: 99px; white-space: nowrap; }
.qp-go .ic { width: 13px; height: 13px; }
.qp-star {
  position: absolute; top: 9px; right: 9px; z-index: 2;
  width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--muted); cursor: pointer;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
}
.qp-star .ic { width: 14px; height: 14px; }
.qp-star:hover { color: #fbbf24; border-color: rgba(251, 191, 36, 0.4); }
.qp-star.on { color: #fbbf24; background: rgba(251, 191, 36, 0.14); border-color: rgba(251, 191, 36, 0.4); }
/* Özet kartında favori yıldızı */
.summary-fav {
  margin-left: auto; width: 34px; height: 34px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 9px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--muted); cursor: pointer;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
}
.summary-fav .ic { width: 17px; height: 17px; }
.summary-fav:hover { color: #fbbf24; border-color: rgba(251, 191, 36, 0.4); }
.summary-fav.on { color: #fbbf24; background: rgba(251, 191, 36, 0.14); border-color: rgba(251, 191, 36, 0.4); }

/* Popüler Servisler (öne çıkan komborlar) + yıldız */
.featured-wrap { margin-bottom: 24px; }
.featured-head { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 13px; }
.featured-head .star-ic { width: 18px; height: 18px; color: #fbbf24; }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 13px; }
.featured-card {
  position: relative; display: flex; flex-direction: column; gap: 12px; padding: 15px 16px;
  background: var(--panel); border: 1px solid var(--border); border-radius: 16px;
  cursor: pointer; text-align: left; transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.featured-card::before { content: ""; position: absolute; inset: 0; border-radius: 16px; padding: 1px; background: linear-gradient(135deg, rgba(251,191,36,0.35), transparent 55%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.18s; pointer-events: none; }
.featured-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px -12px rgba(0,0,0,0.5); }
.featured-card:hover::before { opacity: 1; }
.featured-card .service-tile { width: 40px; height: 40px; font-size: 15px; border-radius: 12px; flex-shrink: 0; }
.featured-star { position: absolute; top: 11px; right: 12px; display: grid; place-items: center; }
.featured-star .ic { width: 16px; height: 16px; color: #fbbf24; filter: drop-shadow(0 1px 3px rgba(251,191,36,0.4)); }
.featured-top { display: flex; align-items: center; gap: 11px; padding-right: 22px; }
.featured-name { font-size: 15.5px; font-weight: 700; color: var(--text); line-height: 1.25; word-break: break-word; }
.featured-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 11px; border-top: 1px solid var(--border); }
.featured-cty { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-2); min-width: 0; }
.featured-cty > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.featured-cty .flag { width: 24px; height: 17px; border-radius: 4px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.35); flex-shrink: 0; }
.featured-cty .flag .flag-img, .featured-cty .flag img { width: 100%; height: 100%; object-fit: cover; }
.featured-price { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 15.5px; white-space: nowrap; }
.star-badge { width: 13px; height: 13px; color: #fbbf24; vertical-align: -1px; margin-left: 3px; }

/* Admin'den yüklenen özel logo — navbar/footer/giriş alanlarının tamamını kaplar */
.logo.has-custom-logo { padding: 0; }
.custom-logo-img { height: 40px; width: auto; max-width: 210px; object-fit: contain; display: block; }
.auth-logo.has-custom-logo { display: block; margin: 0 auto 18px; }
.custom-logo-img.auth-logo-img { height: 54px; max-width: 240px; margin: 0 auto; }
@media (max-width: 560px) { .custom-logo-img { height: 34px; max-width: 160px; } .custom-logo-img.auth-logo-img { height: 46px; } }

/* ═══════════ BAKİYE YÜKLE — TAM SAYFA ═══════════ */
body.modal-lock { overflow: hidden; }
.page-overlay {
  position: fixed; inset: 0; z-index: 300; overflow-y: auto;
  background: var(--bg); opacity: 0; pointer-events: none; transition: opacity 0.28s;
}
.page-overlay.open { opacity: 1; pointer-events: auto; }
.page-view { max-width: 860px; margin: 0 auto; padding: 24px 20px 60px; min-height: 100%; }
.page-view-head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-top: 8px; flex-wrap: wrap; }
.page-view-head h2 { font-size: 24px; flex: 1; }
.page-back {
  display: inline-flex; align-items: center; gap: 7px; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 11px; padding: 9px 15px; color: var(--text); font-family: var(--font-body); font-weight: 600;
  font-size: 14px; cursor: pointer; transition: border-color 0.15s;
}
.page-back:hover { border-color: var(--border-strong); }
.page-back .ic { width: 17px; height: 17px; transform: rotate(180deg); }

/* ── Giriş / Kayıt tam sayfa ── */
.auth-view { max-width: 460px; display: flex; flex-direction: column; min-height: 100vh; padding: 22px 20px 40px; }
.auth-view .page-back { align-self: flex-start; margin-bottom: auto; }
.auth-card { margin: 24px auto auto; width: 100%; padding: 34px 30px 30px; border-radius: 20px; text-align: center; }
.auth-logo { display: block; margin-bottom: 18px; }
.auth-logo .logo-mark { display: inline-grid; place-items: center; }
.auth-logo .logo-mark svg { width: 52px; height: 52px; }
.auth-card h2 { font-size: 25px; margin-bottom: 8px; }
.auth-sub { color: var(--text-2); font-size: 14.5px; margin-bottom: 26px; }
.auth-card form { text-align: left; }
.auth-card label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 15px; }
.auth-card input { margin-top: 7px; }
.auth-card .btn-block { margin-top: 6px; }
.auth-foot { margin-top: 20px; font-size: 14px; color: var(--text-2); text-align: center; }
.auth-foot a { color: var(--accent); font-weight: 600; }
.auth-forgot { display: block; text-align: right; margin: -6px 0 14px; font-size: 13px; color: var(--accent); font-weight: 600; text-decoration: none; }
.auth-forgot:hover { text-decoration: underline; }
.auth-msg { margin-top: 16px; padding: 11px 14px; border-radius: 11px; font-size: 13.5px; line-height: 1.5; }
.auth-msg.ok { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); color: #86efac; }
.auth-msg.err { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }
.auth-sep { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--muted); font-size: 12.5px; }
.auth-sep::before, .auth-sep::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.btn-google { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 11px; border-radius: 12px; background: var(--surface-2); color: var(--text); border: 1px solid var(--border-strong); font-family: var(--font-body); font-weight: 600; font-size: 14.5px; cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.btn-google:hover { background: var(--surface-3, var(--surface-2)); border-color: var(--accent); }
.g-icon { width: 19px; height: 19px; flex-shrink: 0; }
.topup-current { font-size: 13.5px; color: var(--text-2); }
.topup-current b { color: var(--accent); font-family: var(--font-display); font-size: 16px; }
.topup-body { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 26px; }
.topup-label { display: block; font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.amount-btn {
  padding: 16px 8px; border-radius: 14px; background: var(--surface-2); border: 1.5px solid var(--border);
  color: var(--text); font-family: var(--font-display); font-weight: 700; font-size: 16px; cursor: pointer;
  transition: all 0.15s;
}
.amount-btn:hover { border-color: var(--border-strong); }
.amount-btn.active { background: var(--grad-soft, rgba(34,211,238,0.1)); border-color: var(--accent); color: var(--accent); }
.custom-amount { position: relative; display: flex; align-items: center; }
.ca-prefix { position: absolute; left: 16px; font-size: 17px; font-weight: 700; color: var(--muted); }
.custom-amount input {
  width: 100%; padding: 15px 15px 15px 34px; border-radius: 14px; background: var(--bg-2);
  border: 1.5px solid var(--border); color: var(--text); font-family: var(--font-display); font-size: 16px; font-weight: 700;
  outline: none; transition: border-color 0.15s;
}
.custom-amount input:focus { border-color: var(--accent); }
.topup-bonus-hint { margin-top: 12px; padding: 12px 15px; border-radius: 12px; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); font-size: 13px; color: var(--text-2); }
.topup-bonus-hint b { color: var(--success); }
.paymethod-list { display: flex; flex-direction: column; gap: 10px; }
.paymethod {
  display: flex; align-items: center; gap: 13px; padding: 14px 16px; border-radius: 14px;
  background: var(--surface-2); border: 1.5px solid var(--border); cursor: pointer; transition: all 0.15s;
}
.paymethod:hover { border-color: var(--border-strong); }
.paymethod.active { border-color: var(--accent); background: var(--grad-soft, rgba(34,211,238,0.08)); }
.paymethod input { display: none; }
.pm-icon { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-weight: 800; font-size: 16px; color: #fff; flex-shrink: 0; }
.pm-icon .ic { width: 19px; height: 19px; }
.pm-text { flex: 1; }
.pm-text b { display: block; font-size: 14.5px; }
.pm-text em { font-style: normal; font-size: 12px; color: var(--text-2); }
.pm-bonus { flex-shrink: 0; font-size: 11px; font-weight: 800; letter-spacing: 0.02em; color: #86efac; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.35); border-radius: 999px; padding: 3px 9px; white-space: nowrap; }
.pm-check { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border-strong); display: grid; place-items: center; flex-shrink: 0; }
.pm-check .ic { width: 13px; height: 13px; color: #fff; opacity: 0; }
.paymethod.active .pm-check { background: var(--accent); border-color: var(--accent); }
.paymethod.active .pm-check .ic { opacity: 1; color: #06121a; }
/* Ödeme yöntemi detay paneli */
.pay-detail:empty { display: none; }
.pay-detail { margin-top: 14px; }
.pd-gateway {
  display: flex; gap: 13px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(34,211,238,0.08), rgba(129,140,248,0.08));
  border: 1px solid var(--border-strong); border-radius: 14px; padding: 16px;
}
.pd-gateway .ic { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.pd-gateway b { font-size: 14.5px; }
.pd-gateway span { display: block; font-size: 12.5px; color: var(--text-2); line-height: 1.55; margin-top: 3px; }
.pd-comm { margin-top: 11px; padding: 11px 14px; border-radius: 12px; background: rgba(251,191,36,0.09); border: 1px solid rgba(251,191,36,0.28); font-size: 12.5px; color: var(--text-2); line-height: 1.5; }
.pd-comm b { color: var(--text); }
.pd-auto { display: flex; align-items: center; gap: 9px; margin-top: 11px; padding: 11px 14px; border-radius: 12px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); font-size: 13px; color: #86efac; line-height: 1.45; }
.pd-auto .ic { width: 18px; height: 18px; flex-shrink: 0; }
.pd-auto b { color: #bbf7d0; }
/* Ağ geçidi + otomatik bakiye tek yeşil kutu */
.pd-gw {
  display: flex; gap: 13px; align-items: flex-start;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 14px; padding: 16px;
}
.pd-gw .ic { width: 26px; height: 26px; color: #4ade80; flex-shrink: 0; margin-top: 1px; }
.pd-gw b { font-size: 14.5px; color: #bbf7d0; }
.pd-gw span { display: block; font-size: 12.5px; color: #86efac; line-height: 1.55; margin-top: 3px; }
.pd-gw span b { font-size: inherit; color: #dcfce7; }
.pd-manual { background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.pd-head { font-size: 12px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.pd-account { background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; margin-bottom: 9px; }
.pd-acc-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 7px; }
.pd-acc-top b { font-size: 13.5px; }
.pd-acc-top span { font-size: 11.5px; color: var(--muted); }
.pd-iban { display: flex; align-items: center; justify-content: space-between; gap: 8px; background: var(--surface); border-radius: 9px; padding: 8px 12px; }
.pd-iban span { font-family: var(--font-display); font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em; word-break: break-all; }
.pd-note { font-size: 12px; color: var(--text-2); margin-top: 10px; line-height: 1.55; }
.pd-note b { color: var(--text); }
/* Havale AÇIKLAMA (zorunlu referans) — dikkat çekici */
.pd-desc-label { font-size: 11.5px; font-weight: 700; color: #fbbf24; margin: 10px 0 5px; }
.pd-iban.pd-desc { border: 1px solid rgba(251, 191, 36, 0.4); background: rgba(251, 191, 36, 0.08); }
.pd-iban.pd-desc span { color: #fbbf24; }
/* Gönderen ad soyad alanı — şık kart */
.pd-sender {
  margin-top: 16px; padding: 14px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.06), rgba(129, 140, 248, 0.07));
  border: 1px solid var(--border); border-radius: 14px;
}
.pd-sender-top { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.pd-sender-badge {
  width: 34px; height: 34px; flex-shrink: 0; display: grid; place-items: center;
  border-radius: 10px; background: var(--grad); color: #05070f;
  box-shadow: 0 4px 14px -4px rgba(34, 211, 238, 0.5);
}
.pd-sender-badge .ic { width: 18px; height: 18px; }
.pd-sender-labels { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.pd-sender-title { font-size: 14px; font-weight: 700; color: var(--text); }
.pd-sender-hint { font-size: 11px; font-weight: 400; color: var(--muted); line-height: 1.4; }
.pd-req {
  flex-shrink: 0; font-size: 9.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--danger); background: rgba(248, 113, 113, 0.12); border: 1px solid rgba(248, 113, 113, 0.32);
  padding: 4px 9px; border-radius: 999px;
}
.pd-sender-field {
  display: flex; align-items: center; gap: 10px; padding: 0 14px;
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: 11px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pd-sender-field:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.14); }
.pd-sender-field > .ic { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; transition: color 0.2s; }
.pd-sender-field:focus-within > .ic { color: var(--accent); }
.pd-sender-field input {
  flex: 1; min-width: 0; width: auto; background: transparent; border: none; box-shadow: none !important;
  padding: 13px 0; color: var(--text); font-family: var(--font-body); font-size: 14.5px; outline: none;
}
.pd-sender-field input::placeholder { color: var(--muted); }
.pd-empty { font-size: 13px; color: var(--muted); text-align: center; padding: 14px; }

.topup-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 18px 22px; border-radius: 16px; background: var(--surface-2); border: 1px solid var(--border-strong);
}
.topup-total span { font-size: 12.5px; color: var(--text-2); display: block; }
.topup-total b { font-family: var(--font-display); font-size: 26px; }
.topup-confirm { padding: 14px 28px; font-size: 15px; }
.topup-terms { margin-top: 14px; text-align: center; font-size: 12px; color: var(--text-2); line-height: 1.5; }
.topup-terms a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.topup-note { margin-top: 10px; text-align: center; font-size: 12.5px; color: var(--muted); }

/* ═══════════ GİRİŞ POP-UP (duyuru) ═══════════ */
.site-popup-overlay {
  position: fixed; inset: 0; z-index: 350;
  display: grid; place-items: center; padding: 20px;
  background: rgba(3, 5, 12, 0.72); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.site-popup-overlay.open { opacity: 1; pointer-events: auto; }
.site-popup {
  position: relative; width: 100%; max-width: 420px; text-align: center;
  padding: 36px 30px 30px; border-radius: 24px;
  background: var(--panel); backdrop-filter: none; -webkit-backdrop-filter: none;
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.96); transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.site-popup-overlay.open .site-popup { transform: none; }
.site-popup-badge { font-size: 46px; margin-bottom: 12px; }
.site-popup-img { width: 100%; max-height: 190px; object-fit: cover; border-radius: 14px; margin-bottom: 18px; }
.site-popup h3 { font-size: 24px; margin-bottom: 10px; }
.site-popup p { color: var(--text-2); font-size: 15px; margin-bottom: 22px; line-height: 1.55; }
.site-popup .btn { text-decoration: none; }
.site-popup-close {
  position: absolute; top: 14px; right: 14px;
  display: grid; place-items: center; width: 34px; height: 34px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text-2); cursor: pointer;
}
.site-popup-close:hover { color: var(--text); }
.pay-alert.pa-ok { border-top: 3px solid #22c55e; }
.pay-alert.pa-no { border-top: 3px solid #ef4444; }
.pay-alert.pa-ok h3 { color: #22c55e; }
.pay-alert.pa-no h3 { color: #ef4444; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════
   MOBİL SON GEÇİŞ — dosya sonunda: sonradan tanımlanan bileşenlerin
   (topup, page-view, modal, sipariş, özet) base kurallarını GEÇER.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  /* Bakiye yükleme sayfası: 2 kolon → tek kolon */
  .topup-body { grid-template-columns: 1fr; gap: 20px; }
  .topup-footer { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; padding: 16px; }
  .topup-confirm { width: 100%; justify-content: center; }
  .topup-total b { font-size: 24px; }
  .page-view { padding: 20px 16px 48px; }
  .page-view-head { margin-bottom: 20px; }
  .page-view-head h2 { font-size: 21px; }
  /* Giriş / kayıt kartı */
  .auth-card { padding: 28px 22px 26px; }
  /* Genel modal (hesap, destek, servis) */
  .modal { width: 100%; max-width: 100%; border-radius: 18px 18px 0 0; }
  .modal-lg, .modal-xl { max-width: 100%; }
  /* Sipariş kartları: tam genişlik tek kolon */
  .orders-grid, #ordersList { grid-template-columns: 1fr; }
  /* Özet sağlayıcı seçenekleri (Servis 1 / Servis 2) dar ekranda alt alta */
  .prov-opts { grid-template-columns: 1fr; }
  /* Hesap istatistik kutuları */
  .acc-stats { grid-template-columns: repeat(2, 1fr); }
  /* Bildirim / kullanıcı menüsü paneli ekranı taşmasın */
  .notif-panel, .user-menu { max-width: calc(100vw - 24px); }
}

@media (max-width: 440px) {
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .topup-total b { font-size: 22px; }
  .prov-opt { min-height: 44px; }
  /* Numara al adım başlıkları biraz daha küçük */
  .app-col-head h3 { font-size: 15px; }
}

/* ═══════════ HEDİYE ÇARKI ═══════════ */
.app-tab-gift { position: relative; }
.gift-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #f59e0b; box-shadow: 0 0 0 0 rgba(245,158,11,.6); animation: giftPulse 1.6s infinite; margin-left: 2px; vertical-align: middle; }
@keyframes giftPulse { 0%{box-shadow:0 0 0 0 rgba(245,158,11,.6)} 70%{box-shadow:0 0 0 7px rgba(245,158,11,0)} 100%{box-shadow:0 0 0 0 rgba(245,158,11,0)} }
.wheel-wrap { position: relative; max-width: 560px; margin: 0 auto; padding: 46px 20px 34px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 26px; overflow: hidden; }
.wheel-wrap::before { content: ""; position: absolute; top: 24px; left: 50%; width: 440px; height: 440px; max-width: 130%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,.26), rgba(34,211,238,.12) 46%, transparent 70%); filter: blur(6px); pointer-events: none; z-index: 0; }
.wheel-stage { position: relative; width: 360px; height: 360px; max-width: 86vw; max-height: 86vw; z-index: 1; }
/* altın dış çerçeve + üzerindeki ışıklar */
.wheel-bezel { position: absolute; inset: -13px; border-radius: 50%; background: conic-gradient(#f7cd5b,#a9760a,#fde68a,#b8860b,#f7cd5b,#c9971f,#fde68a,#a9760a,#f7cd5b); box-shadow: 0 16px 44px rgba(0,0,0,.55), inset 0 2px 6px rgba(255,255,255,.55), inset 0 -3px 8px rgba(0,0,0,.4); z-index: 1; }
.wheel-bulb { position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; margin: -4.5px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #fff, #fde68a 55%, #f59e0b); box-shadow: 0 0 7px 1.5px rgba(253,224,107,.85); z-index: 2; animation: bulbGlow 1.5s ease-in-out infinite; }
@keyframes bulbGlow { 0%,100%{opacity:1;} 50%{opacity:.4;} }
.wheel { position: absolute; inset: 5px; border-radius: 50%; z-index: 3; overflow: hidden; box-shadow: inset 0 0 0 3px rgba(255,255,255,.16), inset 0 0 60px rgba(0,0,0,.5); transition: transform 6s cubic-bezier(.1,.82,.16,1); will-change: transform; }
.wheel-sep { position: absolute; left: calc(50% - 1px); top: 0; width: 2px; height: 50%; transform-origin: 50% 100%; background: linear-gradient(rgba(255,255,255,.6), rgba(255,255,255,.1)); pointer-events: none; }
.wheel-seg-label { position: absolute; left: 50%; top: 50%; transform-origin: 0 0; font-weight: 900; font-size: 17px; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.65); white-space: nowrap; pointer-events: none; }
.wheel-seg-label .cur { font-size: .7em; opacity: .85; }
.wheel-seg-label.jackpot { color: #3a2606; text-shadow: 0 1px 2px rgba(255,255,255,.55); font-size: 19px; }
.wheel-seg-label.won { animation: labWon 1s ease infinite; }
@keyframes labWon { 0%,100%{ filter: none; } 50%{ filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 11px #fde68a); } }
.wheel-pointer { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); z-index: 6; width: 32px; height: 42px; background: linear-gradient(#fef3c7,#f59e0b 55%,#b45309); clip-path: polygon(50% 100%, 8% 8%, 92% 8%); border-radius: 5px 5px 0 0; box-shadow: 0 5px 10px rgba(0,0,0,.55); }
.wheel-pointer::after { content: ""; position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.85); }
.wheel-hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 98px; height: 98px; border-radius: 50%; z-index: 7; border: none; color: #fff; font-weight: 900; font-size: 16px; letter-spacing: .6px; cursor: pointer; background: radial-gradient(circle at 38% 30%, #5eead4, #6366f1 52%, #4338ca); box-shadow: 0 0 0 5px #fff, 0 0 0 8px rgba(0,0,0,.2), 0 10px 24px rgba(0,0,0,.5), inset 0 -7px 14px rgba(0,0,0,.35), inset 0 7px 12px rgba(255,255,255,.4); transition: transform .15s; text-shadow: 0 1px 3px rgba(0,0,0,.4); }
.wheel-hub:hover:not(:disabled) { transform: translate(-50%,-50%) scale(1.07); }
.wheel-hub:active:not(:disabled) { transform: translate(-50%,-50%) scale(.95); }
.wheel-hub:disabled { cursor: not-allowed; background: radial-gradient(circle at 38% 30%, #94a3b8, #475569 58%); box-shadow: 0 0 0 5px #e2e8f0, 0 8px 18px rgba(0,0,0,.4), inset 0 -6px 12px rgba(0,0,0,.3); color: #e2e8f0; }
.wheel-info { min-height: 46px; position: relative; z-index: 1; }
.wheel-result { font-size: 26px; font-weight: 900; background: linear-gradient(90deg,#fde68a,#f59e0b,#fbbf24); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 6px; animation: wheelPop .55s ease; }
@keyframes wheelPop { 0%{transform:scale(.5);opacity:0} 55%{transform:scale(1.18)} 100%{transform:scale(1);opacity:1} }
.wheel-note { color: var(--muted); font-size: 14px; }
.wheel-note.win { color: var(--success); font-weight: 700; }

/* ═══════════ MAĞAZA (hazır hesap ürünleri) ═══════════ */
.store-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 780px) { .store-grid { grid-template-columns: 1fr; } }
.store-card { display: flex; gap: 18px; padding: 22px; border-radius: 18px; background: var(--panel); border: 1px solid var(--border); transition: transform .18s, box-shadow .18s, border-color .18s; }
.store-card:hover { transform: translateY(-3px); border-color: rgba(34,211,238,.4); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.store-ico { flex: none; width: 74px; height: 74px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; box-shadow: 0 8px 20px rgba(0,0,0,.35); }
.store-ico img { width: 46px; height: 46px; object-fit: contain; }
.store-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.store-name { font-family: "Space Grotesk", sans-serif; font-size: 18px; font-weight: 700; color: var(--cyan); margin-bottom: 12px; }
.store-feats { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 7px; }
.store-feats li { display: flex; gap: 8px; font-size: 13.5px; color: var(--muted); line-height: 1.35; }
.store-feats li::before { content: "✅"; flex: none; font-size: 12px; margin-top: 1px; }
.store-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.store-stock { font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; background: rgba(249,115,22,.14); color: #fb923c; }
.store-stock.ok { background: rgba(34,197,94,.14); color: #4ade80; }
.store-price { font-family: "Space Grotesk", sans-serif; font-size: 26px; font-weight: 700; color: #fb923c; }
.store-buyrow { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.store-qty { display: flex; align-items: center; gap: 6px; }
.store-qty button { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); background: rgba(249,115,22,.1); color: #fb923c; font-size: 20px; font-weight: 700; cursor: pointer; transition: background .15s; display: flex; align-items: center; justify-content: center; }
.store-qty button:hover { background: rgba(249,115,22,.2); }
.store-qty input { width: 54px; height: 38px; text-align: center; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-soft, rgba(255,255,255,.03)); color: var(--text); font-size: 15px; font-weight: 600; }
.store-buy { flex: 1; height: 44px; border: none; border-radius: 12px; background: linear-gradient(135deg, #f97316, #fb923c); color: #fff; font-weight: 700; font-size: 15px; cursor: pointer; transition: filter .15s, transform .1s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.store-buy:hover:not(:disabled) { filter: brightness(1.08); }
.store-buy:active:not(:disabled) { transform: scale(.98); }
.store-buy:disabled { opacity: .5; cursor: not-allowed; background: #64748b; }
/* Siparişlerim > mağaza siparişleri */
.sorder { padding: 14px 16px; border-radius: 14px; background: var(--panel); border: 1px solid var(--border); margin-bottom: 10px; }
.sorder-head { display: flex; align-items: center; gap: 13px; }
.sorder-ico { flex: none; width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.sorder-ico img { width: 26px; height: 26px; border-radius: 6px; object-fit: contain; }
.sorder-main { flex: 1; min-width: 0; }
.sorder-main b { display: block; font-size: 14.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sorder-meta { font-size: 12px; color: var(--muted); }
.sorder-no { font-family: "Space Grotesk", monospace; font-weight: 700; color: var(--cyan); }
.sorder-end { flex: none; display: flex; flex-direction: column; gap: 5px; align-items: flex-end; text-align: right; }
.sorder-price { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.sorder-code { font-family: "Space Grotesk", monospace; font-weight: 700; font-size: 15px; color: var(--text); letter-spacing: .5px; }
/* Teslimat bilgi bloğu (numara / kod alanları) */
.sorder-deliv { margin-top: 12px; padding: 12px; border-radius: 11px; display: flex; flex-direction: column; gap: 9px; }
.sorder-deliv.sd-ok { background: rgba(34,197,94,.09); border: 1px solid rgba(34,197,94,.25); }
.sorder-deliv.sd-wait-code { background: rgba(56,167,232,.09); border: 1px solid rgba(56,167,232,.28); }
.sd-field { display: flex; align-items: center; gap: 10px; }
.sd-label { flex: none; min-width: 62px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.sd-field .sorder-code { flex: 1; min-width: 0; word-break: break-all; }
.sd-field .copy-mini { flex-shrink: 0; }
.sorder-hint { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--text-2); }
.sorder-hint .ic { width: 15px; height: 15px; flex-shrink: 0; color: #38a7e8; }
@media (max-width: 560px) {
  .sorder { padding: 13px; }
  .sorder-ico { width: 40px; height: 40px; font-size: 20px; }
  .sorder-main b { font-size: 14px; }
  .sorder-end .badge { font-size: 10.5px; padding: 3px 8px; }
  .sd-label { min-width: 54px; }
  .sorder-code { font-size: 14px; }
}
/* Teslim bekliyor — adım kartı (temiz, yapılandırılmış) */
.sorder-wait { margin-top: 10px; padding: 14px; border-radius: 12px; background: rgba(249,115,22,.09); border: 1px solid rgba(249,115,22,.28); }
.sw-head { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 800; color: #fdba74; }
.sw-head .ic { width: 17px; height: 17px; flex-shrink: 0; }
.sw-desc { margin: 8px 0 12px; font-size: 12.5px; line-height: 1.55; color: var(--text-2); }
.sw-desc b { color: var(--text); }
.sw-order { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); margin-bottom: 10px; }
.sw-order-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); flex-shrink: 0; }
.sw-order .sorder-code { flex: 1; min-width: 0; word-break: break-all; }
.sw-order .copy-mini { flex-shrink: 0; }
.sw-tg-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 11px 14px; border-radius: 10px; background: linear-gradient(135deg,#229ed9,#2aabee); color: #fff; font-weight: 700; font-size: 13.5px; text-decoration: none; transition: filter .15s; }
.sw-tg-btn:hover { filter: brightness(1.08); }
.sw-tg-btn .ic { width: 16px; height: 16px; }
/* ═══════════ DAVET ET KAZAN (referans) ═══════════ */
.app-tab-ref { color: #fcd34d; }
.app-tab-ref.active { color: #fff; }
.ref-wrap { max-width: 640px; }
.ref-hero { text-align: center; margin-bottom: 22px; }
.ref-hero-ic { display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 18px; background: linear-gradient(135deg, rgba(251,191,36,.18), rgba(129,140,248,.18)); border: 1px solid rgba(251,191,36,.3); margin-bottom: 14px; }
.ref-hero-ic .ic { width: 30px; height: 30px; color: #fcd34d; }
.ref-hero h2 { font-size: 26px; margin-bottom: 8px; }
.ref-grad { background: linear-gradient(90deg,#fbbf24,#f59e0b); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ref-hero p { color: var(--text-2); font-size: 14px; line-height: 1.6; max-width: 520px; margin: 0 auto; }
.ref-hero p b { color: var(--text); }
.ref-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 18px; }
.ref-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px 10px; text-align: center; }
.ref-stat b { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text); }
.ref-stat span { font-size: 12px; color: var(--muted); }
.ref-link-card { background: var(--panel); border: 1px solid var(--border-strong); border-radius: 16px; padding: 18px; margin-bottom: 18px; }
.ref-link-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.ref-link-row { display: flex; gap: 9px; margin: 10px 0 12px; }
.ref-link-row input { flex: 1; min-width: 0; background: var(--bg-2); border: 1px solid var(--border); border-radius: 11px; padding: 11px 13px; color: var(--text); font-size: 13px; font-family: "Space Grotesk", monospace; }
.ref-link-row .btn { flex-shrink: 0; }
.ref-share { display: flex; gap: 9px; }
.ref-share-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border-radius: 11px; font-weight: 700; font-size: 13px; text-decoration: none; color: #fff; transition: filter .15s; }
.ref-share-btn .ic { width: 16px; height: 16px; }
.rs-wa { background: #25d366; }
.rs-tg { background: #229ed9; }
.ref-share-btn:hover { filter: brightness(1.07); }
.ref-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.ref-step { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px 12px; text-align: center; }
.ref-step-n { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--grad-soft, rgba(34,211,238,.12)); color: var(--accent); font-weight: 800; font-size: 15px; margin-bottom: 9px; }
.ref-step p { font-size: 12.5px; color: var(--text-2); line-height: 1.45; }
.ref-invite-banner { display: flex; align-items: center; gap: 9px; padding: 11px 13px; border-radius: 12px; background: rgba(251,191,36,.1); border: 1px solid rgba(251,191,36,.3); color: #fcd34d; font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.ref-invite-banner .ic { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width: 560px) {
  .ref-steps { grid-template-columns: 1fr; }
  .ref-share { flex-direction: column; }
  .ref-hero h2 { font-size: 21px; }
  .ref-link-row { flex-direction: column; }
  .ref-link-row .btn { width: 100%; justify-content: center; }
}

/* Mağaza/sipariş rozet + mono (yoksa) */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-ok { background: rgba(34,197,94,.15); color: #4ade80; }
.badge-warn { background: rgba(249,115,22,.15); color: #fb923c; }
.badge-err { background: rgba(239,68,68,.15); color: #f87171; }
.badge-neutral { background: rgba(148,163,184,.15); color: #cbd5e1; }
.mono { font-family: "Space Grotesk", ui-monospace, monospace; font-weight: 600; }

/* ─── Google ile giriş: Google'ın gerçek butonu, bizim butonun üstünde şeffaf ───
   GIS "redirect URI" istemediği için redirect_uri_mismatch hatası oluşmaz.
   Kullanıcı bizim tasarımımızı görür, tıklama Google'ın butonuna gider →
   "Bir hesap seçin" penceresi açılır. */
.gis-overlay { position: relative; width: 100%; }
.gis-overlay > .btn-google { width: 100%; }
.gis-slot {
  position: absolute; inset: 0;
  opacity: 0;                 /* görünmez ama tıklanabilir */
  overflow: hidden;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.gis-slot > div, .gis-slot iframe { width: 100% !important; height: 100% !important; }
/* Google butonu yüklenemezse tıklama bizim butona düşer (bilgilendirme mesajı) */
.gis-slot:empty { display: none; }
