/* ================================================================
   NEUROGLIC — MEMBERS AREA
   Design: Light blue · Cyan accents · Glassmorphism
   Audience: 45+ · Mobile-first
   Font: Plus Jakarta Sans
   ================================================================ */

:root {
  --bg:        #e8f3fb;
  --glass:     rgba(255, 255, 255, 0.97);
  --glass2:    rgba(248, 252, 255, 0.94);
  --border:    rgba(0, 158, 219, 0.22);
  --border2:   rgba(0, 158, 219, 0.40);
  --text:      #09192e;
  --text2:     #2e5270;
  --text3:     #4a6585;
  --cyan:      #009EDB;
  --cyan-dim:  rgba(0, 158, 219, 0.12);
  --green:     #15803d;
  --green-bg:  rgba(21, 128, 61, 0.09);
  --gold:      #b45309;
  --gold-bg:   rgba(180, 83, 9, 0.09);
  --red:       #dc2626;
  --purple:    #6d28d9;
  --radius:    18px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow:    0 2px 16px rgba(0, 100, 180, 0.10), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 40px rgba(0, 100, 180, 0.14), 0 2px 8px rgba(0,0,0,0.07);
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── ANIMATED BACKGROUND ─────────────────────────────────────── */
.bg-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(155deg, #ffffff 0%, #eef6fc 50%, #e2eff9 100%);
  overflow: hidden;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,120,200,0.26) 0%, transparent 68%);
  filter: blur(72px);
  top: -240px; left: -200px;
  animation: orbA 20s ease-in-out infinite;
}
.orb-2 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(0,90,175,0.20) 0%, transparent 68%);
  filter: blur(80px);
  bottom: -180px; right: -160px;
  animation: orbB 26s ease-in-out infinite;
}
.orb-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(80,165,235,0.17) 0%, transparent 68%);
  filter: blur(65px);
  top: 28%; left: 22%;
  animation: orbC 17s ease-in-out infinite;
}
@keyframes orbA { 0%,100%{transform:translate(0,0)} 50%{transform:translate(55px,-35px)} }
@keyframes orbB { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-45px,30px)} }
@keyframes orbC { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,45px)} }

/* ── SCREEN SYSTEM ───────────────────────────────────────────── */
.screen            { display: none; position: relative; z-index: 1; min-height: 100vh; }
.screen.active     { display: block; }

/* ════════════════════════════════════════════════════════════════
   GATE SCREEN
   ════════════════════════════════════════════════════════════════ */
#gate-screen.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.gate-wrap {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.gate-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--cyan);
}
.brand-dot {
  width: 9px; height: 9px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,158,219,0.4);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 8px var(--cyan), 0 0 18px rgba(0,158,219,0.35); }
  50%      { box-shadow: 0 0 14px var(--cyan), 0 0 28px rgba(0,158,219,0.5); }
}

.gate-card {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 38px 30px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.gate-lock-icon { font-size: 44px; margin-bottom: 18px; }

.gate-title {
  font-size: 27px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.22;
  margin-bottom: 12px;
}

.gate-subtitle {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.62;
  margin-bottom: 30px;
}

.gate-form { display: flex; flex-direction: column; gap: 11px; text-align: left; }

.gate-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 0.3px;
}

.gate-input {
  width: 100%;
  padding: 17px 20px;
  font-size: 19px;
  font-family: inherit;
  color: var(--text);
  background: rgba(0,158,219,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  letter-spacing: 3px;
}
.gate-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,158,219,0.14);
}
.gate-input::placeholder { letter-spacing: 0; color: var(--text3); opacity: 0.5; font-size: 16px; }

.gate-error {
  font-size: 14px;
  color: var(--red);
  font-weight: 700;
  min-height: 20px;
  line-height: 1.4;
}

.gate-support {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--text3);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  text-align: left;
  background: rgba(0,158,219,0.05);
  border-radius: var(--radius-xs);
  padding: 12px 14px;
}
.gate-support a { color: var(--cyan); text-decoration: none; font-weight: 600; }
.gate-support a:hover { text-decoration: underline; }

.gate-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text2);
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 13px;
  backdrop-filter: blur(10px);
}

