/* ============================================================
   DalaoBet — dark + gold theme
   ============================================================ */
:root {
  --bg: #0d0b07;
  --bg-card: #17130c;
  --bg-elevated: #1f1a10;
  --border: #2e2718;
  --gold: #f0b90b;
  --gold-bright: #ffd75e;
  --gold-dim: #a8820a;
  --text: #f5efe0;
  --text-muted: #9a8f78;
  --danger: #ff5c5c;
  --success: #4ade80;
  --radius: 14px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; } body { min-height: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans Ethiopic", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- logo ---------- */
.logo { display: inline-flex; align-items: baseline; gap: 2px; font-weight: 800; letter-spacing: -0.5px; text-decoration: none; }
.logo .d1 { color: var(--text); font-size: 24px; }
.logo .d2 { color: var(--gold); font-size: 24px; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 8px; margin-right: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #0d0b07; font-weight: 900; font-size: 18px;
  box-shadow: 0 0 18px rgba(240, 185, 11, 0.35);
}

/* ---------- auth pages ---------- */
.auth-wrap { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; background: radial-gradient(1200px 500px at 50% -10%, rgba(240,185,11,0.08), transparent); }
.auth-card { width: 100%; max-width: 400px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.auth-card h1 { font-size: 20px; margin: 18px 0 6px; }
.auth-card p.sub { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.field input {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--gold-dim); background: linear-gradient(180deg, var(--bg-elevated), var(--bg-card)); color: var(--text); box-shadow: 0 2px 8px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,215,94,.08); transition: border-color .15s, box-shadow .15s;
  background: #2a2410; color: #fff; font-size: 15px; outline: none;
}
.field input:focus { border-color: var(--gold-dim); box-shadow: 0 0 0 3px rgba(240,185,11,0.12); }
.btn {
  width: 100%; padding: 14px; border: none; border-radius: 10px; cursor: pointer;
  font-size: 15px; font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: #14100a;
}
.btn:active { transform: scale(0.99); }
.btn.secondary { background: var(--bg-elevated); color: var(--text); border: 1px solid var(--border); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.auth-links { display: flex; justify-content: space-between; margin-top: 16px; font-size: 13px; }
.auth-links a { color: var(--gold); text-decoration: none; font-weight: 600; }
.err { color: var(--danger); font-size: 13px; margin: 10px 0 0; min-height: 18px; }
.ok { color: var(--success); font-size: 13px; margin: 10px 0 0; }

/* ---------- app shell ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: rgba(13,11,7,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.wallet-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 12px; padding: 8px 6px 8px 14px;
}
.wallet-chip .amt { font-weight: 800; font-size: 15px; }
.wallet-chip .dep {
  background: var(--gold); color: #14100a; border: none; border-radius: 9px;
  width: 32px; height: 32px; font-size: 20px; font-weight: 800; cursor: pointer;
}
.section-title { padding: 18px 16px 10px; font-size: 15px; font-weight: 800; color: var(--gold-bright); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- game grids ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 0 12px; }
@media (min-width: 640px) { .tiles { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .tiles { grid-template-columns: repeat(6, 1fr); } }
.tile {
  position: relative; cursor: pointer; background: none; border: none;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.12s;
}
.tile:hover { transform: translateY(-2px); }
.tile .thumb {
  position: relative; width: 100%; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-card);
  transition: border-color 0.12s;
}
.tile:hover .thumb { border-color: var(--gold-dim); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;  }
.tile .name {
  font-size: 12.5px; font-weight: 800; text-align: center; color: #fff;
  line-height: 1.2; padding: 0 2px; letter-spacing: 0.2px;
}
.tile.own { background: linear-gradient(160deg, #241d0e 0%, #17130c 100%); align-items: center; justify-content: center; }
.tile.own .big { font-size: 34px; margin-bottom: 6px; }
.tile.own .name { background: none; }

/* ---------- game overlay ---------- */
.game-overlay { position: fixed; inset: 0; z-index: 100; background: #0d0b07; display: flex; flex-direction: column; }
.game-overlay .bar { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; }
.game-overlay .close-btn { background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim)); color: #14100a; border: none; border-radius: 999px; padding: 9px 22px; font-weight: 800; font-size: 14px; letter-spacing: .3px; cursor: pointer; box-shadow: 0 2px 14px rgba(255,215,94,0.35); }
.game-overlay iframe { flex: 1; width: 100%; border: 0; background: transparent; display: block; }
.hidden { display: none !important; }

/* ---------- bottom nav ---------- */
.bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: flex; justify-content: space-around; padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  background: rgba(13,11,7,0.95); backdrop-filter: blur(10px); border-top: 1px solid var(--border);
}
.bottomnav a { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--text-muted); text-decoration: none; font-size: 11px; font-weight: 600; }
.bottomnav a.active { color: var(--gold); }
.bottomnav .ico { font-size: 20px; }
.page-pad { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }

