/* ===== 基础 ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #5b6cff;
  --primary-dark: #4654d9;
  --gold: #ffb340;
  --green: #22c55e;
  --red: #ef4444;
  --bg: #f4f6fb;
  --card: #fff;
  --text: #26304b;
  --muted: #8a93ad;
  --radius: 14px;
}
body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}
a { color: var(--primary); text-decoration: none; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 16px; }
main.wrap { padding-top: 24px; padding-bottom: 60px; }

/* ===== 顶栏 ===== */
.topbar {
  background: linear-gradient(135deg, #5b6cff 0%, #8b5cf6 100%);
  color: #fff;
  padding: 12px 0;
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 4px 18px rgba(91,108,255,.35);
}
.topbar .wrap { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.logo { font-size: 20px; font-weight: 800; color: #fff; }
.topbar nav { display: flex; gap: 14px; flex: 1; }
.topbar nav a { color: rgba(255,255,255,.85); font-weight: 600; padding: 4px 8px; border-radius: 8px; }
.topbar nav a:hover { color: #fff; background: rgba(255,255,255,.15); }
.topbar .user { display: flex; align-items: center; gap: 10px; font-size: 14px; flex-wrap: wrap; }
.title-chip { background: rgba(255,255,255,.18); padding: 3px 10px; border-radius: 999px; font-size: 13px; }
.coin { background: rgba(255,255,255,.18); padding: 3px 10px; border-radius: 999px; font-weight: 700; }
.streak { background: rgba(255,255,255,.18); padding: 3px 10px; border-radius: 999px; font-weight: 700; }
.btn-mini {
  background: rgba(255,255,255,.25); color: #fff; border: none;
  padding: 4px 12px; border-radius: 8px; cursor: pointer; font-size: 13px;
}
.btn-mini:hover { background: rgba(255,255,255,.4); }
.btn-mini.danger { background: rgba(255,80,80,.5); }

/* ===== Flash ===== */
.flash-wrap { padding-top: 12px; }
.flash { padding: 10px 14px; border-radius: 10px; margin-bottom: 10px; font-size: 14px; }
.flash.ok { background: #e8f9ef; color: #15803d; border: 1px solid #bbe9cd; }
.flash.error { background: #fdecec; color: #b91c1c; border: 1px solid #f5c2c2; }

/* ===== 通用卡片 ===== */
.card {
  background: var(--card); border-radius: var(--radius);
  padding: 20px; box-shadow: 0 2px 12px rgba(38,48,75,.06);
}
.card h2 { font-size: 16px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.card.span2 { grid-column: span 2; }
.muted { color: var(--muted); font-size: 13px; }
.hl { color: var(--primary); }
.link { font-size: 13px; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
@media (max-width: 760px) { .grid { grid-template-columns: 1fr; } .card.span2 { grid-column: span 1; } }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #5b6cff, #8b5cf6);
  color: #fff; border-radius: 18px; padding: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 8px 24px rgba(91,108,255,.3);
}
.hero h1 { font-size: 24px; margin-bottom: 10px; }
.hero p { opacity: .92; margin-bottom: 16px; }
.hero .hl { color: #ffd479; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-wrong {
  background: rgba(255,255,255,.2); color: #fff; border: 2px solid rgba(255,255,255,.6);
  font-size: 15px; font-weight: 800; padding: 11px 22px; border-radius: 999px;
  cursor: pointer; transition: transform .15s;
}
.btn-wrong:hover { transform: translateY(-2px); background: rgba(255,255,255,.3); }
.btn-start {
  background: #ffd479; color: #5b3d00; border: none; font-size: 17px; font-weight: 800;
  padding: 12px 26px; border-radius: 999px; cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.18); transition: transform .15s;
}
.btn-start:hover { transform: translateY(-2px) scale(1.02); }
.hero-right { display: flex; gap: 14px; }
.stat-card {
  background: rgba(255,255,255,.16); border-radius: 14px; padding: 14px 20px; text-align: center;
}
.stat-card b { display: block; font-size: 26px; }
.stat-card span { font-size: 13px; opacity: .9; }
.alert-warn {
  background: #fff7e6; color: #92400e; border: 1px solid #fcd34d;
  padding: 10px 14px; border-radius: 10px; margin-top: 14px; font-size: 14px;
}

/* ===== 打卡日历 ===== */
.calendar { display: flex; gap: 6px; flex-wrap: wrap; margin: 8px 0 12px; }
.day {
  width: 26px; height: 26px; border-radius: 8px; background: #edf0f7;
  border: 2px solid transparent; position: relative;
}
.day.on { background: var(--green); }
.day.today { border-color: var(--primary); }
.day.on.today { border-color: #fff; outline: 2px solid var(--primary); }

/* ===== 任务 ===== */
.quest {
  display: flex; justify-content: space-between; align-items: center;
  background: #f0f2ff; border-radius: 12px; padding: 12px 14px; margin: 6px 0;
}
.quest.done { background: #e8f9ef; }

/* ===== 排行榜 ===== */
.board { width: 100%; border-collapse: collapse; }
.board td { padding: 8px 6px; font-size: 14px; border-bottom: 1px solid #f0f2f7; }
.board .right { text-align: right; font-weight: 700; }
.board .me td { background: #f0f2ff; border-radius: 8px; }
.rank { width: 40px; }

/* ===== 徽章 ===== */
.badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-earned {
  background: linear-gradient(135deg, #fff3d6, #ffe7ad); border-radius: 12px;
  padding: 10px 12px; text-align: center; font-size: 24px; width: 92px;
  box-shadow: 0 2px 8px rgba(255,179,64,.25);
}
.badge-earned span { display: block; font-size: 11px; color: #92400e; margin-top: 4px; }

.badge-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin-top: 18px; }
.badge-wall-item {
  background: #fff; border-radius: 14px; padding: 18px 12px; text-align: center;
  box-shadow: 0 2px 10px rgba(38,48,75,.06); opacity: .45; filter: grayscale(1);
}
.badge-wall-item.got { opacity: 1; filter: none; background: linear-gradient(135deg, #fff3d6, #ffe7ad); box-shadow: 0 4px 14px rgba(255,179,64,.3); }
.bw-icon { font-size: 34px; }
.bw-name { font-weight: 800; margin: 6px 0 4px; }
.bw-desc { font-size: 12px; color: var(--muted); }

/* ===== 商店 ===== */
.shop { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.shop-item {
  border: 2px solid #edf0f7; border-radius: 14px; padding: 14px; text-align: center;
}
.shop-item.owned { border-color: #ffe7ad; background: #fffdf5; }
.shop-item.equipped { border-color: var(--primary); background: #f0f2ff; }
.t-icon { font-size: 34px; }
.t-name { font-weight: 700; margin: 6px 0 8px; }
.t-btn {
  border: none; border-radius: 999px; padding: 6px 16px; cursor: pointer;
  background: var(--primary); color: #fff; font-size: 13px; font-weight: 700;
}
.t-btn.equipped { background: var(--muted); }

/* ===== 登录 ===== */
.login-card {
  max-width: 380px; margin: 60px auto; background: #fff; border-radius: 18px;
  padding: 36px 32px; text-align: center; box-shadow: 0 8px 30px rgba(38,48,75,.1);
}
.login-card h1 { font-size: 26px; margin-bottom: 6px; }
.login-card .sub { color: var(--muted); margin-bottom: 22px; }
.login-card input {
  width: 100%; padding: 12px 14px; margin-bottom: 12px; border: 2px solid #e5e8f2;
  border-radius: 10px; font-size: 15px; outline: none;
}
.login-card input:focus { border-color: var(--primary); }
.btn-primary {
  background: var(--primary); color: #fff; border: none; padding: 10px 22px;
  border-radius: 10px; cursor: pointer; font-size: 15px; font-weight: 700;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-primary.big { width: 100%; padding: 13px; font-size: 16px; }
.btn-secondary {
  background: #edf0f7; color: var(--text); border: none; padding: 10px 22px;
  border-radius: 10px; cursor: pointer; font-size: 15px; font-weight: 700;
}

/* ===== 答题页 ===== */
.quiz-wrap { max-width: 640px; margin: 10px auto; }
.quiz-hud { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.hearts { font-size: 26px; letter-spacing: 3px; }
.progress { flex: 1; height: 10px; background: #e5e8f2; border-radius: 999px; overflow: hidden; }
.progress-bar { height: 100%; width: 5%; background: linear-gradient(90deg, var(--primary), #8b5cf6); border-radius: 999px; transition: width .3s; }
.hud-right { display: flex; align-items: center; gap: 12px; }
.combo { color: var(--gold); font-weight: 800; }
.score { font-weight: 800; }

.quiz-stage {
  background: #fff; border-radius: 18px; padding: 40px 30px; text-align: center;
  box-shadow: 0 8px 30px rgba(38,48,75,.08); min-height: 260px;
  position: relative;
}
.mode-tag {
  display: inline-block; font-size: 13px; font-weight: 800; color: var(--primary);
  background: #f0f2ff; border-radius: 999px; padding: 4px 14px; margin-bottom: 18px;
}
.prompt { font-size: 34px; font-weight: 800; margin-bottom: 10px; word-break: break-word; }
.extra { color: var(--muted); margin-bottom: 8px; }
.extra .phonetic { color: var(--muted); font-size: 15px; margin-right: 8px; }
.audio-btn {
  border: none; background: #f0f2ff; border-radius: 999px; padding: 6px 14px;
  cursor: pointer; font-size: 15px;
}
.audio-btn:hover { background: #e3e7ff; }

.answer-input {
  width: 78%; max-width: 360px; padding: 14px 16px; font-size: 24px; text-align: center;
  border: 3px solid #e5e8f2; border-radius: 14px; outline: none; margin: 14px auto 12px;
}
.answer-input:focus { border-color: var(--primary); }
.answer-input.right { border-color: var(--green); background: #f0fdf4; }
.answer-input.wrong { border-color: var(--red); background: #fef2f2; }

.option-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.option-btn {
  padding: 16px; font-size: 17px; border: 2px solid #e5e8f2; border-radius: 12px;
  background: #fff; cursor: pointer; transition: all .12s; font-weight: 600;
}
.option-btn:hover:not(:disabled) { border-color: var(--primary); transform: translateY(-2px); }
.option-btn.right { border-color: var(--green); background: #f0fdf4; }
.option-btn.wrong { border-color: var(--red); background: #fef2f2; }
.option-btn:disabled { cursor: default; }

.feedback {
  margin-top: 16px; background: #fff; border-radius: 14px; padding: 16px;
  display: flex; align-items: center; gap: 12px; box-shadow: 0 4px 16px rgba(38,48,75,.1);
  animation: pop .25s;
}
.feedback.correct { background: #f0fdf4; border: 2px solid var(--green); }
.feedback.wrong { background: #fef2f2; border: 2px solid var(--red); }
.fb-icon { font-size: 28px; }
.fb-text { font-size: 15px; }
@keyframes pop { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ===== 结算页 ===== */
.result-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.stars { font-size: 56px; margin: 20px 0 6px; }
.stars .star { opacity: .18; animation: pop .3s both; }
.stars .star.on { opacity: 1; }
.stars .star.s2 { animation-delay: .15s; }
.stars .star.s3 { animation-delay: .3s; }
.result-stats { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 18px 0 26px; }
.result-stats .stat {
  background: #fff; border-radius: 14px; padding: 14px 20px; box-shadow: 0 2px 10px rgba(38,48,75,.06);
}
.result-stats .stat b { display: block; font-size: 22px; color: var(--primary); }
.result-stats .stat span { font-size: 12px; color: var(--muted); }
.badge-new {
  display: inline-block; background: linear-gradient(135deg, #fff3d6, #ffe7ad);
  border-radius: 12px; padding: 8px 14px; margin: 4px; font-size: 14px; font-weight: 700;
}
.result-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; text-align: left; margin-bottom: 26px; }
@media (max-width: 760px) { .result-cards { grid-template-columns: 1fr; } }
.word-row { display: flex; justify-content: space-between; gap: 8px; padding: 8px 4px; border-bottom: 1px solid #f0f2f7; font-size: 14px; }
.word-row:last-child { border-bottom: none; }
.word-row .w { font-weight: 800; }
.word-row .m { color: var(--muted); }
.word-row .miss { color: var(--red); font-size: 13px; }
.result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== 配对 ===== */
.pair-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.pair-board { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.pair-col { display: flex; flex-direction: column; gap: 10px; }
.pair-item {
  background: #fff; border: 2px solid #e5e8f2; border-radius: 12px; padding: 14px;
  cursor: pointer; font-weight: 700; transition: all .12s; font-size: 15px;
}
.pair-item:hover { border-color: var(--primary); transform: translateY(-1px); }
.pair-item.selected { border-color: var(--primary); background: #f0f2ff; }
.pair-item.matched { border-color: var(--green); background: #f0fdf4; cursor: default; }
.pair-item.matched:hover { transform: none; }
.pair-item.wrong-pick { border-color: var(--red); background: #fef2f2; animation: shake .3s; }
@keyframes shake { 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.pair-status { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.pair-actions { display: flex; gap: 12px; justify-content: center; }

/* ===== 管理后台 ===== */
.admin-nav { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.admin-nav a {
  background: #fff; padding: 8px 16px; border-radius: 10px; font-weight: 600;
  color: var(--text); box-shadow: 0 2px 8px rgba(38,48,75,.06);
}
.admin-nav a.active { background: var(--primary); color: #fff; }
.inline-form { display: flex; gap: 8px; flex-wrap: wrap; }
.inline-form input, .inline-form textarea, .login-card input {
  padding: 10px 12px; border: 2px solid #e5e8f2; border-radius: 10px; outline: none; font-size: 14px;
  flex: 1; min-width: 180px;
}
.inline-form input:focus { border-color: var(--primary); }
.inline-form textarea { width: 100%; font-family: monospace; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th { text-align: left; padding: 8px; color: var(--muted); font-size: 13px; border-bottom: 2px solid #f0f2f7; }
.table td { padding: 8px; border-bottom: 1px solid #f0f2f7; vertical-align: middle; }
.table input { padding: 6px 8px; border: 1px solid #e5e8f2; border-radius: 8px; font-size: 13px; }
.table .ops { display: flex; align-items: center; gap: 6px; white-space: nowrap; flex-wrap: nowrap; }
.table .ops form { margin: 0; }
.table .ops .btn-mini { background: #edf0f7; color: var(--text); }
.table .ops .btn-mini:hover { background: #e0e4f0; }
.table .ops .btn-mini.danger { background: rgba(255,80,80,.5); color: #fff; }
.table .ops .btn-mini.danger:hover { background: rgba(255,60,60,.65); }
.tag-warn { background: #fef2f2; color: #b91c1c; padding: 2px 8px; border-radius: 6px; font-size: 12px; }
.radio-row { display: flex; gap: 18px; margin-bottom: 10px; font-size: 14px; }
.edit-row { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.edit-row[hidden] { display: none; }  /* hidden 不被 display:flex 覆盖，默认隐藏编辑行 */

/* 分页 */
.pager { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; font-size: 14px; }
.pager a.pg { background: #edf0f7; padding: 6px 16px; border-radius: 8px; font-weight: 700; color: var(--text); }
.pager a.pg:hover { background: #e0e4f0; color: var(--primary); }
.pager .pg-info { color: var(--muted); }

.page-title { font-size: 26px; margin-bottom: 6px; }
.center-empty { text-align: center; margin-top: 80px; }
.center-empty h1 { font-size: 30px; margin-bottom: 10px; }

/* ===== 词汇表 ===== */
.wordset-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 16px; }
.wordset-card { display: flex; flex-direction: column; }
.ws-stats { display: flex; gap: 10px; margin: 10px 0 12px; }
.ws-stat { background: #f4f6fb; border-radius: 10px; padding: 8px 12px; text-align: center; flex: 1; }
.ws-stat b { display: block; font-size: 20px; color: var(--primary); }
.ws-stat.warn b { color: var(--red); }
.ws-stat span { font-size: 11px; color: var(--muted); }
.ws-bar { height: 8px; background: #e5e8f2; border-radius: 999px; overflow: hidden; }
.ws-bar-inner { height: 100%; background: linear-gradient(90deg, var(--primary), #8b5cf6); border-radius: 999px; transition: width .4s; }
select {
  padding: 10px 12px; border: 2px solid #e5e8f2; border-radius: 10px;
  font-size: 14px; background: #fff; outline: none; cursor: pointer;
}
select:focus { border-color: var(--primary); }

/* ===== 添加单词卡片（蝶变词表） ===== */
.add-word-card h2 { margin-bottom: 6px; }
.diebian-tag {
  background: linear-gradient(135deg, #5b6cff, #8b5cf6); color: #fff;
  border-radius: 8px; padding: 2px 10px; font-size: 15px;
}
.add-word-card .muted { margin-bottom: 12px; }

/* ===== 词表选择条 ===== */
.wordset-bar { margin-bottom: 16px; }
.ws-picker { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ws-picker select { font-size: 15px; font-weight: 700; padding: 8px 12px; }
.ws-progress { display: flex; gap: 14px; font-size: 14px; }
.ws-progress b { color: var(--primary); }
.hero-ws { font-size: 14px; opacity: .9; margin-bottom: 6px; }

/* ===== 奖品挑战 ===== */
.prize-card { margin-top: 18px; }
.prize-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.prize-body { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.prize-side { flex-shrink: 0; }
.prize-info { flex: 1; min-width: 240px; }
.prize-tip { font-size: 14px; margin-bottom: 10px; line-height: 1.6; }
.prize-bar { height: 12px; background: #e5e8f2; border-radius: 999px; overflow: hidden; margin-bottom: 8px; }
.prize-bar-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #ff8c42);
  transition: width .5s ease;
}
.prize-num { font-size: 13px; color: var(--muted); }

/* 马赛克揭示（奖品本体） */
.prize-mystery { text-align: center; }
.prize-emoji-wrap {
  position: relative; width: 130px; height: 130px; margin: 0 auto;
  border-radius: 16px; background: linear-gradient(135deg, #f0f2ff, #e8e4ff);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.prize-emoji { font-size: 76px; line-height: 1; filter: blur(6px); user-select: none; }
.prize-tiles {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(5, 1fr);
}
.pt { background: rgba(91,108,255,.28); border: 1px solid rgba(255,255,255,.65); transition: opacity .3s; }
.pt.on { opacity: 0; pointer-events: none; }
.prize-letters {
  display: flex; justify-content: center; gap: 4px; margin-top: 8px;
  font-size: 20px; font-weight: 800; letter-spacing: 2px; font-family: monospace;
}
.pl { color: var(--muted); }
.pl.on { color: var(--primary); }

/* 奖品藏品墙 */
.prize-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; margin-top: 8px; }
.prize-wall-item {
  background: #fff; border-radius: 16px; padding: 18px 14px; text-align: center;
  box-shadow: 0 2px 12px rgba(38,48,75,.06); display: flex; flex-direction: column; gap: 6px;
}
.prize-wall-item.current { border: 2px solid var(--gold); box-shadow: 0 4px 18px rgba(255,179,64,.25); }
.prize-wall-item.collected { background: linear-gradient(135deg, #fff3d6, #ffe7ad); }
.prize-wall-item.locked { opacity: .55; }
.pwi-emoji { font-size: 52px; }
.pwi-emoji.lock { font-size: 44px; }
.pwi-name { font-weight: 800; font-size: 16px; }
.pwi-en { font-size: 12px; color: var(--muted); letter-spacing: 1px; }
.pwi-status { font-size: 13px; font-weight: 700; }
.pwi-status.collected { color: var(--green); }
.pwi-status.current { color: var(--gold); }
.pwi-status.locked { color: var(--muted); }
.pwi-date { font-size: 12px; color: var(--muted); }
.pwi-bar { height: 8px; background: #e5e8f2; border-radius: 999px; overflow: hidden; }
.pwi-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), #ff8c42); border-radius: 999px; }
.pwi-num { font-size: 12px; color: var(--muted); }
.pwi-desc { font-size: 11px; color: var(--muted); margin-top: 4px; }
.prize-wall-item.current .prize-emoji-wrap { width: 110px; height: 110px; }
.prize-wall-item.current .prize-emoji { font-size: 60px; }
.prize-wall-item.current .prize-letters { font-size: 15px; gap: 2px; }

/* 结算页碎片揭示 */
.prize-fragment {
  margin: 0 auto 20px; max-width: 480px;
  background: linear-gradient(135deg, #fff8ec, #fff1d6);
  border: 2px solid var(--gold); border-radius: 18px; padding: 18px;
  animation: pop .35s;
}
.pf-title { font-weight: 800; font-size: 15px; margin-bottom: 12px; }
.pf-text { font-size: 14px; margin-top: 12px; }

/* 解锁庆祝（全屏） */
.celebration {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(20, 24, 46, .82); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  animation: fadein .3s;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.confetti i {
  position: absolute; top: -12px; width: 10px; height: 16px;
  border-radius: 3px; opacity: .9; animation: fall linear forwards;
}
@keyframes fall {
  to { transform: translateY(108vh) rotate(720deg); }
}
.celeb-box {
  background: #fff; border-radius: 24px; padding: 34px 46px; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.35); animation: pop .45s;
  max-width: 92vw;
}
.celeb-emoji { font-size: 84px; animation: bounce 1s ease infinite; margin-bottom: 10px; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.celeb-box h2 { font-size: 24px; margin-bottom: 8px; }
.celeb-box p { color: var(--muted); margin-bottom: 18px; }
