/* Clawyel Games — cinematic studio site
   Palette mirrors Frostrise: deep navy → cyan highlight → magenta combo
   Pure CSS, no framework. */

:root {
  --bg-top: #02060f;
  --bg-mid: #0a1840;
  --bg-bot: #1a2e6a;
  --ink: #e8f6ff;
  --ink-dim: #7da3c8;
  --ink-soft: #b1c8df;
  --accent: #4ad6ff;
  --accent-soft: #2a9fd6;
  --combo: #ff5fb6;
  --gold: #ffd700;
  --line: rgba(120, 200, 255, 0.18);
  --card-bg: rgba(10, 22, 50, 0.55);
  --card-edge: rgba(120, 200, 255, 0.28);
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  --radius: 14px;
  --pad: clamp(20px, 5vw, 64px);
  --type-display: 'Tahoma', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --type-body: 'Segoe UI', 'Tahoma', system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--type-body);
  color: var(--ink);
  background: #02060f;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

/* ── background layers ─────────────────────────────────────────────────── */
#bg-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: -3; pointer-events: none;
  background: radial-gradient(ellipse at 70% 30%, #1a2e6a 0%, #0a1840 35%, #02060f 100%);
}
.vignette {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.9 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
}

/* ── nav ───────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  background: linear-gradient(to bottom, rgba(2, 6, 15, 0.7), rgba(2, 6, 15, 0));
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled {
  background: rgba(2, 6, 15, 0.78);
  border-bottom-color: var(--line);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--type-display);
  font-weight: 900; font-size: 14px; letter-spacing: 0.18em;
}
.brand-mark { width: 22px; height: 22px; color: var(--accent); filter: drop-shadow(0 0 6px var(--accent)); }
.brand-name em { font-style: normal; color: var(--accent); }
.nav-links { display: flex; gap: clamp(14px, 3vw, 36px); font-size: 12px; letter-spacing: 0.2em; font-weight: 700; color: var(--ink-dim); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
@media (max-width: 600px) { .nav-links { display: none; } }

/* ── hero ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  position: relative; padding: 120px var(--pad) 80px;
  text-align: center;
}
.hero-inner { max-width: 900px; }
.kicker {
  font-size: 11px; letter-spacing: 0.32em; font-weight: 800;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 22px;
  text-shadow: 0 0 14px rgba(74, 214, 255, 0.5);
}
.hero-title {
  font-family: var(--type-display);
  font-weight: 900;
  font-size: clamp(40px, 9vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.hero-accent {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(74, 214, 255, 0.45), 0 0 60px rgba(74, 214, 255, 0.25);
}
.hero-sub {
  font-size: clamp(15px, 2.2vw, 19px);
  color: var(--ink-soft);
  max-width: 640px; margin: 0 auto 40px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--ink-dim); font-size: 10px; letter-spacing: 0.3em;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--ink-dim), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-family: var(--type-display);
  font-weight: 900; font-size: 13px; letter-spacing: 0.18em;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  position: relative; overflow: hidden;
  transition: transform 0.18s, box-shadow 0.2s, background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn:hover { transform: translateY(-1px); }
.btn:hover svg { transform: translateX(2px); }
.btn:active { transform: translateY(0); }
.btn.small { padding: 12px 20px; font-size: 11px; }

.btn-primary {
  color: #02060f;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 0 rgba(74, 214, 255, 0.5), 0 14px 30px -10px rgba(74, 214, 255, 0.45);
}
.btn-primary:hover {
  background: #6fe2ff;
  border-color: #6fe2ff;
  box-shadow: 0 0 0 6px rgba(74, 214, 255, 0.18), 0 14px 30px -8px rgba(74, 214, 255, 0.5);
}
.btn-ghost {
  color: var(--ink);
  background: rgba(10, 22, 50, 0.5);
  border-color: var(--card-edge);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(74, 214, 255, 0.1);
}

/* ── sections ──────────────────────────────────────────────────────────── */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) var(--pad);
  position: relative;
}
.section-head {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-num {
  font-family: var(--type-display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.4em;
  color: var(--accent);
}
.section-title {
  font-family: var(--type-display);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900; line-height: 1;
  letter-spacing: -0.01em;
}
.section-tag { color: var(--ink-dim); font-size: 16px; max-width: 540px; }

/* ── games ─────────────────────────────────────────────────────────────── */
.game-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: stretch;
  background: var(--card-bg);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow);
  position: relative;
}
.game-card.featured {
  background: linear-gradient(135deg, rgba(20, 50, 110, 0.6), rgba(10, 22, 50, 0.7));
}
.game-card.featured::before {
  content: ''; position: absolute; inset: -1px; pointer-events: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(74, 214, 255, 0.5), rgba(255, 95, 182, 0.1) 60%, transparent);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1.5px;
}
@media (max-width: 760px) {
  .game-card { grid-template-columns: 1fr; }
}

