/* ============================================
   BCCEXX Quiz — Midnight Green Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --bg1: #050f0a;
  --bg2: #0a1a10;
  --bg3: #0f2418;
  --surface: rgba(16, 42, 28, 0.6);
  --surface-solid: #0e2218;
  --border: rgba(0, 255, 136, 0.08);
  --border-hover: rgba(0, 255, 136, 0.18);
  --accent: #00ff88;
  --accent-dim: #00cc6a;
  --accent-glow: rgba(0, 255, 136, 0.12);
  --accent-bg: rgba(0, 255, 136, 0.08);
  --text: #e8faf0;
  --text-dim: rgba(232, 250, 240, 0.55);
  --text-muted: rgba(232, 250, 240, 0.3);
  --gold: #ffd700;
  --red: #ff4d6a;
  --correct: #00ff88;
  --wrong: #ff4d6a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; }

body {
  font-family: 'Poppins', sans-serif;
  min-height: 100%;
  background: var(--bg1);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(0,255,136,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(0,200,100,0.03) 0%, transparent 60%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── App Shell ── */
.app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}

/* ── Top Bar ── */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.back-btn {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 0.85rem;
  cursor: pointer; transition: all 0.2s;
}

.back-btn:hover {
  background: var(--accent-bg);
  border-color: var(--border-hover);
}

.app-title {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.3px;
}

.coin-badge {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,180,0,0.05));
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 14px;
  font-weight: 800; font-size: 0.85rem;
  color: var(--gold);
  box-shadow: 0 2px 10px rgba(255,215,0,0.06);
}

.coin-badge i { font-size: 0.85rem; }

/* ── Section Headers ── */
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: 1.75rem 0 0.85rem;
}

.section-head h2 {
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: -0.2px;
}

/* ── Category Icon Cards (3-column grid) ── */
.cat-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.cat-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0.5rem 1rem;
  background: linear-gradient(145deg, var(--c1), var(--c2));
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.cat-icon-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -30%;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cat-icon-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.12);
}

.ci-emoji {
  font-size: 2.2rem;
  margin-bottom: 0.55rem;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.ci-name {
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
}

/* Keep old grid as fallback for quiz.html category display */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.cat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
}

.cat-card:hover {
  background: var(--accent-bg);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.cat-icon {
  font-size: 2rem;
  margin-bottom: 0.55rem;
  display: block;
}

.cat-name {
  font-weight: 600; font-size: 0.72rem;
  color: var(--text-dim);
}

/* ── Daily Challenge ── */
.daily-card {
  background: linear-gradient(135deg, #00a65a 0%, #007a42 50%, #005c30 100%);
  border-radius: 20px;
  padding: 1.3rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 24px rgba(0, 166, 90, 0.2);
  position: relative;
  overflow: hidden;
}

.daily-card::after {
  content: ''; position: absolute;
  top: -50%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.daily-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 32px rgba(0, 166, 90, 0.3);
}

.daily-info h3 {
  font-weight: 800; font-size: 1rem;
  color: #fff; margin-bottom: 0.2rem;
  letter-spacing: -0.2px;
}

.daily-info p {
  font-size: 0.72rem; color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.daily-reward {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 14px;
  padding: 0.55rem 1rem;
  font-weight: 800; font-size: 0.85rem;
  color: #fff;
  backdrop-filter: blur(4px);
  z-index: 1;
}

/* ── Streak ── */
.streak-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-top: 1.25rem;
}

.streak-bar i { font-size: 1.1rem; color: #ff6b6b; }

.streak-bar span {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-dim);
}

.streak-bar strong { color: var(--text); }

/* ── Popular Quizzes ── */
.quiz-list {
  display: flex; flex-direction: column;
  gap: 0.55rem; padding-bottom: 6rem;
}

.quiz-row {
  display: flex; align-items: center; gap: 0.85rem;
  background: linear-gradient(135deg, rgba(0,255,136,0.03) 0%, transparent 100%);
  border: 1px solid rgba(0,255,136,0.06);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.quiz-row:hover {
  background: linear-gradient(135deg, rgba(0,255,136,0.08) 0%, rgba(0,200,100,0.03) 100%);
  border-color: rgba(0,255,136,0.18);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,255,136,0.04);
}

.quiz-row-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,255,136,0.08), rgba(0,200,100,0.04));
  border: 1px solid rgba(0,255,136,0.06);
}

