/* مازموویز — استایل مووی‌هاب + پنل مدیریت */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  margin: 0;
  font-family: "Vazirmatn", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
textarea { resize: vertical; min-height: 90px; }

:root {
  --bg: #0b0d12;
  --bg-2: #12151c;
  --bg-card: #171b24;
  --bg-elevated: #1c212c;
  --border: rgba(255,255,255,0.07);
  --text: #f4f6fb;
  --muted: #9aa3b5;
  --muted-2: #6b7385;
  --gold: #f5c518;
  --gold-2: #ffd84d;
  --gold-soft: rgba(245, 197, 24, 0.14);
  --danger: #ff5c6c;
  --success: #3ddc84;
  --nav-h: 56px;
  --tab-h: 68px;
  --radius: 16px;
  --shadow: 0 16px 40px rgba(0,0,0,.45);
}

*::-webkit-scrollbar { height: 6px; width: 6px; }
*::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 99px; }
*::-webkit-scrollbar-track { background: transparent; }

#app { min-height: 100dvh; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: 0 .85rem;
  background: rgba(11,13,18,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.top-actions {
  display: flex;
  align-items: center;
  gap: .15rem;
  min-width: 88px;
}
.top-actions.left { justify-content: flex-start; }
.top-actions.right { justify-content: flex-end; }

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #e8ecf5;
  transition: background .15s ease, color .15s ease;
}
.icon-btn:hover { background: rgba(255,255,255,.06); }
.icon-btn svg { width: 22px; height: 22px; }

.brand-title {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--gold);
  text-align: center;
  flex: 1;
}

.tabbar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  height: calc(var(--tab-h) + env(safe-area-inset-bottom, 0px));
  padding: .35rem .4rem calc(.45rem + env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .15rem;
  background: rgba(12,14,20,.96);
  border-top: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
}
.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  color: var(--muted-2);
  border-radius: 14px;
  min-height: 54px;
}
.tab-item svg { width: 22px; height: 22px; }
.tab-item .label { font-size: .68rem; font-weight: 600; }
.tab-item.active { color: var(--gold); }
.tab-item.active .tab-icon-wrap {
  background: var(--gold-soft);
  color: var(--gold);
}
.tab-icon-wrap {
  width: 42px;
  height: 30px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.page-with-tabs {
  padding-bottom: calc(var(--tab-h) + env(safe-area-inset-bottom, 0px) + 12px);
  min-height: 100dvh;
  background: var(--bg);
}

.hero-wrap { padding: .65rem .85rem 0; }
.hero-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10.2;
  background: #1a1f2a center/cover no-repeat;
  box-shadow: var(--shadow);
  min-height: 210px;
  width: 100%;
  text-align: right;
  color: inherit;
}
@media (min-width: 480px) {
  .hero-card { aspect-ratio: 16 / 8.5; }
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.88) 8%, rgba(0,0,0,.25) 48%, rgba(0,0,0,.15) 100%),
    linear-gradient(to left, transparent 40%, rgba(0,0,0,.35));
}
.hero-dots {
  position: absolute;
  top: .75rem;
  left: .85rem;
  z-index: 2;
  display: flex;
  gap: .28rem;
}
.hero-dots span {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,.35);
}
.hero-dots span.active { width: 16px; background: var(--gold); }
.hero-info {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: .9rem 1rem 1rem;
}
.hero-info h2 {
  margin: 0 0 .2rem;
  font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.35;
}
.hero-info .en {
  color: rgba(255,255,255,.88);
  font-size: .82rem;
  margin-bottom: .35rem;
  direction: ltr;
  text-align: right;
  font-weight: 600;
}
.hero-info .meta {
  color: #d7dbe6;
  font-size: .78rem;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
}
.fire { color: #ff6a3d; }

.section { padding: 1.05rem 0 .15rem; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 0 .9rem .7rem;
}
.section-title {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin: 0;
  font-size: .98rem;
  font-weight: 800;
  color: #fff;
}
.section-title .mark {
  color: var(--gold);
  display: inline-grid;
  place-items: center;
}
.section-title .mark svg { width: 18px; height: 18px; }
.see-all {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .15rem;
  padding: .25rem .1rem;
}

.row-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(118px, 36%);
  gap: .7rem;
  overflow-x: auto;
  padding: 0 .9rem .35rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.row-scroller::-webkit-scrollbar { display: none; }
@media (min-width: 480px) {
  .row-scroller { grid-auto-columns: minmax(130px, 22%); gap: .8rem; }
}
@media (min-width: 768px) {
  .row-scroller { grid-auto-columns: minmax(140px, 15%); }
  .hero-wrap, .section-head, .row-scroller, .page-pad, .card-grid { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.media-card {
  scroll-snap-align: start;
  text-align: right;
  color: inherit;
  width: 100%;
  padding: 0;
}
.media-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #1a2030 center/cover no-repeat;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.04);
}
.media-poster .badge {
  position: absolute;
  top: .4rem;
  right: .4rem;
  background: rgba(0,0,0,.72);
  color: var(--gold);
  font-size: .65rem;
  font-weight: 800;
  padding: .18rem .4rem;
  border-radius: 8px;
  border: 1px solid rgba(245,197,24,.25);
}
.media-body { padding: .5rem .15rem .1rem; }
.media-title {
  margin: 0;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.1em;
}
.media-sub {
  margin-top: .25rem;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.media-sub .hot { color: #ff7a45; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 118px), 1fr));
  gap: .75rem;
  padding: 0 .9rem;
}
@media (min-width: 480px) {
  .card-grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 132px), 1fr)); gap: .9rem; }
}

