@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=DM+Mono:wght@400;500&display=swap');

/* ── Değişkenler ──────────────────────────────────────────── */
:root {
  --accent:      #4ade80;
  --accent-dim:  #22c55e;
  --accent-dark: #0d3320;
  --accent-bg:   #0a291e;
  --accent-glow: rgba(74,222,128,.18);

  /* Dark mode (default) — plugin ile birebir */
  --bg:          #111111;
  --bg-panel:    #1c1c1c;
  --bg-card:     #252525;
  --bg-card2:    #1e1e1e;
  --border:      #2a2a2a;
  --border2:     #333333;
  --text:        #e8e8e8;
  --text-muted:  #888888;
  --text-dim:    #555555;
  --header-bg:   #0a291e;
  --shadow:      rgba(0,0,0,.5);
}



/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background .3s, color .3s;
  overflow-x: hidden;
}

/* ── Tipografi ────────────────────────────────────────────── */
h1,h2,h3,h4 { font-weight: 800; line-height: 1.15; letter-spacing: -.03em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p  { color: var(--text-muted); line-height: 1.75; }
a  { color: var(--accent); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
code { font-family: 'DM Mono', monospace; font-size: .85em; background: var(--bg-card); padding: 2px 6px; border-radius: 4px; color: var(--accent); }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Navbar ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,17,17,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 24px; max-width: 1100px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.1rem; color: var(--text); letter-spacing: -.02em;
}
.nav-logo-icon {
  width: 34px; height: 34px; background: var(--accent-bg);
  border: 1px solid rgba(74,222,128,.3); border-radius: 10px;
  display: grid; place-items: center;
}
.nav-logo-icon svg { width: 16px; height: 16px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-muted); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-ghost {
  padding: 8px 18px; border-radius: 10px; border: 1px solid var(--border2);
  background: transparent; color: var(--text); font-family: inherit;
  font-size: .88rem; font-weight: 600; cursor: pointer; transition: all .2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary {
  padding: 9px 20px; border-radius: 10px; border: none;
  background: var(--accent); color: #0a1f12;
  font-family: inherit; font-size: .88rem; font-weight: 700; cursor: pointer;
  transition: all .2s; box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }

/* Tema toggle */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border2);
  background: transparent; color: var(--text-muted); cursor: pointer;
  display: grid; place-items: center; transition: all .2s; font-size: 16px;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; padding-top: 64px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(74,222,128,.12) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .04;
  background-image: linear-gradient(var(--border2) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border2) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  padding: 80px 0; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-bg); border: 1px solid rgba(74,222,128,.3);
  border-radius: 20px; padding: 6px 16px;
  font-size: .8rem; font-weight: 700; color: var(--accent);
  letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 28px; white-space: nowrap;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.85)} }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { font-size: 1.15rem; max-width: 560px; margin: 0 auto 40px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-lg {
  padding: 14px 32px; border-radius: 14px; font-family: inherit;
  font-size: 1rem; font-weight: 700; cursor: pointer; transition: all .2s;
}
.btn-lg.primary {
  background: var(--accent); color: #0a1f12; border: none;
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-lg.primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px var(--accent-glow); }
.btn-lg.ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
}
.btn-lg.ghost:hover { border-color: var(--accent); color: var(--accent); }
.hero-sub {
  margin-top: 20px; font-size: .85rem; color: var(--text-dim);
}

/* Plugin preview mockup */
.hero-mockup {
  position: relative; z-index: 1; margin-top: 64px;
  display: flex; justify-content: center;
}
.mockup-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 6px; box-shadow: 0 32px 80px rgba(0,0,0,.4);
  max-width: 360px; width: 100%;
}
.mockup-bar {
  background: var(--bg-panel); border-radius: 14px 14px 0 0;
  padding: 10px 16px; display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 8px; height: 8px; border-radius: 50%; }
.mockup-inner {
  background: var(--header-bg); border-radius: 0 0 14px 14px;
  padding: 16px; font-size: 12px; color: rgba(74,222,128,.7);
  font-family: 'DM Mono', monospace;
}
.mockup-line { margin-bottom: 6px; }
.mockup-line.accent { color: var(--accent); font-weight: 500; }