.quiz-row-info { flex: 1; }

.quiz-row-info h4 {
  font-weight: 600; font-size: 0.85rem;
  margin-bottom: 0.1rem;
}

.quiz-row-info p {
  font-size: 0.68rem; color: var(--text-muted);
  font-weight: 500;
}

.quiz-row-coins {
  font-weight: 700; font-size: 0.75rem;
  color: var(--gold); white-space: nowrap;
}

/* ============================================
   QUIZ GAMEPLAY
   ============================================ */

.quiz-screen { display: none; }
.quiz-screen.active { display: flex; flex-direction: column; flex: 1; }
.result-screen-wrap { display: none; }
.result-screen-wrap.active { display: block; }

/* Question header */
.q-header {
  padding: 0.5rem 0 1rem;
}

.q-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.q-back-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 0.9rem;
  transition: all 0.2s; flex-shrink: 0;
}

.q-back-btn:hover {
  background: rgba(255,77,106,0.1);
  border-color: rgba(255,77,106,0.2);
  color: var(--red);
}

.q-progress {
  display: flex; align-items: center; gap: 0.6rem;
  justify-content: center;
}

.q-progress span {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-dim);
}

.progress-bar {
  flex: 1; max-width: 200px; height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px; overflow: hidden;
}

.progress-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dim));
  transition: width 0.4s ease;
}

/* Timer */
.timer-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(0,255,136,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  background: var(--surface);
}

.timer-ring.warning {
  border-color: rgba(255,77,106,0.4);
  background: rgba(255,77,106,0.05);
}

.timer-ring.warning .timer-text { color: var(--red); }

.timer-text {
  font-weight: 800; font-size: 1.3rem;
  color: var(--accent);
}

/* Question */
.q-text {
  font-weight: 700; font-size: 1.1rem;
  text-align: center; line-height: 1.55;
  padding: 0 0.5rem;
  margin-bottom: 1.75rem;
  min-height: 3.5em;
}

/* Answer options */
.options {
  display: flex; flex-direction: column;
  gap: 0.6rem; padding-bottom: 1.5rem;
}

.opt-btn {
  width: 100%;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 0.75rem;
}

.opt-btn:hover:not(.disabled) {
  background: var(--accent-bg);
  border-color: var(--border-hover);
}

.opt-letter {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(0,255,136,0.06);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem;
  flex-shrink: 0; color: var(--accent);
}

.opt-btn.correct {
  background: rgba(0,255,136,0.1);
  border-color: var(--correct);
}

.opt-btn.correct .opt-letter {
  background: var(--correct); color: #000;
  border-color: var(--correct);
}

.opt-btn.wrong {
  background: rgba(255,77,106,0.1);
  border-color: var(--wrong);
}

.opt-btn.wrong .opt-letter {
  background: var(--wrong); color: #000;
  border-color: var(--wrong);
}

.opt-btn.disabled {
  pointer-events: none;
  opacity: 0.45;
}

/* ── Result Screen ── */
.result-screen {
  text-align: center;
  padding: 2.5rem 0;
}

.result-icon { font-size: 4rem; margin-bottom: 0.75rem; }

.result-title {
  font-weight: 800; font-size: 1.6rem;
  margin-bottom: 0.25rem; letter-spacing: -0.5px;
}

.result-sub {
  font-size: 0.85rem; color: var(--text-dim);
  margin-bottom: 2rem;
}

.result-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem; margin-bottom: 1.75rem;
}

.stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 0.5rem;
}

.stat-box .val {
  font-weight: 800; font-size: 1.5rem;
  color: var(--accent); margin-bottom: 0.1rem;
}

