/* ══════════════════════════════════════════════════════════════
   Frontend "Mr Zanko" theme — shared chrome (navbar, sidebar,
   footer) plus the homepage hero/cards. Dark aurora by default,
   with a light variant driven by the site's existing [data-theme]
   toggle (see assets/js/site.js) — same mechanism every other
   toggle-aware element on the site already uses.
   ══════════════════════════════════════════════════════════════ */

:root, [data-theme="dark"] {
  --fz-night: #050b1f;
  --fz-night-2: #0a1530;
  --fz-teal: #34e8c0;
  --fz-blue: #38bdf8;
  --fz-violet: #8a6bff;
  --fz-magenta: #ff6bcb;
  --fz-frost: #f8fafc;
  --fz-ice-dim: #cbd5e1;
  --fz-amber: #fbbf24;
}

[data-theme="light"] {
  --fz-night: #e2e8f0;
  --fz-night-2: #f8fafc;
  --fz-frost: #0f172a;
  --fz-ice-dim: #334155;
}

body.fz-body {
  background: var(--fz-night);
  color: var(--fz-frost);
  transition: background .4s ease, color .4s ease;
}

.fz-aurora-bg {
  position: fixed; inset: -15%; z-index: -1;
  background:
    radial-gradient(40% 35% at 20% 20%, rgba(52,232,192,.18), transparent 70%),
    radial-gradient(45% 40% at 80% 15%, rgba(138,107,255,.18), transparent 70%),
    radial-gradient(50% 45% at 50% 90%, rgba(255,107,203,.1), transparent 70%),
    linear-gradient(160deg, var(--fz-night) 0%, var(--fz-night-2) 50%, var(--fz-night) 100%);
  filter: blur(20px);
  animation: fzDriftBg 22s ease-in-out infinite alternate;
}
@keyframes fzDriftBg { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(-2%,3%,0) scale(1.03); } }

.fz-container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }

@keyframes fzTextFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.fz-text-flow {
  background: linear-gradient(90deg, var(--fz-teal), var(--fz-frost), var(--fz-blue), var(--fz-teal));
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: fzTextFlow 6s linear infinite;
}

/* ── Navbar ───────────────────────────────────────────────── */
.fz-navbar {
  width: 100%; margin-top: 20px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  border-radius: 20px; padding: 12px 22px;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,.5);
  position: relative; z-index: 50;
}
.fz-nav-logo {
  font-size: 1.2rem; font-weight: 850; text-decoration: none; color: var(--fz-frost);
  display: flex; align-items: center; gap: 10px;
}
.fz-nav-logo svg { width: 24px; height: 24px; color: var(--fz-blue); flex-shrink: 0; }
.fz-navbar-actions { display: flex; gap: 10px; align-items: center; }
.fz-icon-btn {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15); color: var(--fz-frost);
  width: 42px; height: 42px; border-radius: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .25s;
}
.fz-icon-btn svg { width: 19px; height: 19px; }
.fz-icon-btn:hover { background: rgba(56,189,248,.2); border-color: var(--fz-blue); color: var(--fz-blue); }

/* ── Sidebar (slide-out menu) ────────────────────────────────── */
.fz-sidebar-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(5px);
  z-index: 90; display: none;
}
.fz-sidebar-overlay.active { display: block; }

.fz-sidebar {
  position: fixed; top: 50%; right: -330px; transform: translateY(-50%);
  width: 310px; max-height: 90vh;
  background: linear-gradient(160deg, rgba(10,21,48,.97), rgba(5,11,31,.99));
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 24px;
  z-index: 100; padding: 26px 22px;
  display: flex; flex-direction: column; gap: 22px;
  transition: right .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 30px 60px rgba(0,0,0,.7);
  overflow-y: auto;
}
.fz-sidebar.active { right: 20px; }

.fz-close-sidebar {
  position: absolute; top: 14px; left: 18px; background: transparent; border: none;
  color: var(--fz-ice-dim); cursor: pointer; padding: 5px; display: flex;
}
.fz-close-sidebar svg { width: 20px; height: 20px; }

.fz-sidebar-brand { font-size: 1.1rem; font-weight: 850; color: var(--fz-frost); margin-top: 12px; display: flex; align-items: center; gap: 10px; }
.fz-sidebar-brand svg { width: 20px; height: 20px; color: var(--fz-blue); }
.fz-sidebar-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(56,189,248,.3), transparent); margin: 14px 0 4px; }