.game-art {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #02060f;
  overflow: hidden;
}
.game-art svg { width: 100%; height: 100%; }
.game-art-overlay {
  position: absolute; top: 14px; left: 14px;
}
.game-badge {
  font-size: 10px; font-weight: 900; letter-spacing: 0.2em;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(74, 214, 255, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
  text-shadow: 0 0 10px rgba(74, 214, 255, 0.5);
}
.teaser-badge { background: rgba(255, 95, 182, 0.12); color: var(--combo); border-color: var(--combo); text-shadow: 0 0 10px rgba(255, 95, 182, 0.4); }

.game-body {
  padding: clamp(24px, 4vw, 44px);
  display: flex; flex-direction: column; justify-content: center;
}
.game-body .kicker { margin-bottom: 12px; }
.game-title {
  font-family: var(--type-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900; line-height: 0.95;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  text-shadow: 0 0 30px rgba(74, 214, 255, 0.25);
}
.game-tag {
  font-size: 14px; color: var(--ink-dim); font-style: italic;
  margin-bottom: 18px;
}
.game-desc { color: var(--ink-soft); margin-bottom: 22px; font-size: 15px; }
.game-feats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px;
  margin-bottom: 26px;
  font-size: 13px; color: var(--ink-soft);
}
.game-feats li {
  position: relative; padding-left: 18px;
}
.game-feats li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 8px var(--accent);
}
.game-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-ghost[data-store="play"] svg,
.btn-ghost[data-store="ios"] svg { color: var(--ink-soft); }

.game-card.teaser { background: linear-gradient(135deg, rgba(40, 14, 50, 0.4), rgba(10, 12, 25, 0.6)); }
.teaser-art { filter: saturate(0.9); }
.game-card.teaser .game-title { color: var(--ink-soft); }

.game-card.fridge-card {
  background: linear-gradient(135deg, rgba(80, 50, 20, 0.45), rgba(20, 14, 10, 0.65));
}
.game-card.fridge-card::before {
  content: ''; position: absolute; inset: -1px; pointer-events: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.45), rgba(255, 138, 101, 0.1) 60%, transparent);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1.5px;
}
.game-card.fridge-card .game-feats li::before {
  background: #ffd166;
  box-shadow: 0 0 8px #ffd166;
}

.game-card.airport-card {
  background: linear-gradient(135deg, rgba(64, 142, 200, 0.32), rgba(10, 25, 36, 0.65));
}
.game-card.airport-card::before {
  content: ''; position: absolute; inset: -1px; pointer-events: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(127, 200, 255, 0.55), rgba(255, 216, 59, 0.18) 60%, transparent);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1.5px;
}
.game-card.airport-card .game-feats li::before {
  background: #ffd83b;
  box-shadow: 0 0 8px #ffd83b;
}

/* ── studio ────────────────────────────────────────────────────────────── */
.studio-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(56px, 8vw, 96px);
}
@media (max-width: 760px) { .studio-grid { grid-template-columns: 1fr; } }

.big-quote {
  font-family: var(--type-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700; line-height: 1.3;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 20px; margin-bottom: 22px;
  text-shadow: 0 0 18px rgba(74, 214, 255, 0.25);
}
.studio-lead p { color: var(--ink-soft); margin-bottom: 16px; font-size: 15px; }

.studio-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.studio-stats li {
  background: var(--card-bg);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  position: relative; overflow: hidden;
}
.studio-stats li::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.6;
}
.stat-num {
  display: block;
  font-family: var(--type-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900; line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(74, 214, 255, 0.45);
  margin-bottom: 6px;
}
.stat-lbl {
  display: block;
  font-size: 11px; letter-spacing: 0.2em; font-weight: 700;
  color: var(--ink-dim); text-transform: uppercase;
}

.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--card-bg);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(74, 214, 255, 0.08), var(--card-bg));
}
.pillar-glyph {
  width: 38px; height: 38px;
  color: var(--accent);
  margin-bottom: 14px;
  filter: drop-shadow(0 0 6px rgba(74, 214, 255, 0.5));
}
.pillar h4 {
  font-family: var(--type-display);
  font-size: 17px; font-weight: 900;
  margin-bottom: 6px;
}
.pillar p { font-size: 13px; color: var(--ink-dim); line-height: 1.5; }