.stat-box .lbl {
  font-size: 0.62rem; color: var(--text-muted);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-coins {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 14px;
  font-weight: 700; font-size: 1rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.result-btns {
  display: flex; flex-direction: column; gap: 0.55rem;
}

.rbtn {
  padding: 0.85rem;
  border-radius: 14px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.rbtn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #000;
}

.rbtn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.rbtn-secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.rbtn-secondary:hover {
  background: var(--accent-bg);
  border-color: var(--border-hover);
}

/* ── Bottom Nav — Floating Pill ── */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  padding: 0 1rem 0.75rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}

.bottom-nav .nav-inner {
  display: flex;
  max-width: 260px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(10, 30, 18, 0.92), rgba(6, 20, 12, 0.95));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-radius: 50px;
  padding: 0.35rem;
  pointer-events: all;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0,255,136,0.03);
}

.nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.nav-item i {
  font-size: 1rem;
}

.nav-item.active {
  background: var(--accent-bg);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.06);
}

.nav-item:not(.active):hover {
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
}

/* ── Card Stack Layout — Gradient Style ── */
.card-stack {
  background: linear-gradient(145deg, rgba(10, 35, 22, 0.7) 0%, rgba(8, 28, 18, 0.5) 100%);
  border: 1px solid rgba(0, 255, 136, 0.06);
  border-radius: 20px;
  padding: 1.3rem;
  margin-bottom: 0.85rem;
  position: relative;
  overflow: hidden;
}

.card-stack::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.12), transparent);
}

.card-stack.blog {
  background: linear-gradient(145deg, rgba(15, 40, 28, 0.8) 0%, rgba(5, 20, 12, 0.6) 100%);
  border-left: 3px solid var(--accent);
}

