/* ============================================================
   ZOMBIE.CLICK — Toksik / Kan Zombi Teması
   (Sadece palet + tema eklendi; sınıf/yerleşim yapısı korundu)
   ============================================================ */
:root {
  --bg-0: #05080a;
  --bg-1: #080c09;
  --bg-2: #0b120c;
  --bg-3: #101a11;
  --surface: rgba(16, 24, 17, 0.66);
  --surface-solid: #0f1710;
  --surface-2: #0b120c;
  --border: rgba(125, 217, 52, 0.16);
  --border-strong: rgba(125, 217, 52, 0.5);
  --text: #e9ffe1;
  --text-soft: #a9c6a0;
  --muted: #6f8a66;
  --primary: #7dd934;
  --primary-2: #b6ff5c;
  --accent: #c81e2b;          /* kan kırmızısı */
  --accent-2: #e23b2e;
  --success: #6fdc3a;
  --danger: #e23b2e;
  --warn: #d9a520;            /* çürük sarı */
  --grad: linear-gradient(135deg, #3d7a17 0%, #7dd934 50%, #b6ff5c 100%);
  --grad-blood: linear-gradient(135deg, #6e0d12 0%, #c81e2b 55%, #e23b2e 100%);
  --grad-soft: linear-gradient(135deg, rgba(125,217,52,.16), rgba(200,30,43,.14));
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 14px 46px -14px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 30px 70px -20px rgba(60, 160, 30, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  background:
    radial-gradient(1200px 800px at 10% -10%, #12280d, transparent 55%),
    radial-gradient(1000px 700px at 100% 0%, #2a0a0c, transparent 50%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0) 80%);
  background-attachment: fixed;
}
a { color: var(--primary); text-decoration: none; transition: .2s; }
a:hover { color: var(--primary-2); }

/* ---- Animated aurora backdrop ---- */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 600px at 20% 30%, rgba(125,217,52,.14), transparent 60%),
    radial-gradient(500px 500px at 80% 70%, rgba(200,30,43,.12), transparent 60%);
  animation: float 18s ease-in-out infinite alternate;
}
@keyframes float {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(0,-30px,0) scale(1.08); }
}

/* ---- Navbar ---- */
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; margin: 16px auto; max-width: 1180px;
  background: var(--surface); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); position: sticky; top: 16px; z-index: 20;
}
.brand { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -.5px; color: var(--text); display: inline-flex; align-items: center; gap: 6px; }
.brand span {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand .brand-mark {
  -webkit-text-fill-color: initial; background: none; color: var(--primary); font-size: 20px;
  animation: spinmark 8s linear infinite;
}
@keyframes spinmark { to { transform: rotate(360deg); } }
.brand:hover { color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nav-links a {
  color: var(--text-soft); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 10px;
}
.nav-links a:hover { background: var(--grad-soft); color: var(--primary); }
.nav-links .admin-link { color: var(--warn); }
.balance {
  background: var(--grad); color: #fff; padding: 7px 16px; border-radius: 20px;
  font-weight: 700; font-size: 14px; box-shadow: 0 6px 18px -6px rgba(99,102,241,.6);
}
.uname { color: var(--text); font-weight: 600; font-size: 14px; padding: 0 6px; }
.logout { color: var(--danger) !important; }
.logout:hover { background: rgba(239,68,68,.1) !important; }

/* ---- Layout ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 20px 28px 80px; }
h1, h2, h3, .brand { font-family: "Space Grotesk", "Inter", sans-serif; }
h1 {
  font-size: 30px; margin: 8px 0 24px; letter-spacing: -1px; font-weight: 700;
}
h1 .grad, .grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 { font-size: 19px; margin: 0 0 16px; font-weight: 700; letter-spacing: -.3px; }

/* ---- Cards ---- */
.card {
  background: var(--surface); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; margin-bottom: 24px; box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { box-shadow: var(--shadow-lg); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 860px) { .grid-2, .market-grid { grid-template-columns: 1fr; } }

/* ---- Stat tiles ---- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 26px; }
@media (max-width: 860px) { .stats-row { grid-template-columns: 1fr 1fr; } }
.stat {
  position: relative; overflow: hidden;
  background: var(--surface); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow);
}
.stat::after {
  content: ""; position: absolute; top: 0; right: 0; width: 70px; height: 70px;
  background: var(--grad); opacity: .12; border-radius: 50%; transform: translate(30%,-30%);
}
.stat-label { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .8px; font-weight: 600; }
.stat-value { display: block; font-size: 26px; font-weight: 800; margin-top: 8px; letter-spacing: -.5px; }

/* ---- Forms ---- */
label { display: block; margin-bottom: 16px; font-size: 13px; color: var(--text-soft); font-weight: 600; }
input, select, textarea {
  display: block; width: 100%; margin-top: 8px; padding: 12px 14px;
  background: var(--surface-solid); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-size: 14px;
  font-family: inherit; transition: .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99,102,241,.12);
}
textarea { resize: vertical; min-height: 90px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block; padding: 12px 22px; border: none; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; cursor: pointer; color: var(--text);
  background: var(--surface-solid); border: 1.5px solid var(--border); transition: .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--grad); color: #fff; border: none; box-shadow: 0 10px 24px -8px rgba(99,102,241,.6); }
.btn.primary:hover { box-shadow: 0 14px 30px -8px rgba(99,102,241,.7); color: #fff; }
.btn.danger { background: var(--danger); color: #fff; border: none; }
.btn.danger:hover { background: #dc2626; color: #fff; }
.btn.ghost { background: transparent; }
.btn.sm { padding: 7px 14px; font-size: 12px; }
.btn.lg { padding: 15px 32px; font-size: 16px; border-radius: 14px; }
.btn.block { width: 100%; text-align: center; }
.btn.ghost.lg { border: 1.5px solid var(--border-strong); }

/* ---- Alerts ---- */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; font-weight: 500; border: 1px solid transparent; }
.alert.error { background: rgba(248,113,113,.12); border-color: rgba(248,113,113,.4); color: #fca5a5; }
.alert.success { background: rgba(52,211,153,.12); border-color: rgba(52,211,153,.4); color: #6ee7b7; }
.muted { color: var(--muted); font-size: 13px; }

.cost-preview { margin: 10px 0 18px; font-size: 14px; color: var(--text-soft); }
.cost-preview strong { color: var(--success); font-size: 18px; }

/* ---- Auth ---- */
.auth-box {
  max-width: 420px; margin: 40px auto; padding: 40px;
  background: var(--surface); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.auth-box h1 { text-align: center; font-size: 24px; margin: 6px 0 8px; }
.auth-logo {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 26px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px;
}
.auth-logo .brand-mark { color: var(--primary); animation: spinmark 8s linear infinite; }
.auth-sub { text-align: center; color: var(--text-soft); font-size: 14px; margin: 0 0 24px; }

/* ---- Tasks ---- */
.task-list { display: flex; flex-direction: column; gap: 16px; }
.task { background: var(--surface-solid); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; transition: .2s; }
.task:hover { border-color: var(--border-strong); }
.task-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.task-kw { font-weight: 700; font-size: 15px; }
.task-link { display: block; font-size: 12px; color: var(--muted); word-break: break-all; margin-bottom: 12px; }
.progress { height: 10px; background: rgba(148,163,184,.2); border-radius: 6px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--grad); border-radius: 6px; transition: width .4s; }
.task-meta { font-size: 12px; color: var(--text-soft); margin-top: 8px; font-weight: 600; }

/* ---- Tables ---- */
.table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; }
.table th, .table td { padding: 12px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.table th { color: var(--muted); text-transform: uppercase; font-size: 11px; letter-spacing: .6px; font-weight: 700; }
.table tbody tr { transition: .15s; }
.table tbody tr:hover { background: var(--grad-soft); }
.table-wrap { overflow-x: auto; }
.txid { max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---- Badges ---- */
.badge { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; display: inline-block; }
.badge.pending { background: rgba(251,191,36,.16); color: #fcd34d; }
.badge.confirmed { background: rgba(52,211,153,.16); color: #6ee7b7; }
.badge.expired { background: rgba(148,163,184,.16); color: #94a3b8; }
.badge.type-unlimited { background: var(--grad); color: #fff; }
.badge.type-balance { background: rgba(99,102,241,.12); color: var(--primary); }

/* ---- Payment card ---- */
.pay-card .pay-amount, .pay-card .pay-addr {
  background: var(--surface-solid); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px; margin: 16px 0;
}
.pay-label { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; margin-bottom: 8px; letter-spacing: .6px; font-weight: 600; }
.pay-value { font-size: 28px; font-weight: 800; color: var(--success); letter-spacing: -.5px; }
.pay-value small { font-size: 15px; color: var(--muted); }
.pay-addr code { font-size: 14px; word-break: break-all; color: var(--text); background: var(--grad-soft); padding: 6px 10px; border-radius: 8px; }
.copy-btn { margin-left: 10px; padding: 6px 14px; font-size: 12px; background: var(--grad); color: #fff; border: none; border-radius: 8px; cursor: pointer; font-weight: 700; }
.pay-status { margin-top: 16px; padding: 14px; border-radius: var(--radius-sm); background: var(--grad-soft); text-align: center; font-size: 14px; font-weight: 600; }
.pay-status.ok { background: rgba(52,211,153,.14); color: #6ee7b7; }
.pay-status.err { background: rgba(248,113,113,.14); color: #fca5a5; }
.spinner { display: inline-block; width: 13px; height: 13px; border: 2px solid rgba(99,102,241,.3); border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Packages ---- */
.pkg { text-align: center; position: relative; overflow: hidden; }
.pkg::before { content: ""; position: absolute; top: -50px; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; background: var(--grad); opacity: .08; border-radius: 50%; }
.pkg-price { font-size: 46px; font-weight: 800; margin: 12px 0; letter-spacing: -1.5px; }
.pkg-price .grad-text { display: inline; }
.pkg-price small { font-size: 16px; color: var(--muted); font-weight: 500; }
.pkg-features { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
.pkg-features li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid var(--border); font-size: 14px; }
.pkg-features li::before { content: "✓"; position: absolute; left: 0; top: 8px; width: 20px; height: 20px; background: var(--grad); color: #fff; border-radius: 50%; text-align: center; line-height: 20px; font-size: 12px; font-weight: 700; }
.pkg-active { background: var(--grad); color: #fff; padding: 10px; border-radius: var(--radius-sm); margin-bottom: 14px; font-size: 13px; font-weight: 700; }

/* ---- Announcements ---- */
.announce { display: flex; flex-direction: column; gap: 14px; }
.announce-item { background: var(--surface-solid); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--radius-sm); padding: 16px 20px; }
.announce-item h3 { margin: 0 0 6px; font-size: 16px; }
.announce-item .date { font-size: 11px; color: var(--muted); }
.announce-item p { margin: 8px 0 0; color: var(--text-soft); font-size: 14px; white-space: pre-wrap; }

/* ---- Admin tabs ---- */
.tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.tab {
  padding: 10px 20px; border-radius: 12px; font-weight: 700; font-size: 14px;
  color: var(--text-soft); background: var(--surface); border: 1px solid var(--border); cursor: pointer;
}
.tab:hover { color: var(--primary); }
.tab.active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 8px 20px -8px rgba(99,102,241,.6); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadein .3s; }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---- Pagination ---- */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: 8px 14px; border-radius: 10px; font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); color: var(--text-soft);
}
.pagination a:hover { background: var(--grad-soft); }
.pagination .current { background: var(--grad); color: #fff; border-color: transparent; }

.inline-form { display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.inline-form label { margin-bottom: 0; }

/* ---- Hero (login/landing) ---- */
.hero { text-align: center; padding: 30px 0 10px; }
.hero h1 { font-size: 40px; }
.hero p { color: var(--text-soft); font-size: 16px; max-width: 560px; margin: 0 auto 20px; }

.footer { text-align: center; padding: 30px; color: var(--muted); font-size: 13px; }

/* ============================================================
   LANDING / RESMİ SİTE
   ============================================================ */
.hero-section {
  position: relative; max-width: 1180px; margin: 10px auto 0; padding: 80px 28px 70px;
  text-align: center; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; z-index: -1;
  background: radial-gradient(circle, rgba(139,92,246,.28), transparent 65%);
  filter: blur(30px);
}
.hero-content { position: relative; z-index: 1; }
.pill {
  display: inline-block; padding: 8px 18px; border-radius: 30px; font-size: 13px; font-weight: 600;
  background: var(--surface); border: 1px solid var(--border-strong); color: var(--primary);
  backdrop-filter: blur(10px); margin-bottom: 24px;
}
.hero-section h1 {
  font-size: 56px; line-height: 1.08; letter-spacing: -2px; margin: 0 0 22px; font-weight: 700;
}
.hero-sub { font-size: 19px; color: var(--text-soft); max-width: 620px; margin: 0 auto 34px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 860px; margin: 0 auto;
  padding: 32px; background: var(--surface); backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong); border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.hero-stats div { display: flex; flex-direction: column; position: relative; }
.hero-stats div:not(:last-child)::after {
  content: ""; position: absolute; right: -10px; top: 10%; height: 80%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-strong), transparent);
}
.hero-stats strong {
  font-family: "Space Grotesk", sans-serif; font-size: 40px; font-weight: 700; letter-spacing: -1.5px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stats span { color: var(--text-soft); font-size: 13px; margin-top: 6px; font-weight: 500; }
@media (max-width: 640px) { .hero-stats div:not(:last-child)::after { display: none; } }

.section { padding: 80px 0; }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section-inner.narrow { max-width: 800px; }
.section-head { text-align: center; margin-bottom: 50px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px;
}
.eyebrow.light { color: #bff08a; }
.section-head h2 { font-size: 38px; letter-spacing: -1px; margin: 0; }

.section.dark {
  background: linear-gradient(160deg, #0e1a0a, #14260c 55%, #241014);
  border: 1px solid var(--border);
  color: #e2f0dc; border-radius: 40px; margin: 0 20px; position: relative; overflow: hidden;
}
.section.dark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 20% 20%, rgba(125,217,52,.22), transparent 60%),
              radial-gradient(500px 400px at 90% 90%, rgba(200,30,43,.2), transparent 60%);
}
.section.dark .section-inner { position: relative; }
.section.dark h2, .section.dark h3 { color: #fff; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--surface); backdrop-filter: blur(14px); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px; transition: transform .25s, box-shadow .25s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-ico {
  width: 58px; height: 58px; display: flex; align-items: center; justify-content: center;
  font-size: 27px; border-radius: 16px; margin-bottom: 18px;
  background: var(--grad-soft); border: 1px solid var(--border-strong);
  box-shadow: inset 0 0 20px -8px rgba(124,139,255,.5);
}
.feature h3 { font-size: 19px; margin: 0 0 10px; }
.feature p { color: var(--text-soft); font-size: 15px; margin: 0; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 28px; backdrop-filter: blur(8px);
}
.step-no {
  font-family: "Space Grotesk", sans-serif; font-size: 34px; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.step h3 { font-size: 18px; margin: 14px 0 8px; }
.step p { color: #94a3b8; font-size: 14px; margin: 0; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  position: relative; background: var(--surface); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow);
}
.price-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-lg); transform: scale(1.04); }
.ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; padding: 6px 18px; border-radius: 20px; font-size: 12px; font-weight: 700;
}
.price-card h3 { font-size: 20px; margin: 0 0 10px; }
.price-card .price { font-size: 42px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px; }
.price-card .price small { font-size: 15px; color: var(--muted); font-weight: 500; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.price-card li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--border); font-size: 14px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 800; }

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 4px 20px;
}
.faq summary { cursor: pointer; padding: 16px 0; font-weight: 700; font-size: 16px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--primary); font-size: 22px; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0 0 16px; color: var(--text-soft); font-size: 15px; }

.cta-section { padding: 40px 20px 90px; }
.cta-box {
  max-width: 900px; margin: 0 auto; text-align: center; padding: 60px 40px;
  background: linear-gradient(135deg, #3d7a17, #7dd934 48%, #c81e2b); border-radius: 32px; color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-box h2 { color: #fff; font-size: 34px; margin: 0 0 12px; letter-spacing: -1px; }
.cta-box p { color: rgba(255,255,255,.9); font-size: 17px; margin: 0 0 28px; }
.cta-box .btn.primary { background: #fff; color: var(--primary); }
.cta-box .btn.primary:hover { background: #f1f5f9; color: var(--primary); }

/* ---- Site footer ---- */
.site-footer { background: #070c07; color: #8aa382; margin-top: 60px; }
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 56px 28px 30px;
  display: grid; grid-template-columns: 1.5fr 2fr; gap: 40px;
}
.footer-brand .brand { color: #fff; }
.footer-brand p { margin: 16px 0 0; font-size: 14px; max-width: 320px; line-height: 1.7; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h4 { color: #fff; font-size: 14px; margin: 0 0 14px; font-family: "Inter", sans-serif; }
.footer-cols a { display: block; color: #94a3b8; font-size: 14px; padding: 5px 0; }
.footer-cols a:hover { color: #c7d2fe; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px; text-align: center; font-size: 13px; }

@media (max-width: 960px) {
  .feature-grid, .price-grid, .steps { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 640px) {
  .navbar { flex-direction: column; gap: 12px; }
  .container { padding: 16px; }
  h1 { font-size: 24px; }
  .hero-section h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .feature-grid, .price-grid, .steps, .footer-inner, .footer-cols { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 28px; }
  .section.dark { margin: 0 8px; border-radius: 24px; }
}

/* ============================================================
   ZOMBIE.CLICK — TEMA EKLERİ
   (loader, tıklama efektleri, kan/atmosfer, ADS rozeti, korku font)
   Not: Yalnızca eklemedir; üstteki hiçbir kural silinmedi.
   ============================================================ */

/* --- Korku wordmark --- */
.brand, .auth-logo {
  font-family: "Creepster", "Space Grotesk", cursive;
  letter-spacing: 1.5px;
  text-shadow: 0 0 18px rgba(125, 217, 52, 0.35);
}
.brand .brand-mark, .auth-logo .brand-mark {
  color: var(--primary);
  filter: drop-shadow(0 0 6px rgba(125, 217, 52, 0.6));
}
.hero-section h1 .grad-text {
  font-family: "Creepster", "Space Grotesk", cursive;
  letter-spacing: 2px;
  filter: drop-shadow(0 2px 10px rgba(200, 30, 43, 0.35));
}

/* --- Google Ads mod rozeti --- */
.badge.type-ads {
  background: var(--grad-blood); color: #fff;
  box-shadow: 0 0 12px -2px rgba(200, 30, 43, 0.65);
  letter-spacing: 0.5px;
}

/* --- Toksik buton parıltısı --- */
.btn.primary { box-shadow: 0 10px 24px -8px rgba(125, 217, 52, 0.5), inset 0 0 0 1px rgba(125, 217, 52, 0.12); }
.btn.primary:hover { box-shadow: 0 14px 34px -8px rgba(125, 217, 52, 0.72); color: #06210a; }

/* --- Enfeksiyon loader'ı (sayfa yükleme) --- */
#zombie-loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background: radial-gradient(circle at 50% 38%, #0c1a0a, #05080a 72%);
  color: var(--primary);
  /* JS çalışmasa/başarısız olsa bile ekranda takılı kalmasın: */
  animation: zl-autohide 0s linear 6s forwards;
}
#zombie-loader.z-hide { opacity: 0; visibility: hidden; transition: opacity 0.6s ease, visibility 0s 0.6s; }
@keyframes zl-autohide { to { opacity: 0; visibility: hidden; } }
.zl-emoji { font-size: 76px; line-height: 1; animation: zl-pulse 1.1s ease-in-out infinite; filter: drop-shadow(0 0 22px rgba(125, 217, 52, 0.6)); }
@keyframes zl-pulse { 0%, 100% { transform: scale(1) rotate(-4deg); } 50% { transform: scale(1.16) rotate(4deg); } }
.zl-text { font-family: "Creepster", "Space Grotesk", cursive; font-size: 26px; letter-spacing: 3px; text-shadow: 0 0 16px rgba(125, 217, 52, 0.5); }
.zl-bar { width: 230px; height: 8px; border-radius: 6px; background: rgba(125, 217, 52, 0.14); overflow: hidden; border: 1px solid rgba(125, 217, 52, 0.25); }
.zl-bar > i { display: block; height: 100%; width: 5%; background: var(--grad); animation: zl-fill 1.8s ease-in-out infinite; }
@keyframes zl-fill { 0% { width: 5%; } 60% { width: 92%; } 100% { width: 100%; } }

/* --- Tıklama efekti parçacıkları (JS ile üretilir) --- */
.z-splat { position: fixed; z-index: 9000; pointer-events: none; border-radius: 50%; mix-blend-mode: screen; will-change: transform, opacity; }
@keyframes z-pop { 0% { transform: translate(-50%, -50%) scale(0.2); opacity: 0.95; } 100% { transform: translate(-50%, -50%) scale(1.9); opacity: 0; } }
@keyframes z-fly { to { transform: translate(var(--dx), var(--dy)) scale(0.3); opacity: 0; } }

/* --- Navbar'dan akan kan damlası --- */
.navbar::after {
  content: ""; position: absolute; left: 18%; bottom: -12px; width: 3px; height: 0;
  background: linear-gradient(#c81e2b, rgba(200, 30, 43, 0)); border-radius: 0 0 3px 3px;
  animation: z-drip 7s ease-in 2.5s infinite;
}
@keyframes z-drip { 0% { height: 0; opacity: 0; transform: translateY(0); } 14% { height: 22px; opacity: 1; } 42%, 100% { height: 22px; opacity: 0; transform: translateY(16px); } }

/* --- Ortam sporları --- */
.z-spore { position: fixed; bottom: -14px; width: 6px; height: 6px; border-radius: 50%; background: rgba(125, 217, 52, 0.5); box-shadow: 0 0 8px rgba(125, 217, 52, 0.6); z-index: -1; animation: z-spore-rise linear infinite; }
@keyframes z-spore-rise { to { transform: translateY(-110vh) translateX(28px); opacity: 0; } }

/* --- Hafif ekran titremesi --- */
body.z-flick { animation: z-flicker 0.18s steps(2) 2; }
@keyframes z-flicker { 50% { filter: brightness(1.35) hue-rotate(-8deg); } }

@media (prefers-reduced-motion: reduce) {
  #zombie-loader { animation: zl-autohide 0s linear 0.1s forwards; }
  .zl-emoji, .zl-bar > i, .navbar::after, .z-spore, .brand-mark, body::before { animation: none !important; }
}