/* ---------- modals ---------- */
.modal-backdrop { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; }

.modal-card { width: calc(100% - 32px); max-width: 360px; margin: 0 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 20px; max-height: 82vh; overflow-y: auto; }

.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-size: 18px; font-weight: 800; }
.modal-x { background: none; border: none; color: var(--text-muted); font-size: 20px; cursor: pointer; }
.m-note { color: var(--text-muted); font-size: 13px; }
.pay-to { display: flex; align-items: center; gap: 10px; margin-top: 8px; background: var(--bg-elevated); border: 1px solid var(--gold-dim); border-radius: 10px; padding: 12px 14px; }
.pay-to span { font-size: 20px; font-weight: 800; color: var(--gold-bright); letter-spacing: 1px; flex: 1; }
.copy-btn { background: var(--gold); color: #14100a; border: none; border-radius: 8px; padding: 7px 14px; font-weight: 700; cursor: pointer; }
.modal-card textarea { width: 100%; margin-top: 8px; margin-bottom: 12px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-elevated); color: var(--text); font-size: 14px; resize: vertical; font-family: inherit; transition: border-color .15s, box-shadow .15s; }
.modal-card textarea:focus { outline: none; border-color: var(--gold-dim); box-shadow: 0 0 0 3px rgba(240,185,11,0.15); }
.acct-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.acct-row span { color: var(--text-muted); }

/* wallet deposit/withdraw side-by-side tabs */
.wallet-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.wt-btn { flex: 1; padding: 11px; border: 1px solid var(--border); background: var(--bg-elevated); color: var(--text-muted); border-radius: 10px; font-weight: 700; font-size: 14px; cursor: pointer; }
.wt-btn.active { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%); color: #14100a; border-color: var(--gold-dim); }

/* kill mobile tap-highlight / focus box on tiles and buttons */
.tile, .tile *, button, a, .bottomnav a { -webkit-tap-highlight-color: transparent; }
.tile:focus, .tile:active, button:focus { outline: none; }
.tile { -webkit-touch-callout: none; user-select: none; }

.eye-btn { background: none; border: none; color: var(--text-muted); font-size: 16px; cursor: pointer; margin-left: 6px; padding: 2px; }