.stack-header {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stack-header i {
  font-size: 0.9rem;
  color: var(--accent);
}

.stack-text {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.stack-text:last-child { margin-bottom: 0; }
.stack-text strong { color: var(--text); }

.blog-sub {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  margin: 1rem 0 0.45rem;
}

.blog-sub:first-of-type { margin-top: 0.2rem; }

/* Inner components */
.card-stack .quiz-list-inline { display: flex; flex-direction: column; gap: 0.5rem; }
.card-stack .quiz-row { margin: 0; border-radius: 12px; }
.card-stack .progress-mini { padding: 0.5rem 0 0; margin: 0; }

/* ── Ad Slots — collapse unfilled ads completely ── */
.ad-slot {
  border-radius: 12px;
  overflow: hidden;
}

.ad-slot:has(ins[data-ad-status="unfilled"]),
.ad-slot:has(ins:not([data-ad-status="filled"])) {
  height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

.ad-top:has(ins[data-ad-status="unfilled"]),
.ad-top:has(ins:not([data-ad-status="filled"])) {
  height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

/* ── Blog Blocks (high CPM content) ── */
.blog-block {
  background: linear-gradient(145deg, rgba(10, 35, 22, 0.7) 0%, rgba(8, 28, 18, 0.5) 100%);
  border: 1px solid rgba(0, 255, 136, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 20px;
  padding: 1.4rem 1.3rem;
  margin: 0.85rem 0;
  position: relative;
  overflow: hidden;
}

.blog-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 60%);
  opacity: 0.3;
}

.blog-block h3 {
  font-weight: 800; font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.4rem;
}

.blog-block h3 i { font-size: 0.9rem; color: var(--accent); }

.blog-block h4 {
  font-weight: 700; font-size: 0.88rem;
  color: var(--text);
  margin: 1.1rem 0 0.45rem;
}

.blog-block p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 0.55rem;
}

.blog-block p:last-child { margin-bottom: 0; }

.blog-block strong { color: var(--text); }

.blog-block .highlight,
.highlight {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, rgba(0,255,136,0.08), rgba(0,200,100,0.03));
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  margin: 0.7rem 0;
  line-height: 1.65;
}

.tip-list {
  list-style: none; padding: 0; margin: 0;
}

.tip-list li {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
  padding: 0.35rem 0 0.35rem 1.2rem;
  position: relative;
}

.tip-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Progress mini row */
.progress-mini {
  display: flex; align-items: center; justify-content: space-around;
  padding: 0.6rem 0 0.2rem;
}

.pm-item { text-align: center; flex: 1; }
.pm-val {
  font-weight: 800; font-size: 1.5rem; color: var(--accent);
  letter-spacing: -0.5px;
  margin-bottom: 0.1rem;
}
.pm-label {
  font-size: 0.6rem; color: var(--text-muted); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.pm-divider {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}

/* Quiz footer */
.quiz-footer {
  text-align: center;
  padding: 1.5rem 0 5rem;
}

.quiz-footer p {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.quiz-footer a {
  color: var(--text-dim);
  transition: color 0.15s;
}

.quiz-footer a:hover { color: var(--accent); }

/* ── Wrong Answer Modal ── */
.wrong-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.wrong-modal.active {
  display: flex;
}

.wrong-modal-card {
  background: linear-gradient(145deg, #2d1b69, #1a1050);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 340px;
  width: 100%;
  animation: modalPop 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalPop {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.wm-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.wm-title {
  font-weight: 800; font-size: 1.25rem;
  color: #f87171; margin-bottom: 0.4rem;
}

.wm-sub {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem; line-height: 1.5;
}

.wm-sub strong { color: #fbbf24; }

.wm-ad-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; width: 100%;
  padding: 0.85rem; border: none; border-radius: 14px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000; font-family: inherit;
  font-weight: 800; font-size: 0.9rem;
  cursor: pointer; transition: all 0.2s;
  margin-bottom: 0.6rem;
  box-shadow: 0 4px 16px rgba(251, 191, 36, 0.25);
}

.wm-ad-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(251, 191, 36, 0.35);
}

.wm-ad-btn i { font-size: 1rem; }

.wm-coin-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.15); border-radius: 8px;
  padding: 0.15rem 0.5rem; font-size: 0.8rem; font-weight: 800;
}

.wm-continue-btn {
  width: 100%; padding: 0.75rem; border: none; border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-family: inherit;
  font-weight: 700; font-size: 0.85rem;
  cursor: pointer; transition: all 0.2s;
}

.wm-continue-btn:hover {
  background: rgba(255,255,255,0.12);
}

/* ── Below-quiz content (always visible, scrollable) ── */
.below-quiz {
  padding-top: 0.5rem;
}

/* ── Info section (bullet list card) ── */
.info-section {
  background: linear-gradient(145deg, rgba(10,35,22,0.7), rgba(8,28,18,0.5));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.3rem;
  margin-bottom: 0.85rem;
}

.info-section h3 {
  font-weight: 800; font-size: 1rem;
  color: var(--text); margin-bottom: 0.85rem;
}

.info-list { list-style: none; padding: 0; margin: 0; }

.info-list li {
  font-size: 0.8rem; color: var(--text-dim);
  line-height: 1.7; padding: 0.3rem 0 0.3rem 1rem;
  position: relative;
}

.info-list li::before {
  content: '•'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}

/* ── Numbered blog cards ── */
.num-blog {
  background: linear-gradient(145deg, rgba(10,35,22,0.7), rgba(8,28,18,0.5));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.3rem;
  margin-bottom: 0.85rem;
}

.num-blog .nb-head {
  font-weight: 800; font-size: 0.95rem;
  color: var(--text); margin-bottom: 0.75rem;
  display: flex; align-items: flex-start; gap: 0.4rem;
}

.nb-num {
  font-weight: 800; font-size: 0.95rem;
  color: var(--text-muted); flex-shrink: 0;
}

.num-blog h4 {
  font-weight: 700; font-size: 0.85rem;
  color: var(--accent); margin-bottom: 0.4rem;
}

.num-blog p {
  font-size: 0.78rem; color: var(--text-dim);
  line-height: 1.75; margin-bottom: 0.4rem;
}

.num-blog p:last-child { margin-bottom: 0; }