/* ════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 15px 22px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.975); }

.btn-primary {
  background: linear-gradient(135deg, #009EDB 0%, #007bb5 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,158,219,0.38);
}
.btn-primary:hover {
  box-shadow: 0 6px 22px rgba(0,158,219,0.48);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover { background: var(--cyan-dim); }

.btn-ghost {
  background: transparent;
  color: var(--text2);
  padding: 9px 14px;
}
.btn-ghost:hover { color: var(--text); background: rgba(0,0,0,0.05); }

.btn-upgrade {
  background: linear-gradient(135deg, #d97706 0%, #92400e 100%);
  color: #fff;
  font-size: 15px;
  padding: 15px 20px;
  box-shadow: 0 4px 16px rgba(180, 83, 9, 0.32);
  width: 100%;
}
.btn-upgrade:hover {
  box-shadow: 0 6px 22px rgba(180, 83, 9, 0.42);
  transform: translateY(-1px);
}

.btn-full   { width: 100%; }
.btn-sm     { padding: 10px 16px; font-size: 14px; border-radius: var(--radius-xs); }
.mt-8       { margin-top: 8px; }
.mt-16      { margin-top: 16px; }

/* ════════════════════════════════════════════════════════════════
   MEMBERS HEADER
   ════════════════════════════════════════════════════════════════ */
.members-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.header-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
}

/* ════════════════════════════════════════════════════════════════
   MEMBERS MAIN
   ════════════════════════════════════════════════════════════════ */
.members-main {
  max-width: 700px;
  margin: 0 auto;
  padding: 28px 20px 80px;
}

/* ── Welcome Banner ──────────────────────────────────────────── */
.welcome-banner {
  background: linear-gradient(135deg, #009EDB 0%, #006fa8 100%);
  border-radius: var(--radius);
  padding: 30px 26px;
  color: white;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.welcome-banner::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.welcome-banner::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.welcome-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 13px;
  margin-bottom: 13px;
  text-transform: uppercase;
}
.welcome-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 9px;
  position: relative;
  z-index: 1;
}
.welcome-sub {
  font-size: 15px;
  opacity: 0.88;
  line-height: 1.58;
  position: relative;
  z-index: 1;
}

/* ── Section Layout ──────────────────────────────────────────── */
.content-section {
  margin-bottom: 40px;
}
.section-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 5px;
}
.section-label.upgrade { color: var(--gold); }
.section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.22;
}
.section-desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.62;
  margin-bottom: 18px;
}
.section-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 40px;
}

/* ── Content Card (PDF downloads) ───────────────────────────── */
.content-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.content-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }

.content-card-icon {
  font-size: 26px;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--cyan-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-card-info { flex: 1; min-width: 0; }
.content-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.32;
  margin-bottom: 3px;
}
.content-card-meta {
  font-size: 12px;
  color: var(--text3);
}
.content-card-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

@media (max-width: 500px) {
  .content-card { flex-wrap: wrap; }
  .content-card-actions { flex-direction: row; width: 100%; }
  .content-card-actions .btn { flex: 1; }
}

/* ── Audio Card ──────────────────────────────────────────────── */
.audio-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.audio-info { margin-bottom: 18px; }
.audio-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 4px 11px;
  margin-bottom: 9px;
}
.morning-badge {
  background: rgba(251,191,36,0.14);
  color: #78350f;
  border: 1px solid rgba(251,191,36,0.38);
}
.night-badge {
  background: rgba(109,40,217,0.10);
  color: #4c1d95;
  border: 1px solid rgba(109,40,217,0.28);
}
.audio-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.audio-meta { font-size: 13px; color: var(--text3); }

.audio-player {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0,158,219,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.audio-play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009EDB, #0076b0);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,158,219,0.42);
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.audio-play-btn:hover { transform: scale(1.06); box-shadow: 0 6px 20px rgba(0,158,219,0.52); }
.audio-play-btn:active { transform: scale(0.96); }

.play-icon {
  font-size: 19px;
  color: white;
  margin-left: 4px;
  user-select: none;
}
.play-icon.pause { margin-left: 0; }

.audio-controls { flex: 1; min-width: 0; }
.audio-progress-wrap {
  cursor: pointer;
  padding: 9px 0;
  margin-bottom: 5px;
}
.audio-progress-track {
  width: 100%;
  height: 5px;
  background: rgba(0,158,219,0.16);
  border-radius: 99px;
  overflow: hidden;
}
.audio-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #009EDB, #4fc8f4);
  border-radius: 99px;
  width: 0%;
  transition: width 0.4s linear;
}
.audio-time {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text3);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.audio-download {
  font-size: 20px;
  color: var(--text3);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: var(--radius-xs);
  transition: color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.audio-download:hover { color: var(--cyan); background: var(--cyan-dim); }

/* ── Bonus Drip (timed release) ──────────────────────────────── */
.drip-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0,158,219,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}
.drip-notice-icon { flex-shrink: 0; font-size: 14px; line-height: 1.55; }