.page-pad { padding: .9rem; }
.page-title { margin: 0 0 .35rem; font-size: 1.25rem; font-weight: 800; }
.page-sub { color: var(--muted); margin: 0 0 1rem; line-height: 1.7; }

.search-field {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .75rem .9rem;
  margin-bottom: 1rem;
}
.search-field input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  min-width: 0;
}
.search-field svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 12px;
  padding: .75rem 1.05rem;
  font-weight: 700;
  transition: transform .12s ease, opacity .15s ease, background .15s ease;
}
.btn:active { transform: scale(.98); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1400;
  box-shadow: 0 10px 24px rgba(245,197,24,.22);
}
.btn-dark {
  background: var(--bg-elevated);
  color: #fff;
  border: 1px solid var(--border);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
}
.btn-danger {
  background: rgba(255,92,108,.14);
  color: #ffb0b8;
  border: 1px solid rgba(255,92,108,.28);
}
.btn-block { width: 100%; }
.btn-lg { padding: .9rem 1.15rem; }
.btn-sm { padding: .45rem .7rem; font-size: .8rem; border-radius: 10px; }
.btn:disabled { opacity: .55; cursor: not-allowed; }

.auth-screen {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(700px 320px at 50% -10%, rgba(245,197,24,.16), transparent 55%),
    var(--bg);
}
.auth-card {
  width: min(100%, 420px);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.auth-card h1 { margin: .65rem 0 .3rem; font-size: 1.4rem; font-weight: 800; }
.auth-card .lead { color: var(--muted); margin: 0 0 1.1rem; line-height: 1.7; }

.form-group { margin-bottom: .85rem; }
.form-group label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 600;
  color: #dce2ef;
  font-size: .88rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #0b0d12;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .8rem .9rem;
  outline: none;
  color: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(245,197,24,.55);
  box-shadow: 0 0 0 3px rgba(245,197,24,.12);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 640px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
  .form-row.three { grid-template-columns: 1fr 1fr 1fr; }
}
.form-hint { margin-top: .35rem; color: var(--muted-2); font-size: .75rem; line-height: 1.5; }
.form-error {
  background: rgba(255,92,108,.1);
  border: 1px solid rgba(255,92,108,.28);
  color: #ffb0b8;
  border-radius: 12px;
  padding: .7rem .85rem;
  margin-bottom: .85rem;
}
.form-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  margin-bottom: .7rem;
}
.form-check input { width: auto; }
.hidden { display: none !important; }
.auth-switch { margin-top: 1rem; text-align: center; color: var(--muted); }
.auth-switch button { color: var(--gold); font-weight: 800; margin-inline-start: .25rem; }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
@media (min-width: 720px) {
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
}
.plan-card {
  background: linear-gradient(180deg, #171b24, #12151c);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
}
.plan-card.featured {
  border-color: rgba(245,197,24,.45);
  box-shadow: 0 14px 36px rgba(245,197,24,.1);
}
.plan-card.featured::before {
  content: "پیشنهاد ویژه";
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--gold);
  color: #1a1400;
  font-size: .7rem;
  font-weight: 800;
  padding: .22rem .55rem;
  border-radius: 999px;
}
.plan-name { margin: 0; font-size: 1.1rem; font-weight: 800; }
.plan-price { display: flex; align-items: baseline; gap: .3rem; }
.plan-price .amount { font-size: 1.45rem; font-weight: 800; color: var(--gold); }
.plan-price .period { color: var(--muted); font-size: .85rem; }
.plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
  flex: 1;
  color: #d7dce8;
}
.plan-features li { display: flex; gap: .4rem; line-height: 1.5; }
.plan-features li::before { content: "✓"; color: var(--gold); font-weight: 800; }