/* ---- Vault header (Dalol premium redesign) ---- */
.topbar.vault { padding: 8px 10px 10px; border-bottom: none; background: linear-gradient(180deg, rgba(13,11,7,0.98), rgba(13,11,7,0.92)); position: relative; gap: 8px; }
.topbar.vault .logo .d1, .topbar.vault .logo .d2 { font-size: 18px; }
.topbar.vault .logo-mark { width: 26px; height: 26px; margin-right: 6px; font-size: 14px; }
.topbar.vault::after { content:""; position:absolute; left:0; right:0; bottom:0; height:1px; background: linear-gradient(90deg, transparent, var(--gold-dim), transparent); opacity:.7; }
.topbar.vault .logo { flex-shrink: 0; }
.vault-balance { display: flex; align-items: baseline; gap: 4px; position: relative; flex: 1; justify-content: center; }
.vault-balance .vb-num { font-family: inherit; font-weight: 800; font-size: 15px; color: var(--gold-bright); letter-spacing: -0.3px; white-space: nowrap; }
.vault-balance .vb-cur { font-size: 10px; font-weight: 700; color: var(--gold-dim); letter-spacing: 2px; text-transform: uppercase; }
.vault-balance .vb-pulse { position:absolute; left:50%; transform:translateX(-50%); bottom:-4px; width:0; height:1.5px; background: var(--gold-bright); border-radius:1px; opacity:0; }
.vault-balance .vb-pulse.on { animation: vbPulse .6s ease-out; }
@keyframes vbPulse { 0%{ width:0; opacity:0 } 30%{ width:60%; opacity:1 } 100%{ width:60%; opacity:0 } }
.vault-actions { display: flex; gap: 4px; align-items: center; flex-shrink: 0; }
.vpill { background: transparent; border: 1px solid var(--border); color: var(--text-muted); border-radius: 999px; padding: 6px 7px; font-size: 11px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all .15s; }
.vpill:hover, .vpill:active { border-color: var(--gold-dim); color: var(--gold-bright); }
.vpill.primary { background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim)); color: #14100a; border-color: transparent; padding: 6px 11px; font-weight: 800; font-size: 11px; }
.vpill.primary.big { padding: 9px 18px; font-size: 13px; border-radius: 999px; box-shadow: 0 2px 12px rgba(255,215,94,0.25); }
.vpill.hidden-on { color: var(--gold); border-color: var(--gold-dim); }
.vpill.spinning svg { animation: spin .6s linear; }
@keyframes spin { to { transform: rotate(360deg); } }


/* ---- Ledger bottom nav (Dalol) ---- */
.bottomnav.ledger { padding: 10px 0 max(10px, env(safe-area-inset-bottom)); background: linear-gradient(0deg, rgba(13,11,7,0.98), rgba(13,11,7,0.92)); border-top: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; }
.bottomnav.ledger::before { content:""; position:absolute; left:0; right:0; top:0; height:1px; background: linear-gradient(90deg, transparent, var(--gold-dim), transparent); opacity:.7; }
.bottomnav.ledger .lnav { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-muted); text-decoration: none; font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 4px 12px; position: relative; transition: color .18s; }
.bottomnav.ledger .lico { transition: transform .18s; }
.bottomnav.ledger .llabel { opacity: .8; }
.bottomnav.ledger .tick { position: absolute; top: -6px; width: 18px; height: 2px; border-radius: 1px; background: var(--gold-bright); box-shadow: 0 0 8px var(--gold); opacity: 0; transform: scaleX(0); transform-origin: center; transition: opacity .2s, transform .2s; }
.bottomnav.ledger .lnav.active { color: var(--gold-bright); }
.bottomnav.ledger .lnav.active .llabel { opacity: 1; }
.bottomnav.ledger .lnav.active .lico { transform: translateY(-1px); }
.bottomnav.ledger .lnav.active .tick { opacity: 1; transform: scaleX(1); }
.bottomnav.ledger .lnav:active .lico { transform: scale(.92); }