.bonus-drip { margin-bottom: 10px; }

.bonus-drip-locked {
  background: rgba(0,0,0,0.025);
  border: 1px dashed var(--border2);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.bonus-drip-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}
.bonus-drip-info { flex: 1; min-width: 0; }
.bonus-drip-info .content-card-title { opacity: 0.65; }
.bonus-drip-message {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text3);
  margin-top: 2px;
}
.bonus-drip-countdown { color: var(--cyan); }

/* ── Upsells Section ─────────────────────────────────────────── */
.upsells-section {
  border-top: 2px dashed var(--border2);
  padding-top: 36px;
}

.upsell-card { margin-bottom: 18px; }

.upsell-locked {
  background: var(--glass);
  border: 1.5px dashed rgba(0,158,219,0.32);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.upsell-locked-icon {
  font-size: 38px;
  margin-bottom: 14px;
  opacity: 0.45;
  filter: grayscale(0.3);
}
.upsell-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 9px;
  line-height: 1.25;
}
.upsell-desc {
  font-size: 14.5px;
  color: var(--text2);
  line-height: 1.62;
  margin-bottom: 22px;
}
.upsell-actions { display: flex; flex-direction: column; gap: 8px; }

.unlock-form {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  text-align: left;
}
.unlock-form.open { display: block; }

.unlock-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 9px;
}
.unlock-row { display: flex; gap: 8px; }
.unlock-input {
  flex: 1;
  padding: 13px 15px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: rgba(0,158,219,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  outline: none;
  transition: border-color var(--transition);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.unlock-input:focus { border-color: var(--cyan); }
.unlock-input::placeholder { letter-spacing: 0; text-transform: none; }
.unlock-error {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  margin-top: 7px;
  min-height: 18px;
  line-height: 1.4;
}

.upsell-unlocked {
  background: var(--glass);
  border: 1.5px solid rgba(21,128,61,0.36);
  border-radius: var(--radius);
  padding: 18px;
  transition: opacity 0.4s, transform 0.4s;
}
.unlocked-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--green);
  background: var(--green-bg);
  border-radius: 99px;
  padding: 4px 13px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Insider Club */
.insider-welcome { text-align: center; padding: 6px 4px 10px; }
.insider-icon    { font-size: 44px; margin-bottom: 14px; }
.insider-title   { font-size: 19px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.insider-desc    { font-size: 14.5px; color: var(--text2); line-height: 1.62; }

/* ── Footer ──────────────────────────────────────────────────── */
.members-footer {
  margin-top: 56px;
  padding: 30px 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 14px;
}
.footer-links a { color: var(--text2); text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--cyan); }
.footer-legal {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.58;
  max-width: 520px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════════
   PDF MODAL
   ════════════════════════════════════════════════════════════════ */
.pdf-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9,25,46,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  animation: fadeIn 0.2s ease;
}
.pdf-overlay.open { display: block; }

.pdf-modal {
  display: none;
  position: fixed;
  inset: 16px;
  background: var(--glass);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
  z-index: 201;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.25s ease;
}
.pdf-modal.open { display: flex; }

@media (min-width: 640px) {
  .pdf-modal { inset: 36px 56px; }
}

.pdf-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--glass);
}
.pdf-modal-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.pdf-modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.pdf-modal-close:hover { background: rgba(0,0,0,0.13); color: var(--text); }

.pdf-modal-body {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
  background: #d8e6f0;
}

.pdf-loading {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 600;
  color: var(--text3);
}

.pdf-canvas {
  display: none;
  max-width: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  border-radius: 4px;
  background: #fff;
}
.pdf-canvas.ready { display: block; }

.pdf-modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--glass);
  flex-shrink: 0;
}

.pdf-nav-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,158,219,0.08);
  border: 1px solid var(--border);
  color: var(--cyan);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.pdf-nav-btn:hover  { background: var(--cyan-dim); }
.pdf-nav-btn:disabled { opacity: 0.35; cursor: default; }

.pdf-page-info {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text2);
  min-width: 56px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.pdf-footer-divider {
  width: 1px;
  height: 22px;
  background: var(--border2);
  margin: 0 4px;
}

@media (max-width: 500px) {
  .pdf-modal-body { padding: 14px 8px; }
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%     { transform: translateX(-5px); }
  75%     { transform: translateX(5px); }
}