.panel {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.1rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .7rem;
}
@media (min-width: 560px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
.stat {
  background: #0f1218;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .9rem;
}
.stat .label { color: var(--muted); margin-bottom: .3rem; font-size: .8rem; }
.stat .value { font-weight: 800; font-size: 1.05rem; }

.payment-box {
  margin-top: 1rem;
  border: 1px dashed rgba(245,197,24,.28);
  background: rgba(245,197,24,.05);
  border-radius: 14px;
  padding: .95rem;
  color: var(--muted);
  line-height: 1.75;
}
.payment-box code {
  direction: ltr;
  display: inline-block;
  background: #000;
  border-radius: 7px;
  padding: .1rem .35rem;
  border: 1px solid rgba(255,255,255,.08);
  font-size: .75rem;
  color: #eee;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: end center;
  padding: 0;
  animation: fadeIn .16s ease;
}
@media (min-width: 640px) {
  .modal-backdrop { place-items: center; padding: 1rem; }
}
.modal {
  width: min(100%, 560px);
  max-height: min(92dvh, 860px);
  overflow: auto;
  background: var(--bg-2);
  border-radius: 22px 22px 0 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: riseIn .2s ease;
}
@media (min-width: 640px) {
  .modal { border-radius: 20px; }
}
.modal-hero {
  position: relative;
  min-height: 210px;
  background: #1a2030 center/cover no-repeat;
}
.modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-2), transparent 55%);
}
.modal-close {
  position: absolute;
  top: .7rem;
  left: .7rem;
  z-index: 2;
  background: rgba(0,0,0,.45);
  border-radius: 12px;
}
.modal-body { padding: 0 1.05rem 1.25rem; position: relative; }
.modal-title { margin: 0 0 .4rem; font-size: 1.35rem; font-weight: 800; }
.locked-note {
  margin-top: 1rem;
  padding: .9rem;
  border-radius: 14px;
  background: rgba(245,197,24,.08);
  border: 1px solid rgba(245,197,24,.22);
  color: #ffe7a0;
  line-height: 1.7;
}
.chip-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .65rem; }
.chip {
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #e7ebf5;
}
.chip.gold { background: var(--gold-soft); color: var(--gold); }

.empty {
  margin: .5rem .9rem;
  text-align: center;
  padding: 2rem 1rem;
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255,255,255,.02);
}

.toast-root {
  position: fixed;
  z-index: 100;
  inset-inline: 0;
  bottom: calc(var(--tab-h) + 12px);
  display: grid;
  justify-items: center;
  gap: .45rem;
  pointer-events: none;
  padding: 0 1rem;
}
.toast {
  pointer-events: auto;
  background: #1b2130;
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  border-radius: 999px;
  padding: .7rem 1rem;
  box-shadow: var(--shadow);
  animation: riseIn .18s ease;
  max-width: min(100%, 420px);
  text-align: center;
  font-weight: 600;
}
.toast.success { border-color: rgba(61,220,132,.35); }
.toast.error { border-color: rgba(255,92,108,.4); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0,0,0,.55);
  animation: fadeIn .15s ease;
}
.drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(82vw, 320px);
  height: 100%;
  background: #10141c;
  border-left: 1px solid var(--border);
  padding: 1rem;
  animation: slideIn .18s ease;
  overflow: auto;
}
.drawer h3 { margin: .4rem 0 1rem; color: var(--gold); font-size: 1.1rem; }
.drawer-link {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  text-align: right;
  padding: .8rem .7rem;
  border-radius: 12px;
  color: #e8ecf5;
  font-weight: 600;
}
.drawer-link:hover { background: rgba(255,255,255,.05); }

