/* FM.video Play. The palette and type are the brand's (docs/BRAND-LOGO.md):
   void ground, pink as the one accent, Big Shoulders for display, Space
   Grotesk for body, Space Mono for stats. Dark only, like the player. */

@font-face { font-family: 'Big Shoulders'; src: url('/fonts/BigShouldersDisplay-Black.ttf') format('truetype'); font-weight: 900; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('/fonts/SpaceGrotesk-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Space Mono'; src: url('/fonts/SpaceMono-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }

:root {
  --void: #08070C;
  --surface: #14101C;
  --elevated: #1C1626;
  --line: #241830;
  --pink: #FF2E9A;
  --magenta: #C63AD8;
  --purple: #9B4DFF;
  --orange: #FF7A1A;
  --live: #FF3B30;
  --up: #35D07F;
  --down: #FF6A6A;
  --ink: #F5F4F7;
  --dim: #9E93A8;
  --mute: #7A6E86;
  --spectrum: linear-gradient(96deg, var(--orange) 0%, var(--pink) 48%, var(--purple) 100%);
  --display: 'Big Shoulders', Impact, 'Arial Narrow Bold', sans-serif;
  --body: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'Space Mono', ui-monospace, Menlo, monospace;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { color-scheme: dark; }
body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--pink); }
button { font: inherit; }
[hidden] { display: none !important; }

.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; max-width: 760px; margin: 0 auto;
}
.lockup { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); }
.lockup .mark { width: 28px; height: 28px; filter: drop-shadow(0 0 8px rgba(255,46,154,.45)); }
.lockup .word { font-family: var(--display); font-size: 24px; letter-spacing: .01em; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.lockup .word .v { color: var(--pink); }
.lockup .play-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); margin-left: 6px; padding: 3px 7px; border: 1px solid var(--line); border-radius: 999px; }
.chips { display: flex; gap: 8px; }
.chip { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 5px 10px; }
.chip b { color: var(--ink); }
.chip.ping { color: var(--mute); }

main { max-width: 760px; margin: 0 auto; padding: 0 18px 60px; }
.screen { animation: rise .25s ease-out; }
.screen.centre { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; }
@keyframes rise { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); margin: 0 0 8px; }
.display { font-family: var(--display); text-transform: uppercase; line-height: .9; letter-spacing: .005em; margin: 0; }
h1.display { font-size: clamp(40px, 9vw, 72px); }
.spectrum { background: var(--spectrum); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { color: var(--dim); font-size: 17px; max-width: 56ch; margin: 14px 0 0; }
h2 { font-family: var(--display); text-transform: uppercase; font-size: 26px; margin: 0 0 6px; line-height: .95; }
.hint { color: var(--dim); font-size: 14px; margin: 8px 0 0; }
.hint.tiny { font-size: 12px; color: var(--mute); }
.hero { padding: 18px 0 8px; }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; margin-top: 16px; }
.field { display: block; margin-bottom: 12px; }
.field span { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); margin-bottom: 6px; }
input[type=text] {
  width: 100%; background: var(--void); color: var(--ink); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; font: inherit; font-size: 17px; outline: none;
}
input[type=text]:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,46,154,.18); }
.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.row { display: flex; gap: 10px; flex-wrap: wrap; align-items: stretch; margin-top: 12px; }
.join { display: flex; gap: 8px; flex: 1; min-width: 200px; }
.join input { text-transform: uppercase; font-family: var(--mono); letter-spacing: .2em; }

.btn {
  background: var(--elevated); color: var(--ink); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 18px; cursor: pointer; font-weight: 500; transition: transform .08s ease, background .15s ease;
}
.btn:hover { background: #241C30; }
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--pink); border-color: var(--pink); color: #fff; box-shadow: 0 6px 24px rgba(255,46,154,.28); }
.btn.primary:hover { background: #ff4aa8; }
.btn:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; }
.link { background: none; border: 0; color: var(--pink); cursor: pointer; padding: 0; font: inherit; text-decoration: underline; }