/* ---- Split lobby (Dalol) ---- */
.sec-title { display: flex; align-items: baseline; gap: 12px; padding: 24px 16px 10px; position: relative; }
.sec-title.mt { padding-top: 30px; }
.sec-title .s-kicker { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.sec-title .s-word { font-size: 22px; font-weight: 900; color: var(--gold-bright); letter-spacing: -0.3px; font-family: Georgia, 'Times New Roman', serif; }
.sec-title .s-dia { color: var(--gold-dim); font-size: 10px; transform: translateY(-2px); }
.sec-title .s-tag { font-size: 12px; font-style: italic; color: var(--text-muted); letter-spacing: 0.3px; }
.sec-title .count { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 999px; padding: 3px 12px; font-size: 12px; color: var(--gold-dim); font-weight: 700; margin-left: auto; }
.pill-row { display: flex; gap: 8px; padding: 4px 12px 14px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.pill-row::-webkit-scrollbar { display: none; }
.pill-row .pill { flex-shrink: 0; background: rgba(255,215,94,0.06); border: 1.5px solid var(--gold-dim); color: var(--gold-bright); border-radius: 999px; padding: 9px 18px; font-size: 13px; font-weight: 800; cursor: pointer; letter-spacing: .3px; white-space: nowrap; transition: all .15s; }
.pill-row .pill:hover { background: rgba(255,215,94,0.14); }
.pill-row .pill.active { background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim)); color: #14100a; border-color: var(--gold-bright); box-shadow: 0 2px 12px rgba(255,215,94,0.3); }

#grid-popular > .tile:nth-child(n+17) { display: none; }

.vault-cluster { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 12px; background: rgba(255,215,94,0.06); border: 1px solid var(--border); }
.vicon { background: transparent; border: none; color: var(--text-muted); cursor: pointer; padding: 4px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; transition: color .15s, background .15s; }
.vicon:hover, .vicon:active { color: var(--gold-bright); background: rgba(255,215,94,0.10); }
.vicon.hidden-on { color: var(--gold); }
.vicon.spinning svg { animation: spin .6s linear; }

/* ---- Contain-fit for tall/wide card art (per-game override) ---- */
.tile[data-gh-id="slotegrator:552:16a7ccbe1d8f4d0cc300aac3be7e931721e871b4"] .thumb,
.tile[data-gh-id="slotegrator:552:d498af2dafb5461ea3bf260f11e02af8"] .thumb,
.tile[data-gh-id="black:3oaks:1048"] .thumb {
  background: var(--bg-elevated);
}
.tile[data-gh-id="slotegrator:552:16a7ccbe1d8f4d0cc300aac3be7e931721e871b4"] img,
.tile[data-gh-id="slotegrator:552:d498af2dafb5461ea3bf260f11e02af8"] img,
.tile[data-gh-id="black:3oaks:1048"] img {
  object-fit: contain;
}

/* ---- Deposit step flow (Dalol) ---- */
.dep-step { display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start; }
.dep-num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim)); color: #14100a; font-weight: 900; font-size: 15px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(255,215,94,.3); }
.dep-txt { flex: 1; }
.dep-h { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.modal-card textarea.dep-paste { width: 100%; padding: 14px; border-radius: 12px; border: 2px solid var(--gold); background: var(--bg-elevated); color: var(--text); font-size: 14px; resize: vertical; font-family: inherit; margin-top: 0; }
.modal-card textarea.dep-paste::placeholder { color: #8a7a4a; font-size: 12px; font-style: italic; }
@keyframes depGlow { 0%,100% { box-shadow: 0 0 16px rgba(255,215,94,.30), inset 0 0 12px rgba(255,215,94,.06); } 50% { box-shadow: 0 0 26px rgba(255,215,94,.55), inset 0 0 16px rgba(255,215,94,.12); } }

.modal-card textarea.dep-paste:focus { outline: none; border-color: var(--gold-bright); box-shadow: 0 0 0 4px rgba(255,215,94,.22), 0 4px 16px rgba(0,0,0,.4); }

/* ---- Withdraw box (Dalol) ---- */
.wd-balance { display: flex; flex-direction: column; gap: 4px; padding: 16px 18px; margin-bottom: 18px; border-radius: 14px; background: linear-gradient(135deg, rgba(255,215,94,0.12), rgba(255,215,94,0.04)); border: 1px solid var(--gold-dim); }
.wd-balance .wd-lbl { font-size: 11px; font-weight: 700; color: var(--gold-dim); text-transform: uppercase; letter-spacing: 1px; }
.wd-balance .wd-amt { font-size: 19px; font-weight: 800; color: var(--gold-bright); }
.wd-balance .wd-amt b { font-weight: 900; }
.modal-card input.wd-input { border: 1px solid var(--gold-dim) !important; background: var(--bg-elevated) !important; color: var(--text) !important; font-size: 15px !important; padding: 14px !important; }
.modal-card input.wd-input:focus { border-color: var(--gold) !important; box-shadow: 0 0 0 3px rgba(255,215,94,.15) !important; }

/* ---- Cashback live countdown (Dalol) ---- */
.cbx { margin: 12px 16px 0; border-radius: 14px; border: 1px solid #1a7f5a; background: linear-gradient(135deg, #08251a, #041108); padding: 12px 16px; position: relative; overflow: hidden; }
.cbx-glow { position: absolute; top: -30px; right: -30px; width: 130px; height: 130px; border-radius: 50%; background: radial-gradient(circle, rgba(52,211,153,0.14), transparent 70%); pointer-events: none; }
.cbx-inner { position: relative; }
.cbx-top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.cbx-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; animation: cbxPulse 1.6s ease-in-out infinite; }
@keyframes cbxPulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.cbx-live { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: #34d399; text-transform: uppercase; }
.cbx-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.cbx-lbl { font-size: 11px; color: #9a8a5a; letter-spacing: 0.5px; margin-bottom: 3px; }
.cbx-amt { font-size: 22px; font-weight: 900; color: #6ee7b7; letter-spacing: -0.5px; line-height: 1; }
.cbx-cur { font-size: 14px; font-weight: 700; color: #1a7f5a; margin-left: 4px; }
.cbx-timer { text-align: right; }
.cbx-clock { font-family: ui-monospace, 'SF Mono', monospace; font-size: 17px; font-weight: 800; color: #6ee7b7; line-height: 1; }
.cbx-clock .cbx-c { color: #1a7f5a; }
.cbx-track { height: 4px; background: rgba(52,211,153,0.12); border-radius: 2px; margin-top: 10px; overflow: hidden; }
.cbx-bar { height: 100%; width: 0%; background: linear-gradient(90deg, #1a7f5a, #6ee7b7); border-radius: 3px; transition: width 1s linear; }
.cbx-foot { font-size: 10px; color: #7a6d45; margin-top: 8px; }
.cbx-claim { width: 100%; margin-top: 12px; }
.cbx-claim.hidden { display: none; }

/* ---- Animated login hero (Dalol) ---- */
@keyframes authShimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes authGlowPulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }
@keyframes authChipDrift { 0% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-10px) rotate(8deg); } 100% { transform: translateY(0) rotate(0); } }
@keyframes authBtnGlow { 0%,100% { box-shadow: 0 6px 20px rgba(255,215,94,.28); } 50% { box-shadow: 0 6px 30px rgba(255,215,94,.5); } }
.auth-wrap { position: relative; overflow: hidden; }
.auth-chip { position: absolute; border-radius: 50%; animation: authChipDrift 4s ease-in-out infinite; pointer-events: none; z-index: 0; }
.auth-chip.chip1 { width: 60px; height: 60px; background: radial-gradient(circle at 35% 35%, #ffe19a, #8a6d1f); top: 12%; left: -18px; opacity: .13; animation-delay: 0s; }
.auth-chip.chip2 { width: 40px; height: 40px; background: radial-gradient(circle at 35% 35%, #ffe19a, #8a6d1f); top: 30%; right: -12px; opacity: .10; animation-delay: 1.5s; }
.auth-hero { text-align: center; position: relative; margin-bottom: 26px; z-index: 1; }
.auth-glow { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); width: 200px; height: 130px; background: radial-gradient(ellipse, rgba(255,215,94,0.12), transparent 70%); animation: authGlowPulse 3s ease-in-out infinite; pointer-events: none; }
.auth-brand { position: relative; font-size: 24px; font-weight: 900; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 6px; background: linear-gradient(90deg, var(--gold-dim) 20%, #fff 50%, var(--gold-dim) 80%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: authShimmer 3.5s linear infinite; }
.auth-divider { position: relative; width: 40px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-dim), transparent); margin: 0 auto 22px; }
.auth-headline { position: relative; font-size: 28px; font-weight: 900; letter-spacing: -0.5px; line-height: 1.1; background: linear-gradient(90deg, #fff 20%, #ffe19a 50%, #fff 80%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: authShimmer 3s linear infinite; }
.auth-tagline { position: relative; font-size: 12.5px; margin-top: 14px; color: var(--gold-dim); font-weight: 600; letter-spacing: .5px; line-height: 1.7; padding: 0 10px; }
.auth-tagline b { color: var(--gold-bright); font-weight: 800; }
.auth-card { position: relative; z-index: 1; }
.auth-card h1 { font-size: 18px; margin: 0 0 6px; }
.auth-card .btn { animation: authBtnGlow 2.5s ease-in-out infinite; border-radius: 14px; }
.auth-card .field input { border-radius: 14px; padding: 15px 18px; }

.dep-block { margin-bottom: 18px; }
.dep-block .dep-h { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