/* Admin */
.admin-shell {
  min-height: 100dvh;
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(245,197,24,.08), transparent 50%),
    var(--bg);
}
.admin-top {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem 1rem;
  background: rgba(11,13,18,.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.admin-top h1 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
}
.admin-body {
  padding: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.admin-tabs {
  display: flex;
  gap: .4rem;
  overflow-x: auto;
  margin-bottom: 1rem;
  padding-bottom: .2rem;
}
.admin-tab {
  white-space: nowrap;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: .55rem .9rem;
  font-weight: 700;
}
.admin-tab.active, .admin-tab:hover {
  color: #1a1400;
  background: var(--gold);
  border-color: var(--gold);
}
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1rem;
  align-items: center;
}
.admin-toolbar .grow { flex: 1; min-width: 180px; }
.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-2);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.admin-table th,
.admin-table td {
  padding: .75rem .8rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-align: right;
  vertical-align: middle;
  font-size: .84rem;
}
.admin-table th {
  color: var(--muted);
  font-weight: 700;
  background: rgba(0,0,0,.25);
  position: sticky;
  top: 0;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table .thumb {
  width: 42px;
  height: 62px;
  border-radius: 8px;
  background: #222 center/cover no-repeat;
  flex-shrink: 0;
}
.admin-item-cell {
  display: flex;
  gap: .65rem;
  align-items: center;
}
.admin-item-cell strong { display: block; margin-bottom: .15rem; }
.admin-item-cell span { color: var(--muted); font-size: .75rem; }
.admin-actions {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
}
.admin-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
}
.admin-form h2 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}
.admin-help {
  background: rgba(245,197,24,.07);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: 14px;
  padding: .9rem 1rem;
  color: #f0e2a8;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: .88rem;
}
.admin-help ol { margin: .4rem 0 0; padding-right: 1.1rem; }
.admin-help code {
  direction: ltr;
  display: inline-block;
  background: #000;
  border-radius: 6px;
  padding: 0 .3rem;
  font-size: .78rem;
}
.badge-soft {
  display: inline-flex;
  align-items: center;
  padding: .15rem .45rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  background: rgba(255,255,255,.08);
}
.badge-soft.ok { background: rgba(61,220,132,.12); color: #8dffb8; }
.badge-soft.warn { background: rgba(245,197,24,.12); color: var(--gold); }

.player-box {
  margin-top: 1rem;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
}
.player-box video {
  width: 100%;
  max-height: 280px;
  background: #000;
}
.link-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
}

.install-banner {
  position: fixed;
  inset-inline: 0;
  bottom: calc(var(--tab-h) + env(safe-area-inset-bottom, 0px) + 10px);
  z-index: 90;
  padding: 0 .85rem;
  animation: riseIn .2s ease;
}
.install-banner-inner {
  display: flex;
  align-items: center;
  gap: .65rem;
  background: #171b24;
  border: 1px solid rgba(245,197,24,.28);
  border-radius: 16px;
  padding: .7rem .75rem;
  box-shadow: var(--shadow);
}
.install-icon { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; }
.install-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .15rem; }
.install-text strong { font-size: .9rem; color: #fff; }
.install-text span { font-size: .75rem; color: var(--muted); }
.install-btn { padding: .55rem .9rem !important; flex-shrink: 0; }

.admin-fab {
  position: fixed;
  left: .85rem;
  bottom: calc(var(--tab-h) + env(safe-area-inset-bottom, 0px) + 12px);
  z-index: 45;
  background: rgba(23,27,36,.95);
  border: 1px solid rgba(245,197,24,.35);
  color: var(--gold);
  border-radius: 999px;
  padding: .65rem .9rem;
  font-weight: 800;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { transform: translateX(16px); opacity: .6; }
  to { transform: translateX(0); opacity: 1; }
}