.fz-sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fz-sidebar-links a {
  color: var(--fz-ice-dim); text-decoration: none; font-size: .92rem; font-weight: 500;
  padding: 12px 14px; border-radius: 14px; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05); transition: all .25s;
}
.fz-sidebar-links a svg { width: 16px; height: 16px; flex-shrink: 0; }
.fz-sidebar-links a:hover { color: var(--fz-frost); background: rgba(52,232,192,.1); border-color: var(--fz-teal); padding-right: 18px; }

.fz-sidebar-footer { display: flex; flex-direction: column; gap: 18px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; }
.fz-social-icons { display: flex; justify-content: center; gap: 12px; width: 100%; }
.fz-social-icons a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  color: var(--fz-ice-dim); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all .3s; flex-shrink: 0;
}
.fz-social-icons a svg { width: 16px; height: 16px; }
.fz-social-icons a i { font-size: 1rem; }
.fz-social-icons a:hover { transform: translateY(-4px); }
.fz-social-tiktok:hover    { background: #ff0050; border-color: #ff0050; color: #fff; }
.fz-social-snapchat:hover  { background: #fffc00; border-color: #fffc00; color: #000; }
.fz-social-facebook:hover  { background: #1877f2; border-color: #1877f2; color: #fff; }
.fz-social-instagram:hover { background: linear-gradient(45deg,#f09433,#e1306c,#bc1888); border-color: #e1306c; color: #fff; }

.fz-login-btn-row { width: 100%; display: flex; gap: 8px; }
.fz-login-btn {
  flex-grow: 1; background: linear-gradient(135deg, rgba(56,189,248,.2), rgba(138,107,255,.2));
  border: 1px solid rgba(56,189,248,.4); color: var(--fz-frost); padding: 11px; border-radius: 14px;
  font-weight: 700; text-decoration: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px; transition: all .25s;
}
.fz-login-btn svg { width: 16px; height: 16px; }
.fz-login-btn:hover { background: linear-gradient(135deg, var(--fz-blue), var(--fz-violet)); color: #fff; box-shadow: 0 12px 25px rgba(56,189,248,.3); }
.fz-login-btn.fz-user-chip { background: linear-gradient(135deg, rgba(52,232,192,.2), rgba(56,189,248,.2)); border-color: var(--fz-teal); }
.fz-logout-btn {
  background: rgba(244,63,94,.1); border: 1px solid rgba(244,63,94,.3); color: #fda4af;
  width: 44px; height: 44px; border-radius: 14px; cursor: pointer; text-decoration: none;
  display: flex; align-items: center; justify-content: center; transition: all .25s; flex-shrink: 0;
}
.fz-logout-btn svg { width: 16px; height: 16px; }
.fz-logout-btn:hover { background: #f43f5e; color: #fff; border-color: #f43f5e; }

/* ── Hero slider ─────────────────────────────────────────────── */
.fz-slider {
  width: 100%; height: 340px; position: relative; border-radius: 24px; overflow: hidden;
  margin: 30px 0 45px; box-shadow: 0 25px 50px -12px rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.15);
}
.fz-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out; z-index: 1; }
.fz-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,11,31,.15), rgba(5,11,31,.65)); }
.fz-slide.active { opacity: 1; z-index: 2; }
.fz-slider-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.fz-slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: all .4s cubic-bezier(.25,1,.5,1); border: none; padding: 0; }
.fz-slider-dot.active { background: var(--fz-blue); width: 26px; border-radius: 8px; box-shadow: 0 0 10px rgba(56,189,248,.8); }

/* ── Hero header ─────────────────────────────────────────────── */
.fz-header-area { text-align: center; margin-bottom: 35px; }
.fz-header-area h1 { font-size: 2.2rem; font-weight: 850; margin-bottom: 10px; }
.fz-header-area .fz-subtitle { font-size: 1rem; color: var(--fz-ice-dim); opacity: .85; margin-bottom: 22px; }
.fz-animated-line { width: 100%; height: 2px; background: linear-gradient(to right, transparent, var(--fz-teal), var(--fz-blue), transparent); }

/* ── Stats ────────────────────────────────────────────────────── */
.fz-stats-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; width: 100%; max-width: 560px; margin: 30px auto; }
.fz-stat-card {
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 16px; text-align: center;
  backdrop-filter: blur(10px); transition: transform .25s, border-color .25s;
}
.fz-stat-card:hover { transform: translateY(-3px); border-color: rgba(52,232,192,.25); }
.fz-stat-number { font-size: 1.35rem; font-weight: 850; background: linear-gradient(90deg, var(--fz-teal), var(--fz-blue)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 2px; }
.fz-stat-label { font-size: .8rem; color: var(--fz-ice-dim); opacity: .75; }

/* ── Premium long button ─────────────────────────────────────── */
.fz-premium-btn-wrap { width: 100%; max-width: 560px; margin: 0 auto 20px; }
@keyframes fzGoldMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.fz-premium-btn {
  width: 100%; background: linear-gradient(125deg, rgba(255,184,0,.1), rgba(255,107,203,.08), rgba(138,107,255,.1), rgba(255,184,0,.1));
  background-size: 300% 300%; animation: fzGoldMove 6s ease infinite;
  border: 1px solid rgba(255,184,0,.35); backdrop-filter: blur(20px);
  color: #ffe699; padding: 16px; border-radius: 20px; font-size: 1.05rem; font-weight: 850; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  box-shadow: 0 12px 30px -10px rgba(255,184,0,.25); transition: all .35s cubic-bezier(.25,1,.5,1);
}
.fz-premium-btn svg { width: 20px; height: 20px; color: #ffb800; }
.fz-premium-btn:hover { border-color: #ffb800; box-shadow: 0 18px 35px -5px rgba(255,184,0,.4); transform: translateY(-3px); color: #fff; }

.fz-premium-btn-active {
  background: linear-gradient(125deg, rgba(34,197,94,.12), rgba(52,232,192,.1), rgba(34,197,94,.12));
  border-color: rgba(34,197,94,.4); color: #86efac; cursor: default; animation: none;
}
.fz-premium-btn-active svg { color: #22c55e; }
.fz-premium-btn-active:hover { transform: none; box-shadow: 0 12px 30px -10px rgba(34,197,94,.25); border-color: rgba(34,197,94,.4); color: #86efac; }

/* ── Separator ────────────────────────────────────────────────── */
.fz-separator { width: 100%; max-width: 750px; margin: 40px auto 35px; display: flex; align-items: center; gap: 14px; opacity: .8; }
.fz-separator-line { flex-grow: 1; height: 1.5px; background: linear-gradient(to left, rgba(56,189,248,.4), rgba(138,107,255,.1), transparent); }
.fz-separator-line.right { background: linear-gradient(to right, rgba(56,189,248,.4), rgba(138,107,255,.1), transparent); }
.fz-separator-diamond { color: var(--fz-blue); display: flex; }
.fz-separator-diamond svg { width: 14px; height: 14px; filter: drop-shadow(0 0 6px rgba(56,189,248,.7)); }

/* ── Premium cards grid ──────────────────────────────────────── */
.fz-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; margin-bottom: 20px; }
.fz-glass-card {
  background: linear-gradient(135deg, rgba(56,189,248,.07), rgba(3,105,161,.28));
  border: 1.5px solid rgba(56,189,248,.28); backdrop-filter: blur(30px) saturate(160%);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.08), 0 20px 45px -10px rgba(0,0,0,.7);
  border-radius: 22px; padding: 26px; display: flex; flex-direction: column;
  text-decoration: none; color: inherit; position: relative; transition: all .35s cubic-bezier(.25,1,.5,1); cursor: pointer;
}
.fz-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.fz-card-icon-box {
  width: 46px; height: 46px; min-width: 46px; background: rgba(255,184,0,.08); border: 1px solid rgba(255,184,0,.25);
  border-radius: 13px; display: flex; align-items: center; justify-content: center; color: #ffb800; transition: all .3s;
}
.fz-card-icon-box svg { width: 20px; height: 20px; }
.fz-glass-card.unlocked .fz-card-icon-box { background: rgba(56,189,248,.06); border-color: rgba(56,189,248,.18); color: var(--fz-blue); }
.fz-card-title { font-size: 1.12rem; font-weight: 700; color: var(--fz-frost); }
.fz-card-desc { font-size: .9rem; color: var(--fz-ice-dim); opacity: .95; line-height: 1.6; flex-grow: 1; }
.fz-glass-card:hover { transform: translateY(-6px); box-shadow: inset 0 1px 2px rgba(255,255,255,.1), 0 25px 50px -10px rgba(0,0,0,.85); }
.fz-glass-card.unlocked:hover .fz-card-icon-box { background: linear-gradient(135deg, rgba(52,232,192,.2), rgba(56,189,248,.2)); color: var(--fz-teal); border-color: var(--fz-teal); }
.fz-glass-card.unlocked:hover .fz-card-title { color: var(--fz-blue); }
.fz-glass-card:not(.unlocked):hover .fz-card-icon-box { background: rgba(255,184,0,.15); color: #ffcc00; }
.fz-glass-card:not(.unlocked):hover .fz-card-title { color: #ffcc00; }
/* ── Subscription modal ──────────────────────────────────────── */
.fz-modal-overlay {
  position: fixed; inset: 0; background: rgba(3,7,18,.65); backdrop-filter: blur(20px); z-index: 200;
  display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none;
  transition: all .35s cubic-bezier(.4,0,.2,1); padding: 20px; overflow-y: auto;
}
.fz-modal-overlay.show { opacity: 1; pointer-events: auto; }
.fz-modal {
  background: linear-gradient(165deg, rgba(10,21,48,.9), rgba(5,11,31,.97));
  border: 1px solid rgba(56,189,248,.2); box-shadow: 0 30px 60px rgba(0,0,0,.5);
  border-radius: 26px; width: 100%; max-width: 420px; padding: 40px 28px 28px;
  position: relative; transform: scale(.9) translateY(20px); transition: all .35s cubic-bezier(.34,1.56,.64,1);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-height: calc(100vh - 40px); overflow-y: auto; margin: auto;
}
.fz-modal-overlay.show .fz-modal { transform: scale(1) translateY(0); }
.fz-close-modal {
  position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  color: #fff; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.fz-close-modal svg { width: 15px; height: 15px; }
.fz-close-modal:hover { background: rgba(255,107,203,.15); color: var(--fz-magenta); border-color: rgba(255,107,203,.3); }
.fz-modal-badge {
  width: 56px; height: 56px; border-radius: 18px; background: linear-gradient(135deg, var(--fz-blue), var(--fz-teal));
  display: flex; align-items: center; justify-content: center; color: var(--fz-night); margin-bottom: 18px; box-shadow: 0 10px 25px rgba(56,189,248,.3);
}
.fz-modal-badge svg { width: 26px; height: 26px; }

/* ── Locked-content alert ─────────────────────────────────────── */
.fz-alert-badge {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(138,107,255,.18); border: 1px solid rgba(138,107,255,.35);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--fz-violet);
}
.fz-alert-badge svg { width: 26px; height: 26px; }
.fz-alert-title { font-size: 1.15rem; font-weight: 850; color: var(--fz-frost); margin-bottom: 10px; }
.fz-alert-text { font-size: .95rem; color: var(--fz-ice-dim); opacity: .85; margin-bottom: 26px; }
.fz-alert-btn {
  width: 100%; background: rgba(138,107,255,.15); border: 1px solid rgba(138,107,255,.3); color: var(--fz-violet);
  padding: 14px; border-radius: 16px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all .25s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.fz-alert-btn:hover { background: var(--fz-violet); color: #fff; }
.fz-alert-btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.fz-alert-badge-danger { background: rgba(239,68,68,.18); border-color: rgba(239,68,68,.35); color: #f87171; }
.fz-alert-btn-danger { background: rgba(239,68,68,.15); border-color: rgba(239,68,68,.3); color: #f87171; }
.fz-alert-btn-danger:hover { background: #ef4444; color: #fff; }

.fz-alert-badge-warning { background: rgba(245,158,11,.18); border-color: rgba(245,158,11,.35); color: #fbbf24; }
.fz-alert-btn-warning { background: rgba(245,158,11,.15); border-color: rgba(245,158,11,.3); color: #fbbf24; }
.fz-alert-btn-warning:hover { background: #f59e0b; color: #1a1200; }
.fz-alert-btn-warning:disabled { opacity: .4; cursor: not-allowed; }
.fz-alert-btn-warning:disabled:hover { background: rgba(245,158,11,.15); color: #fbbf24; }

.fz-alert-badge-success { background: rgba(34,197,94,.18); border-color: rgba(34,197,94,.35); color: #4ade80; }
.fz-alert-btn-success { background: rgba(34,197,94,.15); border-color: rgba(34,197,94,.3); color: #4ade80; }
.fz-alert-btn-success:hover { background: #22c55e; color: #06210f; }

/* ── Terms/notice modal ─────────────────────────────────────────── */
.fz-terms-modal { max-width: 460px; }
.fz-terms-subtitle { font-size: .88rem; color: #fbbf24; opacity: .9; margin-bottom: 22px; text-align: center; }
.fz-terms-box {
  width: 100%; display: flex; align-items: flex-start; gap: 12px; text-align: right;
  padding: 14px 16px; border-radius: 14px; margin-bottom: 14px;
  background: rgba(255,255,255,.03); border-inline-start: 3px solid transparent;
}
.fz-terms-box-info    { border-inline-start-color: var(--fz-blue); }
.fz-terms-box-warning { border-inline-start-color: #fbbf24; }
.fz-terms-box-danger  { border-inline-start-color: #f87171; }
.fz-terms-box-icon {
  width: 30px; height: 30px; min-width: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
}
.fz-terms-box-icon svg { width: 15px; height: 15px; }
.fz-terms-box-info .fz-terms-box-icon    { background: rgba(56,189,248,.15); color: var(--fz-blue); }
.fz-terms-box-warning .fz-terms-box-icon { background: rgba(251,191,36,.15); color: #fbbf24; }
.fz-terms-box-danger .fz-terms-box-icon  { background: rgba(248,113,113,.15); color: #f87171; }
.fz-terms-box-text { font-size: .85rem; line-height: 1.75; color: var(--fz-ice-dim); }
.fz-terms-box-text strong { color: var(--fz-frost); }

.fz-terms-check {
  width: 100%; display: flex; align-items: center; gap: 10px; text-align: right;
  font-size: .88rem; color: var(--fz-ice-dim); margin: 6px 0 18px; cursor: pointer;
}
.fz-terms-check input { width: 18px; height: 18px; accent-color: var(--fz-teal); flex-shrink: 0; cursor: pointer; }

/* ── Login modal ──────────────────────────────────────────────── */
.fz-login-badge {
  width: 68px; height: 68px; border-radius: 20px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--fz-teal), var(--fz-blue));
  display: flex; align-items: center; justify-content: center; color: var(--fz-night);
  box-shadow: 0 12px 28px rgba(56,189,248,.3);
}
.fz-login-badge svg { width: 32px; height: 32px; }
.fz-login-title { font-size: 1.3rem; font-weight: 850; color: var(--fz-frost); margin: 0 0 4px; }
.fz-login-subtitle { font-size: .92rem; font-weight: 700; color: var(--fz-blue); margin: 0 0 22px; }

#fzLoginForm { width: 100%; }
.fz-input-group { width: 100%; margin-bottom: 18px; text-align: right; }
.fz-input-label {
  display: flex; align-items: center; justify-content: flex-start; gap: 8px;
  font-size: .88rem; font-weight: 700; color: var(--fz-blue); margin-bottom: 8px;
}
.fz-input-label svg { width: 15px; height: 15px; }
.fz-input-wrap { position: relative; width: 100%; }
.fz-input-wrap input {
  width: 100%; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1);
  padding: 14px 45px 14px 16px; border-radius: 14px; color: var(--fz-frost); font-size: .92rem; outline: none;
  transition: all .25s; font-family: inherit; direction: rtl; text-align: right;
}
.fz-input-wrap input:focus { border-color: var(--fz-blue); background: rgba(255,255,255,.06); box-shadow: 0 0 15px rgba(56,189,248,.15); }
.fz-input-icon { position: absolute; top: 50%; right: 16px; transform: translateY(-50%); width: 17px; height: 17px; color: rgba(255,255,255,.3); pointer-events: none; }
.fz-pw-eye {
  position: absolute; top: 50%; left: 14px; transform: translateY(-50%); background: none; border: none;
  color: rgba(255,255,255,.35); cursor: pointer; display: flex; padding: 2px; transition: color .2s;
}
.fz-pw-eye svg { width: 17px; height: 17px; }
.fz-pw-eye:hover, .fz-pw-eye.active { color: var(--fz-blue); }

.fz-login-submit {
  width: 100%; background: linear-gradient(135deg, var(--fz-blue), var(--fz-teal)); border: none;
  padding: 14px; border-radius: 14px; color: var(--fz-night); font-size: 1.02rem; font-weight: 850; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 4px;
  box-shadow: 0 10px 25px rgba(56,189,248,.2); transition: all .25s;
}
.fz-login-submit svg { width: 17px; height: 17px; }
.fz-login-submit:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(56,189,248,.35); }
.fz-login-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

.fz-no-code-btn {
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.7);
  padding: 9px 18px; border-radius: 50px; font-size: .82rem; font-weight: 500; cursor: pointer;
  margin-top: 22px; transition: all .25s; font-family: inherit;
}
.fz-no-code-btn:hover { background: rgba(56,189,248,.1); border-color: rgba(56,189,248,.3); color: var(--fz-blue); }
.fz-modal-text { font-size: 1.02rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.fz-modal-text span { background: linear-gradient(135deg, #FFD369, #FFA000); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 850; }

.fz-install-steps {
  width: 100%; text-align: right; font-size: .9rem; line-height: 2.1; color: var(--fz-ice-dim);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 16px 18px;
}

/* ── Install-as-shortcut banner ──────────────────────────────────── */
.fz-install-banner {
  position: fixed; left: 20px; right: 20px; bottom: -120px; z-index: 150;
  max-width: 480px; margin: 0 auto;
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(160deg, rgba(10,21,48,.96), rgba(5,11,31,.99));
  border: 1px solid rgba(56,189,248,.25); border-radius: 18px;
  padding: 14px 16px; box-shadow: 0 20px 45px -10px rgba(0,0,0,.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: bottom .5s cubic-bezier(.34,1.56,.64,1);
}
.fz-install-banner.show { bottom: 20px; }
.fz-install-banner-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--fz-blue), var(--fz-teal)); color: var(--fz-night);
  display: flex; align-items: center; justify-content: center;
}
.fz-install-banner-icon svg { width: 19px; height: 19px; }
.fz-install-banner-text { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.fz-install-banner-text strong { font-size: .88rem; color: var(--fz-frost); }
.fz-install-banner-text span { font-size: .76rem; color: var(--fz-ice-dim); opacity: .8; }
.fz-install-banner-btn {
  background: linear-gradient(135deg, var(--fz-blue), var(--fz-teal)); border: none; color: var(--fz-night);
  padding: 9px 16px; border-radius: 10px; font-weight: 800; font-size: .82rem; cursor: pointer; white-space: nowrap;
  transition: all .2s;
}
.fz-install-banner-btn:hover { filter: brightness(1.1); }
.fz-install-banner-close {
  background: none; border: none; color: var(--fz-ice-dim); opacity: .6; cursor: pointer; padding: 4px; display: flex; flex-shrink: 0;
}
.fz-install-banner-close svg { width: 16px; height: 16px; }
.fz-install-banner-close:hover { opacity: 1; }
@media (max-width: 480px) {
  .fz-install-banner-text span { display: none; }
}
.fz-modal-channels { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 22px; width: 100%; }
.fz-channel {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); padding: 16px 8px; border-radius: 16px;
  text-decoration: none; color: inherit; transition: all .25s;
}
.fz-channel-circle { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.fz-channel-circle svg { width: 18px; height: 18px; }
.fz-channel-circle i { font-size: 1.15rem; }
.fz-channel-label { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.8); }
.fz-channel.whatsapp .fz-channel-circle { background: #25D366; }
.fz-channel.instagram .fz-channel-circle { background: linear-gradient(45deg, #f09433, #e1306c, #bc1888); }
.fz-channel.snapchat .fz-channel-circle { background: #FFFC00; color: #000; }
.fz-channel:hover { transform: translateY(-3px); background: rgba(255,255,255,.06); }
.fz-price-badge {
  background: rgba(56,189,248,.04); border: 1px dashed rgba(56,189,248,.3); border-radius: 20px;
  padding: 18px 20px; width: 100%; text-align: center;
}
.fz-price-text { font-size: 1.5rem; font-weight: 850; color: var(--fz-blue); }
.fz-price-duration { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: 4px; }
[data-theme="light"] .fz-price-duration { color: rgba(15,23,42,.65); }


/* ── Footer ──────────────────────────────────────────────────── */
.fz-footer {
  width: 100%; background: rgba(255,255,255,.02); border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(20px); padding: 55px 20px 26px; margin-top: 55px; display: flex; justify-content: center;
}
.fz-footer-inner { width: 100%; max-width: 1100px; }
.fz-footer-grid { display: grid; grid-template-columns: 2fr 1.1fr 1.1fr; gap: 36px; margin-bottom: 36px; }
.fz-footer-about { display: flex; flex-direction: column; gap: 14px; }
.fz-footer-logo { font-size: 1.3rem; font-weight: 850; display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.fz-footer-logo svg { width: 22px; height: 22px; color: var(--fz-blue); }
.fz-footer-about-text { font-size: .88rem; color: var(--fz-ice-dim); opacity: .8; line-height: 1.8; text-align: justify; }
.fz-footer-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.08); padding: 6px 14px; border-radius: 50px; font-size: .82rem; width: fit-content; }
.fz-footer-badge svg { width: 13px; height: 13px; color: var(--fz-blue); }
.fz-footer-badge .fz-author { background: linear-gradient(90deg, var(--fz-blue), var(--fz-violet)); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }
.fz-footer-col-title { font-size: 1rem; font-weight: 700; color: var(--fz-blue); position: relative; padding-bottom: 8px; margin-bottom: 6px; }
.fz-footer-col-title::after { content: ""; position: absolute; bottom: 0; right: 0; width: 32px; height: 2px; background: var(--fz-teal); border-radius: 2px; }
.fz-footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fz-footer-links a { color: var(--fz-ice-dim); text-decoration: none; font-size: .87rem; transition: all .2s; display: flex; align-items: center; gap: 6px; }
.fz-footer-link-chevron { width: 14px; height: 14px; color: var(--fz-ice-dim); opacity: .6; flex-shrink: 0; }
.fz-footer-links a:hover { color: var(--fz-teal); padding-right: 4px; }
.fz-footer-contact { display: flex; align-items: center; gap: 10px; font-size: .87rem; color: var(--fz-ice-dim); font-weight: 700; margin-bottom: 14px; }
.fz-footer-contact svg { width: 14px; height: 14px; color: var(--fz-teal); }
.fz-footer-social { display: flex; gap: 12px; }
.fz-footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 11px; color: var(--fz-ice-dim); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all .25s; }
.fz-footer-social a svg { width: 16px; height: 16px; }
.fz-footer-social a i { font-size: 1.1rem; }
.fz-footer-social a:hover { transform: translateY(-3px); }
.fz-footer-social a[aria-label="TikTok"]:hover    { background: #ff0050; border-color: #ff0050; color: #fff; }
.fz-footer-social a[aria-label="Snapchat"]:hover  { background: #fffc00; border-color: #fffc00; color: #000; }
.fz-footer-social a[aria-label="Facebook"]:hover  { background: #1877f2; border-color: #1877f2; color: #fff; }
.fz-footer-social a[aria-label="Instagram"]:hover { background: linear-gradient(45deg,#f09433,#e1306c,#bc1888); border-color: #e1306c; color: #fff; }
.fz-footer-bottom { width: 100%; border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.fz-copy { font-size: .82rem; color: var(--fz-ice-dim); opacity: .6; }
.fz-credits { font-size: .7rem; color: var(--fz-ice-dim); opacity: .4; margin-top: 3px; }
.fz-scroll-top { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); color: var(--fz-frost); width: 36px; height: 36px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .25s; }
.fz-scroll-top svg { width: 15px; height: 15px; }
.fz-scroll-top:hover { background: var(--fz-blue); color: var(--fz-night); border-color: var(--fz-blue); transform: translateY(-3px); }

/* ── Light mode ───────────────────────────────────────────────
   Driven by [data-theme="light"] on <html> (see site.js). Note
   this is the DEFAULT for first-time visitors with no saved
   preference, so it needs to hold up on its own, not just exist. */
[data-theme="light"] .fz-aurora-bg {
  background:
    radial-gradient(40% 35% at 20% 20%, rgba(52,232,192,.3), transparent 70%),
    radial-gradient(45% 40% at 80% 15%, rgba(138,107,255,.3), transparent 70%),
    radial-gradient(50% 45% at 50% 90%, rgba(255,107,203,.2), transparent 70%),
    linear-gradient(160deg, var(--fz-night) 0%, var(--fz-night-2) 50%, var(--fz-night) 100%);
  opacity: .8;
}
[data-theme="light"] .fz-text-flow {
  background: linear-gradient(90deg, #0f766e, #0f172a, #0369a1, #0f766e);
  background-size: 300% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
[data-theme="light"] .fz-navbar { background: rgba(255,255,255,.65); border-color: rgba(0,0,0,.1); box-shadow: 0 20px 40px -15px rgba(0,0,0,.1); }
[data-theme="light"] .fz-icon-btn { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.1); color: var(--fz-frost); }
[data-theme="light"] .fz-icon-btn:hover { background: rgba(56,189,248,.15); border-color: var(--fz-blue); color: #0284c7; }

[data-theme="light"] .fz-sidebar { background: linear-gradient(160deg, rgba(255,255,255,.97), rgba(240,244,248,.99)); border-color: rgba(0,0,0,.1); box-shadow: 0 30px 60px rgba(0,0,0,.15); }
[data-theme="light"] .fz-sidebar-links a { background: rgba(0,0,0,.02); border-color: rgba(0,0,0,.06); }
[data-theme="light"] .fz-sidebar-footer { border-top-color: rgba(0,0,0,.08); }
[data-theme="light"] .fz-social-icons a { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.1); }

[data-theme="light"] .fz-slider { border-color: rgba(0,0,0,.15); box-shadow: 0 20px 40px rgba(0,0,0,.15); }
[data-theme="light"] .fz-stat-card { background: rgba(255,255,255,.5); border-color: rgba(0,0,0,.06); }
[data-theme="light"] .fz-premium-btn { color: #b48600; }
[data-theme="light"] .fz-premium-btn:hover { color: #7c5800; }

[data-theme="light"] .fz-glass-card {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd); border-color: #38bdf8;
  box-shadow: 0 10px 20px rgba(0,0,0,.06); color: #0f172a;
}
[data-theme="light"] .fz-glass-card.unlocked .fz-card-icon-box { background: rgba(56,189,248,.15); border-color: #0ea5e9; color: #0284c7; }
[data-theme="light"] .fz-card-title { color: #0f172a; }
[data-theme="light"] .fz-card-desc { color: #334155; font-weight: 500; }
[data-theme="light"] .fz-glass-card:hover { box-shadow: 0 20px 40px -10px rgba(0,0,0,.15); background: linear-gradient(135deg, #f0f9ff, #e0f2fe); }
[data-theme="light"] .fz-glass-card:not(.unlocked):hover .fz-card-title { color: #b48600; }
[data-theme="light"] .fz-glass-card.unlocked:hover .fz-card-title { color: #0284c7; }

[data-theme="light"] .fz-modal { background: linear-gradient(165deg, #ffffff, #f0f9ff); border-color: rgba(56,189,248,.3); box-shadow: 0 30px 60px rgba(0,0,0,.15); }
[data-theme="light"] .fz-close-modal { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.1); color: #0f172a; }
[data-theme="light"] .fz-modal-text { color: #0f172a; }
[data-theme="light"] .fz-alert-title { color: #0f172a; }
[data-theme="light"] .fz-alert-text { color: #334155; }
[data-theme="light"] .fz-login-title { color: #0f172a; }
[data-theme="light"] .fz-input-wrap input { background: rgba(0,0,0,.02); border-color: rgba(0,0,0,.1); color: #0f172a; }
[data-theme="light"] .fz-input-wrap input:focus { background: rgba(255,255,255,.9); }
[data-theme="light"] .fz-input-icon { color: rgba(0,0,0,.25); }
[data-theme="light"] .fz-pw-eye { color: rgba(0,0,0,.3); }
[data-theme="light"] .fz-no-code-btn { background: rgba(0,0,0,.02); border-color: rgba(0,0,0,.08); color: rgba(15,23,42,.7); }
[data-theme="light"] .fz-channel { background: rgba(0,0,0,.02); border-color: rgba(0,0,0,.07); }
[data-theme="light"] .fz-channel-label { color: rgba(15,23,42,.8); }
[data-theme="light"] .fz-footer { background: rgba(255,255,255,.5); border-top-color: rgba(0,0,0,.1); }
[data-theme="light"] .fz-footer-badge { background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.1); }
[data-theme="light"] .fz-footer-social a { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.1); }
[data-theme="light"] .fz-footer-bottom { border-top-color: rgba(0,0,0,.1); }
[data-theme="light"] .fz-scroll-top { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.1); }
[data-theme="light"] .fz-scroll-top:hover { background: var(--fz-blue); color: #fff; border-color: var(--fz-blue); }

@media (max-width: 768px) {
  .fz-login-badge { width: 56px; height: 56px; border-radius: 16px; }
  .fz-login-badge svg { width: 26px; height: 26px; }
  .fz-slider { height: 220px; margin: 22px 0 32px; }
  .fz-header-area h1 { font-size: 1.65rem; }
  .fz-cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .fz-sidebar { width: 280px; }
  .fz-modal { padding: 34px 20px 22px; }
  .fz-modal-channels { gap: 8px; }
  .fz-channel-label { font-size: .74rem; }
  .fz-footer { padding: 38px 15px 20px; margin-top: 38px; }
  .fz-footer-grid { grid-template-columns: 1fr; gap: 26px; margin-bottom: 26px; }
  .fz-footer-logo { justify-content: flex-start; }
  .fz-footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .fz-footer-social { justify-content: flex-start; }
}