/* ── Özellikler ───────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 56px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; transition: all .2s;
}
.feature-card:hover {
  border-color: rgba(74,222,128,.3);
  box-shadow: 0 8px 32px var(--accent-glow);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px; height: 48px; background: var(--accent-bg);
  border: 1px solid rgba(74,222,128,.2); border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px; font-size: 22px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { font-size: .92rem; }

/* ── Bölüm başlığı ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 16px; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 520px; margin: 0 auto; }

/* ── Fiyatlandırma ────────────────────────────────────────── */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 36px 0;
}
.pricing-toggle span { font-size: .9rem; font-weight: 600; color: var(--text-muted); }
.pricing-toggle span.active { color: var(--text); }
.toggle-sw {
  position: relative; width: 52px; height: 28px;
  background: var(--accent-bg); border: 1px solid rgba(74,222,128,.3);
  border-radius: 14px; cursor: pointer; transition: all .3s;
}
.toggle-sw.on { background: var(--accent-bg); }
.toggle-sw::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; background: var(--accent); border-radius: 50%;
  transition: transform .3s; box-shadow: 0 2px 8px rgba(74,222,128,.4);
}
.toggle-sw.yearly::after { transform: translateX(24px); }
.save-badge {
  background: var(--accent-bg); border: 1px solid rgba(74,222,128,.3);
  color: var(--accent); font-size: .72rem; font-weight: 700;
  padding: 3px 8px; border-radius: 20px; letter-spacing: .05em;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
}
@media(max-width:768px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 24px; padding: 32px; transition: all .2s;
}
.pricing-card.popular {
  border-color: var(--accent); background: var(--accent-bg);
  box-shadow: 0 16px 48px var(--accent-glow);
  transform: scale(1.03);
}
.pricing-card .popular-badge {
  display: inline-block; background: var(--accent); color: #0a1f12;
  font-size: .72rem; font-weight: 800; padding: 4px 12px;
  border-radius: 20px; margin-bottom: 16px; letter-spacing: .05em; text-transform: uppercase;
}
.plan-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.plan-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.plan-desc { font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }
.plan-price { margin-bottom: 8px; }
.plan-price .amount { font-size: 2.8rem; font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.plan-price .period { font-size: .9rem; color: var(--text-muted); font-weight: 500; }
.plan-price .original { font-size: 1rem; color: var(--text-dim); text-decoration: line-through; margin-left: 6px; }
.plan-billing { font-size: .78rem; color: var(--text-dim); margin-bottom: 28px; }
.plan-btn {
  width: 100%; padding: 13px; border-radius: 12px; font-family: inherit;
  font-size: .95rem; font-weight: 700; cursor: pointer; transition: all .2s; margin-bottom: 28px;
}
.plan-btn.outline {
  background: transparent; border: 1px solid var(--border2); color: var(--text);
}
.plan-btn.outline:hover { border-color: var(--accent); color: var(--accent); }
.plan-btn.filled {
  background: var(--accent); border: none; color: #0a1f12;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.plan-btn.filled:hover { transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--text-muted);
}
.pricing-card.popular .plan-features li { color: rgba(74,222,128,.9); }
.plan-features li::before {
  content: ''; width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%234ade80' stroke-width='1.2'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%234ade80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}
.pricing-note { text-align: center; margin-top: 28px; font-size: .82rem; color: var(--text-dim); }

/* ── Yorumlar ─────────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
}
.testimonial-stars { color: var(--accent); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: .92rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--accent-bg);
  border: 2px solid rgba(74,222,128,.3); display: grid; place-items: center;
  font-size: 16px;
}
.testimonial-name { font-size: .88rem; font-weight: 700; }
.testimonial-role { font-size: .78rem; color: var(--text-dim); }

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--header-bg); border-top: 1px solid rgba(74,222,128,.15);
  border-bottom: 1px solid rgba(74,222,128,.15);
  padding: 80px 0; text-align: center; position: relative;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(74,222,128,.08) 0%, transparent 70%);
}
.cta-band h2 { position: relative; z-index: 1; margin-bottom: 14px; color: #ffffff; }
.cta-band p  { position: relative; z-index: 1; margin-bottom: 32px; color: rgba(255,255,255,.7); }
.cta-band .hero-cta { position: relative; z-index: 1; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border); padding: 48px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: .85rem; color: var(--text-dim); }
.footer-links a:hover { color: var(--accent); opacity: 1; }
.footer-copy { font-size: .82rem; color: var(--text-dim); }

/* ── Prose sayfalar (terms, privacy, refund) ──────────────── */
.prose-page { padding: 120px 0 80px; max-width: 720px; margin: 0 auto; }
.prose-page h1 { font-size: 2.4rem; margin-bottom: 8px; color: var(--text); }
.prose-page .prose-meta { color: var(--text-dim); font-size: .85rem; margin-bottom: 48px; }
.prose-page h2 { font-size: 1.3rem; margin: 40px 0 12px; color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.prose-page p  { margin-bottom: 16px; }
.prose-page ul { margin: 12px 0 16px 20px; }
.prose-page ul li { color: var(--text-muted); margin-bottom: 8px; font-size: .95rem; }

/* ── Plugin Auth sayfası ──────────────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 80px 24px;
}
.auth-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 28px; padding: 48px 40px; max-width: 420px; width: 100%;
  text-align: center; box-shadow: 0 24px 64px var(--shadow);
}
.auth-icon {
  width: 64px; height: 64px; background: var(--accent-bg);
  border: 1px solid rgba(74,222,128,.3); border-radius: 20px;
  display: grid; place-items: center; margin: 0 auto 24px;
}
.auth-icon svg { width: 30px; height: 30px; }
.auth-card h2 { margin-bottom: 10px; }
.auth-card p  { margin-bottom: 32px; font-size: .95rem; }
.auth-status {
  background: var(--accent-bg); border: 1px solid rgba(74,222,128,.2);
  border-radius: 14px; padding: 16px; margin-bottom: 20px;
  font-size: .88rem; color: var(--accent); font-weight: 600;
}
.auth-spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2px solid rgba(74,222,128,.2); border-top-color: var(--accent);
  border-radius: 50%; animation: spin .8s linear infinite; vertical-align: middle; margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Scroll animasyonları ─────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────────────── */
@media(max-width:768px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .pricing-card.popular { transform: scale(1); }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ── Dil Seçici ───────────────────────────────────────────── */
.lang-sel {
  background: transparent; border: 1px solid var(--border2);
  border-radius: 8px; color: var(--text-muted); font-family: inherit;
  font-size: .8rem; font-weight: 700; padding: 5px 10px;
  cursor: pointer; outline: none; transition: border-color .2s;
}
.lang-sel:hover, .lang-sel:focus { border-color: var(--accent); color: var(--accent); }
.lang-sel option { background: var(--bg-panel); color: var(--text); }

/* ── Auth Sayfaları (login/register) ──────────────────────── */
.auth-wrap {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 100px 24px 48px;
}
.auth-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 28px; padding: 44px 40px;
  width: 100%; max-width: 420px;
  box-shadow: 0 24px 64px var(--shadow);
}
.auth-box .auth-logo {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-bottom: 32px; font-weight: 800; font-size: 1.1rem; color: var(--text);
}
.auth-box h2 { text-align: center; margin-bottom: 28px; font-size: 1.6rem; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 7px;
}
.form-group input {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--border2); background: var(--bg-panel);
  color: var(--text); font-family: inherit; font-size: .95rem;
  outline: none; transition: border-color .2s;
}
.form-group input:focus { border-color: var(--accent); }
.form-group input::placeholder { color: var(--text-dim); }
.auth-submit {
  width: 100%; padding: 14px; border-radius: 14px; border: none;
  background: var(--accent); color: #0a1f12; font-family: inherit;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all .2s; margin-top: 8px;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.auth-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }
.auth-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.auth-divider {
  text-align: center; margin: 20px 0; color: var(--text-dim);
  font-size: .85rem; position: relative;
}
.auth-divider::before, .auth-divider::after {
  content: ''; position: absolute; top: 50%; width: 38%; height: 1px;
  background: var(--border);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.auth-footer { text-align: center; margin-top: 24px; font-size: .88rem; color: var(--text-muted); }
.auth-footer a { color: var(--accent); font-weight: 600; }
.auth-error {
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3);
  border-radius: 10px; padding: 10px 14px; color: #f87171;
  font-size: .88rem; margin-bottom: 16px; display: none;
}
.auth-success {
  background: var(--accent-bg); border: 1px solid rgba(74,222,128,.3);
  border-radius: 10px; padding: 10px 14px; color: var(--accent);
  font-size: .88rem; margin-bottom: 16px; display: none;
}
.terms-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.terms-check input { margin-top: 2px; accent-color: var(--accent); }
.terms-check label { font-size: .85rem; color: var(--text-muted); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ── SSS ──────────────────────────────────────────────────── */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: rgba(74,222,128,.3); }
.faq-q {
  width: 100%; padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; background: transparent;
  border: none; color: var(--text); font-family: inherit; font-size: .98rem;
  font-weight: 700; cursor: pointer; text-align: left;
}
.faq-q .faq-icon {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background: var(--accent-bg); border: 1px solid rgba(74,222,128,.2);
  display: grid; place-items: center; color: var(--accent);
  font-size: 14px; transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 24px 20px; color: var(--text-muted); font-size: .93rem; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   LIGHT MODE — getsubs tarzı krem/beyaz + güçlü gölgeler
   ═══════════════════════════════════════════════════════════ */

[data-theme="light"] {
  /* Arka planlar — saf beyaz değil, getsubs gibi kırık beyaz */
  --bg:          #f8f7f4;
  --bg-panel:    #ffffff;
  --bg-card:     #ffffff;
  --bg-card2:    #f0eeea;
  --border:      #e4e2dc;
  --border2:     #d0cec8;

  /* Yazılar — yüksek kontrast */
  --text:        #0f0f0f;
  --text-muted:  #3d3d3d;
  --text-dim:    #808080;

  /* Accent — biraz daha koyu yeşil, açık bg'da okunur */
  --accent:      #16a34a;
  --accent-dim:  #15803d;
  --accent-bg:   #f0fdf4;
  --accent-glow: rgba(22,163,74,.15);
  --accent-dark: #052e16;

  --header-bg:   #052e16;
  --shadow:      rgba(0,0,0,.08);
}

/* Nav */
[data-theme="light"] .nav {
  background: rgba(248,247,244,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 #e4e2dc, 0 2px 20px rgba(0,0,0,.05);
}

/* Butonlar */
[data-theme="light"] .btn-ghost {
  border-color: #d0cec8;
  color: #0f0f0f;
  background: #ffffff;
}
[data-theme="light"] .btn-ghost:hover {
  border-color: #16a34a;
  color: #052e16;
  background: #f0fdf4;
}
[data-theme="light"] .btn-primary {
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(22,163,74,.3);
}
[data-theme="light"] .btn-primary:hover {
  background: #15803d;
  box-shadow: 0 8px 24px rgba(22,163,74,.35);
}
[data-theme="light"] .btn-lg.primary {
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(22,163,74,.3);
}
[data-theme="light"] .btn-lg.ghost {
  border-color: #d0cec8;
  color: #0f0f0f;
  background: #ffffff;
}
[data-theme="light"] .btn-lg.ghost:hover {
  border-color: #16a34a;
  color: #052e16;
}

/* Theme toggle */
[data-theme="light"] .theme-toggle {
  border-color: #d0cec8;
  background: #ffffff;
  color: #3d3d3d;
}
[data-theme="light"] .theme-toggle:hover {
  border-color: #16a34a;
  background: #f0fdf4;
}

/* ── Hero ─────────────────────────────────────────────────── */
[data-theme="light"] .hero {
  background: linear-gradient(180deg, #f0fdf4 0%, #f8f7f4 60%);
}

[data-theme="light"] .hero-bg {
  background:
    radial-gradient(ellipse 90% 70% at 50% -5%, rgba(22,163,74,.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(22,163,74,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(22,163,74,.05) 0%, transparent 60%);
}
[data-theme="light"] .hero-grid {
  opacity: .025;
  background-image: linear-gradient(#d0cec8 1px, transparent 1px),
                    linear-gradient(90deg, #d0cec8 1px, transparent 1px);
}
[data-theme="light"] .hero-badge {
  background: rgba(240,253,244,.8);
  border-color: rgba(22,163,74,.25);
  color: #15803d;
  box-shadow: none;
  display: inline-flex;
  white-space: nowrap;
}
[data-theme="light"] .hero-badge-dot { background: #16a34a; }
[data-theme="light"] .hero h1 { color: #0f0f0f; }
[data-theme="light"] .hero p  { color: #3d3d3d; }
[data-theme="light"] .hero-sub { color: #808080; }

/* Mockup — dark kalıyor, arka planı ayırt etmek için güçlü shadow */
[data-theme="light"] .mockup-wrap {
  background: #1c1c1c;
  border-color: #333;
  box-shadow: 0 32px 80px rgba(0,0,0,.2), 0 8px 32px rgba(0,0,0,.12);
}

/* ── Section label ────────────────────────────────────────── */
[data-theme="light"] .section-label { color: #15803d; }
[data-theme="light"] .section-header h2 { color: #0f0f0f; }
[data-theme="light"] .section-header p  { color: #3d3d3d; }

/* ── Feature kartları — getsubs tarzı gölge ──────────────── */
[data-theme="light"] .feature-card {
  background: #ffffff;
  border-color: #e4e2dc;
  box-shadow: 0 2px 0 #e4e2dc, 0 4px 24px rgba(0,0,0,.06);
}
[data-theme="light"] .feature-card:hover {
  border-color: rgba(22,163,74,.4);
  box-shadow: 0 2px 0 rgba(22,163,74,.3), 0 8px 32px rgba(22,163,74,.1);
  transform: translateY(-2px);
}
[data-theme="light"] .feature-icon {
  background: #f0fdf4;
  border-color: rgba(22,163,74,.25);
}
[data-theme="light"] .feature-card h3 { color: #0f0f0f; }
[data-theme="light"] .feature-card p  { color: #3d3d3d; }

/* ── Testimonials ─────────────────────────────────────────── */
[data-theme="light"] #testimonials { background: #f0eeea !important; }
[data-theme="light"] .testimonial-card {
  background: #ffffff;
  border-color: #e4e2dc;
  box-shadow: 0 2px 0 #e4e2dc, 0 4px 20px rgba(0,0,0,.06);
}
[data-theme="light"] .testimonial-stars { color: #16a34a; }
[data-theme="light"] .testimonial-text  { color: #3d3d3d; }
[data-theme="light"] .testimonial-name  { color: #0f0f0f; font-weight: 700; }
[data-theme="light"] .testimonial-role  { color: #808080; }
[data-theme="light"] .testimonial-avatar {
  background: #f0fdf4;
  border-color: rgba(22,163,74,.3);
}

/* ── CTA Band — koyu yeşil, her iki modda aynı ───────────── */
[data-theme="light"] .cta-band {
  background: #052e16;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
[data-theme="light"] .cta-band h2 { color: #ffffff; }
[data-theme="light"] .cta-band p  { color: rgba(255,255,255,.7); }
[data-theme="light"] .cta-band .btn-lg.primary {
  background: #4ade80;
  color: #052e16;
  box-shadow: 0 8px 32px rgba(74,222,128,.35);
}
[data-theme="light"] .cta-band .btn-lg.ghost {
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
  background: transparent;
}

/* ── Pricing ──────────────────────────────────────────────── */
[data-theme="light"] .pricing-card {
  background: #ffffff;
  border-color: #e4e2dc;
  box-shadow: 0 2px 0 #e4e2dc, 0 4px 24px rgba(0,0,0,.06);
}
[data-theme="light"] .pricing-card.popular {
  background: #052e16;
  border-color: #15803d;
  box-shadow: 0 8px 0 #0a4923, 0 16px 48px rgba(5,46,22,.3);
}
[data-theme="light"] .pricing-card.popular .plan-name,
[data-theme="light"] .pricing-card.popular .plan-desc,
[data-theme="light"] .pricing-card.popular .plan-billing { color: rgba(255,255,255,.75); }
[data-theme="light"] .pricing-card.popular .amount { color: #4ade80; }
[data-theme="light"] .pricing-card.popular .period  { color: rgba(255,255,255,.6); }
[data-theme="light"] .pricing-card.popular .popular-badge { background: #4ade80; color: #052e16; }
[data-theme="light"] .pricing-card.popular .plan-features li { color: rgba(255,255,255,.85); }
[data-theme="light"] .pricing-card.popular .plan-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%234ade80' stroke-width='1.2'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%234ade80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
[data-theme="light"] .plan-name    { color: #0f0f0f; }
[data-theme="light"] .plan-desc    { color: #3d3d3d; }
[data-theme="light"] .amount       { color: #0f0f0f; }
[data-theme="light"] .plan-billing { color: #808080; }
[data-theme="light"] .original     { color: #b0ada8; }
[data-theme="light"] .plan-features li { color: #3d3d3d; }
[data-theme="light"] .pricing-note { color: #808080; }

[data-theme="light"] .pricing-toggle span       { color: #3d3d3d; }
[data-theme="light"] .pricing-toggle span.active { color: #0f0f0f; font-weight: 700; }
[data-theme="light"] .toggle-sw {
  background: #f0fdf4;
  border-color: rgba(22,163,74,.3);
}
[data-theme="light"] .toggle-sw::after { background: #16a34a; }
[data-theme="light"] .save-badge {
  background: #f0fdf4;
  border-color: rgba(22,163,74,.3);
  color: #15803d;
}
[data-theme="light"] .plan-btn.outline {
  border-color: #d0cec8;
  color: #0f0f0f;
  background: #f8f7f4;
}
[data-theme="light"] .plan-btn.outline:hover {
  border-color: #16a34a;
  color: #052e16;
  background: #f0fdf4;
}
[data-theme="light"] .plan-btn.filled {
  background: #4ade80;
  color: #052e16;
  box-shadow: 0 4px 16px rgba(74,222,128,.4);
}

/* Karşılaştırma tablosu */
[data-theme="light"] table {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 0 #e4e2dc, 0 4px 24px rgba(0,0,0,.06);
  background: #ffffff;
}
[data-theme="light"] table th,
[data-theme="light"] table th[style] {
  background: #f0eeea !important;
  color: #0f0f0f !important;
  border-bottom: 2px solid #d0cec8 !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
}
.tr-odd td { background: var(--bg-card2); }
[data-theme="light"] .tr-odd td { background: #f8f7f4; color: #3d3d3d; }
[data-theme="light"] table td { background: #ffffff; color: #3d3d3d; border-bottom: 1px solid #f0eeea; }

/* ── FAQ ──────────────────────────────────────────────────── */
[data-theme="light"] .faq-list { }
[data-theme="light"] .faq-item {
  background: #ffffff;
  border-color: #e4e2dc;
  box-shadow: 0 2px 0 #e4e2dc, 0 2px 12px rgba(0,0,0,.04);
}
[data-theme="light"] .faq-item:hover {
  border-color: rgba(22,163,74,.4);
  box-shadow: 0 2px 0 rgba(22,163,74,.2), 0 4px 20px rgba(22,163,74,.08);
}
[data-theme="light"] .faq-item.open {
  border-color: rgba(22,163,74,.5);
  box-shadow: 0 2px 0 rgba(22,163,74,.3), 0 8px 32px rgba(22,163,74,.1);
}
[data-theme="light"] .faq-q { color: #0f0f0f; font-weight: 700; }
[data-theme="light"] .faq-q .faq-icon {
  background: #f0fdf4;
  border-color: rgba(22,163,74,.3);
  color: #16a34a;
}
[data-theme="light"] .faq-a-inner { color: #3d3d3d; }

/* ── Auth (login / register) ─────────────────────────────── */
[data-theme="light"] .auth-wrap { background: #f8f7f4; }
[data-theme="light"] .auth-box {
  background: #ffffff;
  border-color: #e4e2dc;
  box-shadow: 0 2px 0 #e4e2dc, 0 12px 48px rgba(0,0,0,.1), 0 4px 16px rgba(0,0,0,.06);
}
[data-theme="light"] .auth-box h2    { color: #0f0f0f; }
[data-theme="light"] .auth-logo      { color: #0f0f0f; }
[data-theme="light"] .form-group label { color: #0f0f0f; font-weight: 700; }
[data-theme="light"] .form-group input {
  background: #f8f7f4;
  border-color: #d0cec8;
  color: #0f0f0f;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.04);
}
[data-theme="light"] .form-group input:focus {
  border-color: #16a34a;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(22,163,74,.1);
}
[data-theme="light"] .form-group input::placeholder { color: #b0ada8; }
[data-theme="light"] .auth-footer  { color: #3d3d3d; }
[data-theme="light"] .auth-divider { color: #b0ada8; }
[data-theme="light"] .auth-divider::before,
[data-theme="light"] .auth-divider::after { background: #e4e2dc; }
[data-theme="light"] .terms-check label { color: #3d3d3d; }
[data-theme="light"] .auth-error {
  background: #fef2f2;
  border-color: rgba(239,68,68,.3);
  color: #dc2626;
}
[data-theme="light"] .auth-success {
  background: #f0fdf4;
  border-color: rgba(22,163,74,.3);
  color: #15803d;
}
[data-theme="light"] .auth-submit {
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(22,163,74,.3);
}
[data-theme="light"] .auth-submit:hover {
  background: #15803d;
  box-shadow: 0 8px 24px rgba(22,163,74,.4);
}

/* ── Plugin Auth sayfası ──────────────────────────────────── */
[data-theme="light"] .auth-page { background: #f8f7f4; }
[data-theme="light"] .auth-card {
  background: #ffffff;
  border-color: #e4e2dc;
  box-shadow: 0 2px 0 #e4e2dc, 0 12px 48px rgba(0,0,0,.1);
}
[data-theme="light"] .auth-card h2 { color: #0f0f0f; }
[data-theme="light"] .auth-card p  { color: #3d3d3d; }
[data-theme="light"] .auth-status {
  background: #f0fdf4;
  border-color: rgba(22,163,74,.3);
  color: #15803d;
}
[data-theme="light"] .auth-icon {
  background: #f0fdf4;
  border-color: rgba(22,163,74,.3);
}

/* ── Prose sayfalar (terms, privacy) ─────────────────────── */
[data-theme="light"] .prose-page { color: #0f0f0f; }
[data-theme="light"] .prose-page h1 { color: #0f0f0f; }
[data-theme="light"] .prose-page h2 {
  color: #0f0f0f;
  border-bottom: 2px solid #e4e2dc;
  padding-bottom: 8px;
}
[data-theme="light"] .prose-page p   { color: #3d3d3d; }
[data-theme="light"] .prose-page li  { color: #3d3d3d; }
[data-theme="light"] .prose-page .prose-meta { color: #808080; }
[data-theme="light"] .prose-page a   { color: #16a34a; }

/* ── Footer ───────────────────────────────────────────────── */
[data-theme="light"] .footer {
  background: #ffffff;
  border-top: 1px solid #e4e2dc;
  box-shadow: 0 -4px 24px rgba(0,0,0,.04);
}
[data-theme="light"] .footer-copy    { color: #808080; }
[data-theme="light"] .footer-links a { color: #3d3d3d; }
[data-theme="light"] .footer-links a:hover { color: #16a34a; opacity: 1; }
[data-theme="light"] .nav-logo       { color: #0f0f0f; }

/* ── Dil seçici ───────────────────────────────────────────── */
[data-theme="light"] .lang-sel {
  background: #ffffff;
  border-color: #d0cec8;
  color: #3d3d3d;
}
[data-theme="light"] .lang-sel:hover,
[data-theme="light"] .lang-sel:focus {
  border-color: #16a34a;
  color: #052e16;
}

/* ── Fiyatlandırma page genel bg ─────────────────────────── */
[data-theme="light"] .section { background: transparent; }

/* ── Scrollbar ────────────────────────────────────────────── */
[data-theme="light"] ::-webkit-scrollbar-thumb { background: rgba(22,163,74,.4); }
[data-theme="light"] * { scrollbar-color: rgba(22,163,74,.4) transparent; }


/* Tablo td inline style override — light mode */
[data-theme="light"] table td[style*="color:var(--accent)"] { color: #16a34a !important; }
[data-theme="light"] table td[style*="color:var(--text-dim)"] { color: #808080 !important; }
[data-theme="light"] table td[style*="color:var(--text-muted)"] { color: #3d3d3d !important; }
[data-theme="light"] table td[style*="padding:14px 20px"] { color: #3d3d3d; }

/* ── Tablo sınıf bazlı renkler ───────────────────────────── */
.td-label  { color: var(--text-muted); }
.td-us     { color: var(--accent); }
.td-them   { color: var(--text-dim); }
.th-us     { color: var(--accent); }
.th-them   { color: var(--text-dim); }

[data-theme="light"] .td-label  { color: #3d3d3d !important; }
[data-theme="light"] .td-us     { color: #16a34a !important; font-weight: 700; }
[data-theme="light"] .td-them   { color: #808080 !important; }
[data-theme="light"] .th-us     { color: #16a34a !important; }
[data-theme="light"] .th-them   { color: #808080 !important; }

/* ── Hero slbl (section label) light mode ────────────────── */
[data-theme="light"] .slbl { color: #16a34a; }



/* Light modda şekiller belirgin */
[data-theme="light"] .deco-ring   { color: #16a34a; opacity: .35; }
[data-theme="light"] .deco-dots .dot { background: #16a34a; opacity: .45; }
[data-theme="light"] .deco-rect   { color: #16a34a; opacity: .25; }
[data-theme="light"] .deco-plus   { color: #16a34a; opacity: .45; }

/* ── Features section arka plan dekor ────────────────────── */
.section#features { position: relative; }
.section#features::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,.04) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.section#features::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,.03) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}



/* ── Hero gradient light mode güncelle ───────────────────── */
[data-theme="light"] .hero-bg { background: none; }

/* ── Şekiller her iki modda da görünür ───────────────────── */
.deco-wrap { display: block; }

/* ── Pricing section dekor — sadece light ────────────────── */
[data-theme="light"] .section .pricing-grid {
  position: relative;
}
[data-theme="light"] .section .pricing-grid::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.16) 0%, transparent 65%);
  top: -150px; left: -200px;
  pointer-events: none;
  z-index: 0;
}
[data-theme="light"] .section .pricing-grid::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.14) 0%, transparent 65%);
  bottom: -100px; right: -150px;
  pointer-events: none;
  z-index: 0;
}

/* ── Testimonials section dekor ───────────────────────────── */
[data-theme="light"] #testimonials {
  position: relative;
}


/* ── FAQ section dekor ────────────────────────────────────── */
[data-theme="light"] .faq-list {
  position: relative;
}


/* ── Auth sayfaları dekor ─────────────────────────────────── */
[data-theme="light"] .auth-wrap {
  position: relative;
  overflow: hidden;
}



/* ── Prose sayfalar dekor ─────────────────────────────────── */
[data-theme="light"] .prose-page {
  position: relative;
}
[data-theme="light"] .container:has(.prose-page)::before {
  content: '';
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.08) 0%, transparent 70%);
  top: 0; right: -150px;
  pointer-events: none;
  z-index: 0;
}

@keyframes spin-slow { to { transform: rotate(360deg); } }
/* ── Hero arka plan — sadece çok hafif merkez parıltısı ─── */
.hero-bg {
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(74,222,128,.06) 0%, transparent 60%);
}
[data-theme="light"] .hero-bg { background: none; }

/* ── Dark only şekiller ───────────────────────────────────── */
.deco-dark-only { display: block; }
[data-theme="light"] .deco-dark-only { display: none; }

.deco-ring { position: absolute; color: var(--accent); opacity: .07; }
.deco-ring-1 { width: 380px; height: 380px; top: -80px; right: 6%; animation: spin-slow 50s linear infinite; }
.deco-ring-2 { width: 220px; height: 220px; bottom: 10%; left: 4%; animation: spin-slow 35s linear infinite reverse; }
.deco-ring-3 { width: 140px; height: 140px; top: 30%; left: 20%; animation: spin-slow 25s linear infinite; }

.deco-dots { position: absolute; display: grid; gap: 11px; }
.deco-dots-1 { grid-template-columns: repeat(4,1fr); right: 3%; top: 25%; }
.deco-dots-2 { grid-template-columns: repeat(3,1fr); left: 2%; bottom: 20%; }
.deco-dots .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: .14; }

.deco-shape { position: absolute; color: var(--accent); opacity: .06; }
.deco-hex   { width: 140px; height: 140px; right: 18%; bottom: 15%; animation: spin-slow 60s linear infinite; }
.deco-tri   { width: 90px;  height: 90px;  left: 8%;   top: 20%;    animation: spin-slow 45s linear infinite reverse; }
.deco-rect-1 { width: 100px; height: 100px; right: 8%; top: 60%; transform: rotate(20deg); }

.deco-plus { position: absolute; color: var(--accent); opacity: .14; }
.deco-plus-1 { width: 30px; height: 30px; top: 18%; left: 12%; }
.deco-plus-2 { width: 22px; height: 22px; bottom: 25%; right: 20%; }
.deco-plus-3 { width: 18px; height: 18px; top: 55%; right: 5%; }

.deco-particle { position: absolute; border-radius: 50%; background: var(--accent); opacity: .08; }
.p1 { width: 8px;  height: 8px;  top: 15%; left: 30%; }
.p2 { width: 6px;  height: 6px;  top: 40%; right: 28%; }
.p3 { width: 10px; height: 10px; bottom: 30%; left: 40%; }
.p4 { width: 5px;  height: 5px;  top: 65%; left: 15%; }
.p5 { width: 7px;  height: 7px;  top: 25%; right: 12%; }

/* ── Dil değişim animasyonu ───────────────────────────────── */
@keyframes lang-dissolve {
  0%   { opacity: 1;  filter: blur(0px)   ; transform: translateY(0)   scale(1); }
  40%  { opacity: .6; filter: blur(2px)   ; transform: translateY(-4px) scale(.98); }
  100% { opacity: 0;  filter: blur(12px)  ; transform: translateY(-12px) scale(.94); }
}
@keyframes lang-appear {
  0%   { opacity: 0;  filter: blur(10px)  ; transform: translateY(10px) scale(.96); }
  60%  { opacity: .8; filter: blur(1px)   ; transform: translateY(2px)  scale(.99); }
  100% { opacity: 1;  filter: blur(0px)   ; transform: translateY(0)   scale(1); }
}
.lang-dissolving {
  animation: lang-dissolve 0.28s ease-in forwards;
  pointer-events: none;
}
.lang-appearing {
  animation: lang-appear 0.32s ease-out forwards;
}

/* Particle canvas overlay */
#langParticleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity .1s;
}
#langParticleCanvas.active { opacity: 1; }

/* ── Text shadow %35 opacity ─────────────────────────────── */
.hero h1 {
  text-shadow: 0 2px 20px rgba(0,0,0,.12), 0 1px 4px rgba(0,0,0,.08);
}
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] p,
[data-theme="light"] .plan-name,
[data-theme="light"] .plan-desc,
[data-theme="light"] .plan-features li,
[data-theme="light"] .testimonial-text,
[data-theme="light"] .testimonial-name,
[data-theme="light"] .feature-card h3,
[data-theme="light"] .feature-card p,
[data-theme="light"] .faq-q,
[data-theme="light"] .faq-a-inner,
[data-theme="light"] .nav-links a,
[data-theme="light"] .footer-links a {
  text-shadow: 0 2px 16px rgba(0,0,0,.35), 0 1px 4px rgba(0,0,0,.12);
}

/* ── Section arka planları arası geçiş yumuşat ───────────── */
.section, .section-sm, .cta-band {
  position: relative;
}
/* Features blob overflow fix — clip yerine mask */
.section#features::before,
.section#features::after {
  pointer-events: none;
  z-index: 0;
}

/* ── Tema geçiş overlay ───────────────────────────────────── */
#themeOverlay {
  position: fixed; inset: 0; z-index: 99999;
  pointer-events: none; opacity: 0;
  background: radial-gradient(circle at var(--ox,50%) var(--oy,50%),
    rgba(74,222,128,.35) 0%, transparent 70%);
  transition: opacity .35s ease;
}
#themeOverlay.flash { opacity: 1; }

/* ── BJK easter egg ───────────────────────────────────────── */
#bjkToast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1a1a2e; border: 2px solid #000;
  border-radius: 20px; padding: 14px 28px;
  display: flex; align-items: center; gap: 12px;
  font-family: inherit; font-weight: 800; font-size: 1.1rem;
  color: #ffffff; z-index: 99998;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .4s;
  opacity: 0; pointer-events: none;
}
#bjkToast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
#bjkToast .bjk-eagle { font-size: 1.8rem; }