.home-foot { text-align: center; }
.foot { color: var(--mute); font-size: 13px; margin-top: 40px; text-align: center; }

.lobby-top { text-align: center; padding: 14px 0 6px; }
h1.display.code { letter-spacing: .12em; font-size: clamp(56px, 16vw, 110px); }
.counter { font-family: var(--mono); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }
.ready { height: 6px; background: var(--void); border-radius: 999px; margin: 10px 0 14px; overflow: hidden; }
.ready-fill { height: 100%; width: 0; background: var(--spectrum); transition: width .3s ease; }
.players { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 8px; }
.players li { display: flex; align-items: center; gap: 10px; background: var(--elevated); border-radius: 10px; padding: 9px 12px; }
.avatar { width: 30px; height: 30px; border-radius: 50%; display: inline-grid; place-items: center; font-family: var(--display); font-size: 16px; color: #fff; flex: none; }
.players .tag { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); margin-left: auto; }
.players li.off { opacity: .5; }

.count-number { font-size: clamp(120px, 40vw, 260px); background: var(--spectrum); -webkit-background-clip: text; background-clip: text; color: transparent; }

.timer { position: relative; height: 8px; background: var(--surface); border-radius: 999px; overflow: hidden; margin: 6px 0 16px; }
.timer-fill { height: 100%; width: 100%; background: var(--spectrum); transform-origin: left; }
.timer-count { position: absolute; right: 0; top: 12px; font-family: var(--mono); font-size: 12px; color: var(--dim); }
.prompt { font-family: var(--display); text-transform: uppercase; font-size: clamp(24px, 5.6vw, 36px); line-height: .95; margin: 14px 0 6px; }
.stage { margin: 14px 0; display: grid; place-items: center; }
.stage img { max-width: 100%; max-height: 42vh; border-radius: 12px; background: var(--surface); box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.stage.small img { max-height: 110px; border-radius: 50%; width: 110px; height: 110px; object-fit: contain; background: var(--surface); padding: 6px; }
.stage.small.thumb img { border-radius: 10px; width: auto; height: 110px; padding: 0; object-fit: cover; }

.options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
@media (max-width: 480px) { .options { grid-template-columns: 1fr; } }
.opt {
  display: flex; align-items: center; gap: 12px; text-align: left; width: 100%;
  background: var(--surface); color: var(--ink); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 12px; cursor: pointer; min-height: 62px; position: relative;
  transition: transform .08s ease, border-color .15s ease, background .15s ease;
}
.opt:hover { border-color: var(--purple); }
.opt:active { transform: scale(.985); }
.opt img { width: 54px; height: 54px; border-radius: 8px; object-fit: cover; flex: none; background: var(--elevated); }
.opt img.logo { border-radius: 50%; object-fit: contain; padding: 3px; }
.opt .flag { font-size: 30px; width: 54px; text-align: center; flex: none; }
.opt .txt { display: flex; flex-direction: column; min-width: 0; }
.opt .lbl { font-weight: 500; line-height: 1.2; }
.opt .sub { color: var(--dim); font-size: 13px; line-height: 1.2; margin-top: 2px; }
.opt.picked { border-color: var(--pink); background: #1F1226; box-shadow: 0 0 0 3px rgba(255,46,154,.2); }
.opt.right { border-color: var(--up); background: #10231A; }
.opt.wrong { border-color: var(--down); background: #2A1518; }
.opt:disabled { cursor: default; }
.opt .num { position: absolute; right: 10px; top: 10px; width: 26px; height: 26px; border-radius: 50%; background: var(--pink); color: #fff; font-family: var(--display); display: grid; place-items: center; font-size: 15px; }
.opt.right .num { background: var(--up); }
.opt.wrong .num { background: var(--down); }

.lock-strip { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; min-height: 26px; }
.lock { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--dim); background: var(--surface); border-radius: 999px; padding: 4px 10px 4px 4px; }
.lock i { width: 18px; height: 18px; border-radius: 50%; display: inline-block; }

.reveal-head { display: flex; gap: 14px; align-items: center; }
.reveal-head .prompt { margin: 0; font-size: clamp(22px, 5.4vw, 32px); }
.reveal-img { width: 112px; height: 84px; border-radius: 10px; object-fit: cover; flex: none; background: var(--surface); }
.reveal-img.logo { width: 84px; height: 84px; border-radius: 50%; object-fit: contain; padding: 4px; }
.fact { color: var(--dim); margin: 12px 0 0; font-size: 15px; padding: 0 2px; }
.your-result { margin: 16px 0 4px; font-family: var(--display); text-transform: uppercase; font-size: 28px; line-height: 1; }
.your-result .pts { color: var(--pink); }
.your-result .miss { color: var(--down); }
.your-result small { display: block; font-family: var(--mono); text-transform: none; font-size: 12px; color: var(--dim); margin-top: 6px; letter-spacing: .04em; }
.reveal-progress { height: 4px; background: var(--surface); border-radius: 999px; margin: 0 0 14px; overflow: hidden; }
.reveal-progress div { height: 100%; width: 100%; background: var(--spectrum); transform-origin: left; }
#nextBtn { margin-top: 14px; }

.board { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.board li { display: flex; align-items: center; gap: 10px; background: var(--surface); border-radius: 10px; padding: 8px 12px; }
.board .rank { font-family: var(--mono); color: var(--mute); width: 24px; font-size: 13px; }
.board .name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.board .name.me { color: var(--pink); }
.board .score { font-family: var(--mono); font-size: 14px; }
.board .delta { font-family: var(--mono); font-size: 11px; color: var(--up); width: 52px; text-align: right; }
.board li.off { opacity: .5; }

.podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; align-items: end; margin: 18px 0 14px; }
.podium .step { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 14px 10px; text-align: center; }
.podium .step.first { border-color: var(--pink); background: #1B1120; padding-top: 24px; }
.podium .step .name { font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.podium .step .score { font-family: var(--display); font-size: 28px; }
.podium .step .place { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--dim); text-transform: uppercase; }
.recap { margin-top: 22px; color: var(--dim); }
.recap summary { cursor: pointer; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.recap ol { padding-left: 20px; font-size: 14px; }
.recap li { margin: 8px 0; }
.recap b { color: var(--ink); font-weight: 500; }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); background: var(--elevated); color: var(--ink); border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; font-size: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.5); max-width: 90vw; z-index: 10; }

/* Buttons that carry the game somewhere. WhatsApp green is theirs, used
   only on the button that opens WhatsApp. */
.btn.wa { background: #25D366; border-color: #25D366; color: #06210f; font-weight: 600; }
.btn.wa:hover { background: #3ee07a; }
.btn.big { padding: 14px 22px; font-size: 17px; }
.played-line { font-family: var(--display); text-transform: uppercase; font-size: 28px; line-height: .95; margin: 0 0 10px; }
.played-line .pts { color: var(--pink); }
.hint.mono { font-family: var(--mono); font-size: 12px; word-break: break-all; }

/* The muted clip. The YouTube embed is scaled up inside a cropping box so
   its own top bar (the title, which is the answer) and bottom edge sit
   outside the visible area, and pointer events are off so nothing can be
   clicked, paused or unmuted. 16:9 box, 1.45x scale. */
.clip { position: relative; margin: 14px 0; }
.clip-crop { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 12px; background: #000; box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.clip-frame { position: absolute; inset: 0; pointer-events: none; }
.clip-frame iframe { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; transform: translate(-50%, -50%) scale(1.45); border: 0; pointer-events: none; }
.clip-timer { position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: rgba(8,7,12,.6); }
.clip-timer div { height: 100%; width: 100%; background: var(--spectrum); transform-origin: left; }
.options-wrap { position: relative; margin-top: 14px; }
.options-wrap .options { margin-top: 0; position: relative; }
.options-timer { position: absolute; inset: 0; border-radius: 12px; overflow: hidden; pointer-events: none; }
.options-timer div { height: 100%; width: 100%; background: linear-gradient(90deg, rgba(255,46,154,.22), rgba(155,77,255,.22)); transform-origin: left; }
.opt { background: rgba(20,16,28,.82); }
.clip-badge { position: absolute; right: 10px; top: 10px; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; background: rgba(8,7,12,.75); color: var(--dim); padding: 4px 8px; border-radius: 999px; pointer-events: none; }

.rank-line { font-size: 17px; color: var(--ink); margin: 8px 0 0; }
.rank-line b { color: var(--pink); }
.share-block { margin-top: 16px; }
.share-block h2 { font-size: 22px; }
.share-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.share-icon { width: 52px; height: 52px; border-radius: 14px; border: 1px solid var(--line); background: var(--elevated); color: var(--ink); display: grid; place-items: center; cursor: pointer; padding: 0; }
.share-icon svg { width: 26px; height: 26px; fill: currentColor; }
.share-icon:hover { background: #241C30; }
.share-icon.wa { background: #25D366; border-color: #25D366; color: #06210f; }
.share-icon.ms { background: #0084FF; border-color: #0084FF; color: #fff; }
.share-icon.fb { background: #1877F2; border-color: #1877F2; color: #fff; }
.share-icon.ig { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); border-color: transparent; color: #fff; }
.subscribe-block { margin-top: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.tomorrow { font-family: var(--display); text-transform: uppercase; font-size: 24px; line-height: .95; margin: 0 0 12px; }
.sub-tabs { display: inline-flex; background: var(--void); border-radius: 999px; padding: 3px; margin-bottom: 10px; }
.sub-tab { border: 0; background: none; color: var(--dim); padding: 7px 14px; border-radius: 999px; cursor: pointer; font-size: 14px; }
.sub-tab.on { background: var(--elevated); color: var(--ink); }
.sub-row { display: flex; gap: 8px; }
.sub-row input { flex: 1; min-width: 0; }
.sub-country { width: 92px; flex: none; padding: 12px 8px; font-family: var(--mono); font-size: 14px; }
.playlist-btn { display: block; text-align: center; text-decoration: none; margin: 0 0 10px; }
.songs-card { margin-top: 16px; }
.songs-card h2, .recap-list + h2 { margin-bottom: 8px; }
.songs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.songs li a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 6px 10px 6px 6px; }
.songs li a:hover { background: var(--elevated); }
.songs .thumb { position: relative; width: 72px; height: 54px; flex: none; border-radius: 7px; overflow: hidden; background: var(--void); }
.songs .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.songs .thumb::after { content: ''; position: absolute; left: 50%; top: 50%; width: 26px; height: 26px; margin: -13px 0 0 -13px; border-radius: 50%; background: rgba(8,7,12,.72) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23F5F4F7' d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/14px no-repeat; box-shadow: 0 0 0 1.5px rgba(255,255,255,.35); }
.songs .txt { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.songs .lbl { font-weight: 500; line-height: 1.2; }
.songs .sub { color: var(--dim); font-size: 13px; line-height: 1.2; margin-top: 2px; }
.recap-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; counter-reset: q; }
.recap-list li { display: grid; grid-template-columns: 22px 1fr; gap: 8px; font-size: 14px; }
.recap-list li::before { counter-increment: q; content: counter(q); font-family: var(--mono); font-size: 12px; color: var(--mute); padding-top: 2px; }
.recap-list .q { color: var(--dim); line-height: 1.3; }
.recap-list .a { color: var(--ink); font-weight: 500; margin-top: 2px; }
.recap-list .you { font-family: var(--mono); font-size: 12px; margin-top: 2px; }
.recap-list .you.right { color: var(--up); }
.recap-list .you.wrong { color: var(--down); }
.recap-list .you.none { color: var(--mute); }
.more-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.more-links a { display: block; background: var(--elevated); border-radius: 10px; padding: 10px 12px; color: var(--ink); text-decoration: none; }
.more-links a:hover { background: #241C30; }
.more-links .sub { color: var(--dim); font-size: 13px; display: block; }
select { width: 100%; background: var(--void); color: var(--ink); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font: inherit; font-size: 16px; }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); background: var(--elevated); color: var(--ink); border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; font-size: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.5); max-width: 90vw; z-index: 10; }

/* Buttons that carry the game somewhere. WhatsApp green is theirs, used
   only on the button that opens WhatsApp. */
.btn.wa { background: #25D366; border-color: #25D366; color: #06210f; font-weight: 600; }
.btn.wa:hover { background: #3ee07a; }
.btn.big { padding: 14px 22px; font-size: 17px; }
.played-line { font-family: var(--display); text-transform: uppercase; font-size: 28px; line-height: .95; margin: 0 0 10px; }
.played-line .pts { color: var(--pink); }
.hint.mono { font-family: var(--mono); font-size: 12px; word-break: break-all; }

/* The muted clip. The YouTube embed is scaled up inside a cropping box so
   its own top bar (the title, which is the answer) and bottom edge sit
   outside the visible area, and pointer events are off so nothing can be
   clicked, paused or unmuted. 16:9 box, 1.45x scale. */
.clip { position: relative; margin: 14px 0; }
.clip-crop { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 12px; background: #000; box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.clip-frame { position: absolute; inset: 0; pointer-events: none; }
.clip-frame iframe { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; transform: translate(-50%, -50%) scale(1.45); border: 0; pointer-events: none; }
.clip-timer { position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: rgba(8,7,12,.6); }
.clip-timer div { height: 100%; width: 100%; background: var(--spectrum); transform-origin: left; }
.options-wrap { position: relative; margin-top: 14px; }
.options-wrap .options { margin-top: 0; position: relative; }
.options-timer { position: absolute; inset: 0; border-radius: 12px; overflow: hidden; pointer-events: none; }
.options-timer div { height: 100%; width: 100%; background: linear-gradient(90deg, rgba(255,46,154,.22), rgba(155,77,255,.22)); transform-origin: left; }
.opt { background: rgba(20,16,28,.82); }
.clip-badge { position: absolute; right: 10px; top: 10px; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; background: rgba(8,7,12,.75); color: var(--dim); padding: 4px 8px; border-radius: 999px; pointer-events: none; }

.rank-line { font-size: 18px; color: var(--ink); margin: 10px 0 0; }
.rank-line b { color: var(--pink); }
.share-card { border-color: #2A1A38; }
.songs { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.songs li a { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); background: var(--elevated); border-radius: 10px; padding: 8px 10px; }
.songs li a:hover { background: #241C30; }
.songs img { width: 64px; height: 48px; border-radius: 6px; object-fit: cover; flex: none; background: var(--void); }
.songs .txt { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.songs .lbl { font-weight: 500; line-height: 1.2; }
.songs .sub { color: var(--dim); font-size: 13px; }
.songs .go { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); flex: none; }

/* The picture round: four artists, two by two. */
.options.pics { grid-template-columns: 1fr 1fr; }
.opt.pic { flex-direction: column; align-items: stretch; gap: 8px; padding: 8px; min-height: 0; }
.opt.pic img { width: 100%; height: auto; aspect-ratio: 1 / 1; border-radius: 10px; object-fit: cover; }
.opt.pic .lbl { text-align: center; font-weight: 500; line-height: 1.2; padding-bottom: 2px; }
.reveal-img.square { width: 84px; height: 84px; object-fit: cover; }