/* ── contact ───────────────────────────────────────────────────────────── */
.contact-body { text-align: center; }
.contact-mail {
  display: inline-block;
  font-family: var(--type-display);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.01em;
  padding: 16px 28px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, text-shadow 0.2s;
  text-shadow: 0 0 24px rgba(74, 214, 255, 0.3);
  margin-bottom: 28px;
}
.contact-mail:hover {
  border-bottom-color: var(--accent);
  text-shadow: 0 0 32px rgba(74, 214, 255, 0.6);
}
.socials {
  display: flex; gap: 24px; justify-content: center;
  font-size: 12px; letter-spacing: 0.25em; font-weight: 800;
}
.socials a {
  color: var(--ink-dim);
  padding: 10px 18px;
  border: 1px solid var(--card-edge);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(74, 214, 255, 0.08);
}

/* ── footer ────────────────────────────────────────────────────────────── */
.footer {
  text-align: center; padding: 40px var(--pad) 60px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  color: var(--ink-dim); font-size: 12px;
}
.footer-fine { margin-top: 6px; opacity: 0.7; font-style: italic; }

/* ── reveal-on-scroll ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}
.fade-in {
  opacity: 0;
  animation: fade-in-up 1s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.3s; }
.fade-in:nth-child(3) { animation-delay: 0.55s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }
@keyframes fade-in-up {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(22px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .fade-in { opacity: 1; animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== Detay sayfası ===== */
/* Oyun-spesifik landing sayfaları için kullanılır (/oyun/<slug>/).
   Tüm temel yapı style.css'in kendisinden devralınır; aşağıdaki kurallar
   sadece detay-sayfasına özgü hero düzeni, mod-grid ve mobil sticky CTA
   içindir. */

.detail-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(110px, 14vw, 160px) var(--pad) clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .detail-hero { grid-template-columns: 1fr; padding-top: clamp(96px, 22vw, 130px); }
}
.detail-hero-body { max-width: 560px; }
.detail-hero-title {
  font-family: var(--type-display);
  font-weight: 900;
  font-size: clamp(40px, 7.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 14px 0 14px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.detail-hero-tag {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-style: italic;
}
.detail-hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.detail-hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.detail-hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-edge);
  box-shadow: var(--shadow);
  background: #02060f;
}
.detail-hero-art svg { width: 100%; height: 100%; display: block; }
.detail-hero-art .game-art-overlay { position: absolute; top: 14px; left: 14px; }

.detail-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--pad);
}
.detail-section h2 {
  font-family: var(--type-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.detail-section .section-tag {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.detail-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  font-size: 15px;
  color: var(--ink-soft);
}
@media (max-width: 600px) { .detail-feats { grid-template-columns: 1fr; } }
.detail-feats li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--line);
}
.detail-feats li::before {
  content: '';
  position: absolute; left: 0; top: 16px;
  width: 9px; height: 9px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 8px var(--accent);
}
.fridge-card-theme .detail-feats li::before { background: #ffd166; box-shadow: 0 0 8px #ffd166; }
.airport-card-theme .detail-feats li::before { background: #ffd83b; box-shadow: 0 0 8px #ffd83b; }

.howto-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
@media (max-width: 880px) { .howto-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .howto-steps { grid-template-columns: 1fr; } }
.howto-step {
  background: var(--card-bg);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  position: relative;
  counter-increment: step;
}
.howto-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--type-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-shadow: 0 0 14px rgba(74, 214, 255, 0.4);
}
.howto-step h4 {
  font-family: var(--type-display);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 6px;
}
.howto-step p { font-size: 13px; color: var(--ink-dim); line-height: 1.55; }

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .mode-grid { grid-template-columns: 1fr; } }
.mode-card {
  background: var(--card-bg);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.mode-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(74, 214, 255, 0.08), var(--card-bg));
}
.mode-card .kicker {
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.28em;
}
.mode-card h3 {
  font-family: var(--type-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.mode-card p { font-size: 14px; color: var(--ink-soft); }

/* Sticky bottom mini-CTA (mobil dönüşüm için) */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  gap: 8px;
  justify-content: center;
  padding: 10px;
  border-radius: 999px;
  background: rgba(2, 6, 15, 0.82);
  border: 1px solid var(--card-edge);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.6);
}
.sticky-cta .btn { padding: 12px 18px; font-size: 11px; }
.sticky-cta .btn.small { padding: 10px 16px; font-size: 10px; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  /* alta sticky barın altında boşluk bırak ki footer kapanmasın */
  .footer { padding-bottom: 110px; }
}
