/* ============================================================
   TOKENS & BASE
   ============================================================ */
:root {
  --bg:            #07080f;
  --surface:       rgba(255 255 255 / 0.05);
  --border:        rgba(255 255 255 / 0.09);
  --border-bright: rgba(255 255 255 / 0.18);
  --amber:         #f59e0b;
  --amber-glow:    rgba(245 158 11 / 0.35);
  --emerald:       #10b981;
  --emerald-glow:  rgba(16 185 129 / 0.35);
  --rose:          #f43f5e;
  --rose-glow:     rgba(244 63 94 / 0.35);
  --text-muted:    rgba(255 255 255 / 0.45);
}

* { box-sizing: border-box; }

body {
  background: var(--bg);
  color: #fff;
  font-family: 'Outfit', system-ui, sans-serif;
}

/* ============================================================
   APP ROOT — background canvas
   ============================================================ */
#app-root {
  position: relative;
  min-height: 100vh;
  /* dot-grid + ambient glows layered in one declaration */
  background:
    radial-gradient(circle at 1px 1px, rgba(255 255 255 / 0.038) 1px, transparent 0),
    radial-gradient(ellipse 110% 55% at 50% -5%,  rgba(109 40 217 / 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 70%  40% at 15% 100%, rgba(30  64 175 / 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70%  40% at 85% 100%, rgba(109 40 217 / 0.06) 0%, transparent 60%),
    var(--bg);
  background-size: 28px 28px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  animation: ambientPulse 22s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  0%   { background-position: 0px 0px,   0% 50%, 0% 50%, 0% 50%, 0% 50%; }
  100% { background-position: 28px 28px, 100% 50%, 100% 50%, 100% 50%, 100% 50%; }
}

/* ============================================================
   VIEW LAYER (animation system)
   ============================================================ */
.view-layer.view-visible { opacity: 1; }

#players:not(:empty) + #players-empty { display: none; }

/* ============================================================
   CONNECTION BADGE
   ============================================================ */
.connection-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   GAME LOGO
   ============================================================ */
.game-logo {
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(130deg, #fbbf24 0%, #f97316 55%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(245 158 11 / 0.45));
  line-height: 1;
}

.game-logo-small {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(130deg, #fbbf24 0%, #f97316 60%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(245 158 11 / 0.4));
  flex-shrink: 0;
  line-height: 1;
}

/* ============================================================
   LOBBY HEADER
   ============================================================ */
.lobby-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   IN-GAME HEADER
   ============================================================ */
.game-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.scoreboard-list {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ============================================================
   SCORE CARDS
   ============================================================ */
.score-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.6rem 1.5rem;
  border-radius: 0.875rem;
  border: 1.5px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  min-width: 7.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.score-card > span:first-child {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: rgba(255 255 255 / 0.5) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.score-card.is-active {
  border-color: var(--amber);
  box-shadow: 0 0 24px var(--amber-glow), inset 0 0 16px rgba(245 158 11 / 0.06);
  animation: activePlayerPulse 2.5s ease-in-out infinite;
}

.score-value {
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  line-height: 1;
  color: var(--amber) !important;
  -webkit-text-fill-color: var(--amber) !important;
}

.score-card.score-pop .score-value {
  animation: scorePop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.score-float {
  position: absolute;
  top: 0;
  right: 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--amber);
  pointer-events: none;
}

@keyframes activePlayerPulse {
  0%, 100% { box-shadow: 0 0 18px var(--amber-glow); }
  50%       { box-shadow: 0 0 36px rgba(245 158 11 / 0.55); }
}

/* ============================================================
   LOBBY VIEW
   ============================================================ */
.lobby-hero {
  text-align: center;
}

.lobby-message {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: rgba(255 255 255 / 0.9);
  line-height: 1.25;
  max-width: 42rem;
}

.section-label {
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

.empty-hint {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.25rem;
  color: rgba(255 255 255 / 0.2);
}

/* Lobby player badges */
.lobby-player {
  position: relative;
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem;
  padding: 0.75rem 1.5rem 0.75rem 0.875rem !important;
  border-radius: 999px !important;
  border: 1.5px solid var(--border-bright) !important;
  background: rgba(255 255 255 / 0.07) !important;
  backdrop-filter: blur(16px);
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.lobby-player::before {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--player-color, #a855f7);
  box-shadow: 0 0 10px var(--player-color, #a855f7);
  flex-shrink: 0;
}

#players li:nth-child(1)  { --player-color: #e21b3c; }
#players li:nth-child(2)  { --player-color: #1368ce; }
#players li:nth-child(3)  { --player-color: #d89e00; }
#players li:nth-child(4)  { --player-color: #26890c; }
#players li:nth-child(5)  { --player-color: #a855f7; }
#players li:nth-child(6)  { --player-color: #f97316; }
#players li:nth-child(7)  { --player-color: #06b6d4; }
#players li:nth-child(8)  { --player-color: #ec4899; }

/* ============================================================
   BOARD VIEW
   ============================================================ */
.board-message {
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(251 191 36 / 0.95);
  letter-spacing: 0.02em;
}

/* ============================================================
   CATEGORY GRID & TILES
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
  align-content: center;
}

.category-tile {
  --cat-color: #7c3aed;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 7.5rem;
  padding: 1.25rem 1rem;
  text-align: center;
  border-radius: 0.875rem;
  border: 1.5px solid rgba(255 255 255 / 0.07);
  background: rgba(255 255 255 / 0.04);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255 255 255 / 0.92);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s ease,
    filter 0.4s ease;
}

.category-tile-title {
  display: block;
  max-width: 100%;
}

/* Colored top accent bar */
.category-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cat-color);
  border-radius: 0.875rem 0.875rem 0 0;
}

/* Subtle color wash from the accent */
.category-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cat-color);
  opacity: 0.06;
  pointer-events: none;
}

/* 8-color rotation */
.category-tile:nth-child(8n + 1) { --cat-color: #7c3aed; }
.category-tile:nth-child(8n + 2) { --cat-color: #2563eb; }
.category-tile:nth-child(8n + 3) { --cat-color: #0891b2; }
.category-tile:nth-child(8n + 4) { --cat-color: #059669; }
.category-tile:nth-child(8n + 5) { --cat-color: #d97706; }
.category-tile:nth-child(8n + 6) { --cat-color: #dc2626; }
.category-tile:nth-child(8n + 7) { --cat-color: #db2777; }
.category-tile:nth-child(8n + 0) { --cat-color: #4f46e5; }

.category-tile.board-enter {
  animation: boardEnter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.category-tile.is-used {
  transform: scale(0.92);
  border-color: rgba(255 255 255 / 0.04);
  background: rgba(15 23 42 / 0.88);
  box-shadow: inset 0 0 0 200vmax rgba(0 0 0 / 0.52);
  pointer-events: none;
}

.category-tile.is-used::before {
  opacity: 0.12;
  background: rgb(100 116 139);
}

.category-tile.is-used::after {
  opacity: 0;
}

.category-tile.is-used .category-tile-title {
  position: relative;
  z-index: 1;
  color: rgb(100 116 139);
  text-decoration: line-through;
  text-decoration-color: rgb(71 85 105);
  text-decoration-thickness: 2px;
}

.category-tile-meta {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.category-tile-meta.is-correct {
  color: #4ade80;
}

.category-tile-meta.is-wrong {
  color: #f87171;
}

/* ============================================================
   QUESTION VIEW
   ============================================================ */
.question-category-badge {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.question-title {
  max-width: 54rem;
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
}

/* ============================================================
   ANSWER GRID & TILES  (Kahoot-style)
   ============================================================ */
.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  counter-reset: answer;
  list-style: none;
  padding: 0;
  margin: 0;
}

.answer-tile {
  --tile-bg:     rgba(30 27 75 / 0.6);
  --tile-border: rgba(255 255 255 / 0.1);
  --letter-bg:   rgba(255 255 255 / 0.12);

  counter-increment: answer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 5.5rem;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  border-radius: 0.875rem;
  border: 2px solid var(--tile-border);
  background: var(--tile-bg);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(8px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* Letter badge A / B / C / D */
.answer-tile::before {
  content: counter(answer, upper-alpha);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--letter-bg);
  font-size: 0.9rem;
  font-weight: 900;
  color: rgba(255 255 255 / 0.7);
  flex-shrink: 0;
}

/* Kahoot-style per-tile colors */
.answer-tile:nth-child(1) {
  --tile-bg:     rgba(226 27  60  / 0.22);
  --tile-border: rgba(226 27  60  / 0.45);
  --letter-bg:   rgba(226 27  60  / 0.4);
}
.answer-tile:nth-child(2) {
  --tile-bg:     rgba(19  104 206 / 0.22);
  --tile-border: rgba(19  104 206 / 0.45);
  --letter-bg:   rgba(19  104 206 / 0.4);
}
.answer-tile:nth-child(3) {
  --tile-bg:     rgba(216 158 0   / 0.22);
  --tile-border: rgba(216 158 0   / 0.45);
  --letter-bg:   rgba(216 158 0   / 0.4);
}
.answer-tile:nth-child(4) {
  --tile-bg:     rgba(38  137 12  / 0.22);
  --tile-border: rgba(38  137 12  / 0.45);
  --letter-bg:   rgba(38  137 12  / 0.4);
}

.answer-tile img {
  max-height: 8rem;
  max-width: 100%;
  border-radius: 0.5rem;
  object-fit: contain;
}

/* Answer states */
.answer-tile.is-picked {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

.answer-tile.is-correct {
  border-color: var(--emerald);
  background: rgba(16 185 129 / 0.22);
  box-shadow: 0 0 24px var(--emerald-glow);
  animation: revealCorrect 0.6s ease;
}

.answer-tile.is-wrong {
  border-color: var(--rose);
  background: rgba(244 63 94 / 0.18);
  box-shadow: 0 0 16px var(--rose-glow);
  animation: revealWrong 0.55s ease;
}

/* ============================================================
   RESULTS VIEW
   ============================================================ */
.results-title-el {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.025em;
  line-height: 1;
  background: linear-gradient(130deg, #fbbf24 0%, #f97316 55%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(245 158 11 / 0.55));
}

.results-message-el {
  max-width: 40rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255 255 255 / 0.75);
  line-height: 1.4;
}

/* Results score cards (class set by JS) */
.results-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.75rem 2.5rem !important;
  border-radius: 1rem !important;
  border: 1.5px solid var(--border-bright) !important;
  background: rgba(255 255 255 / 0.06) !important;
  backdrop-filter: blur(16px);
  text-align: center;
  min-width: 10rem;
}

.results-card > span:first-child {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255 255 255 / 0.55);
}

.results-card > span:last-child {
  font-size: 3.5rem !important;
  font-weight: 800 !important;
  color: var(--amber) !important;
  line-height: 1;
}

/* ============================================================
   REVEAL OVERLAY
   ============================================================ */
.reveal-banner {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  pointer-events: none;
  background: rgba(0 0 0 / 0.72);
  backdrop-filter: blur(6px);
  overflow-y: auto;
}

.reveal-panel {
  width: min(52rem, 100%);
  max-height: min(88vh, 100%);
  overflow-y: auto;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 4vw, 2.75rem);
  border-radius: 1.25rem;
  border: 1.5px solid var(--border);
  background: rgba(10 11 20 / 0.92);
  backdrop-filter: blur(24px);
  box-shadow: 0 32px 80px rgba(0 0 0 / 0.7);
}

.reveal-banner.is-correct .reveal-panel {
  border-color: rgba(16 185 129 / 0.55);
  box-shadow:
    0 0 0 1px rgba(16 185 129 / 0.2),
    0 32px 80px rgba(0 0 0 / 0.7);
}

.reveal-banner.is-wrong .reveal-panel {
  border-color: rgba(244 63 94 / 0.5);
  box-shadow:
    0 0 0 1px rgba(244 63 94 / 0.15),
    0 32px 80px rgba(0 0 0 / 0.7);
}

.reveal-verdict {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.reveal-banner.is-correct .reveal-verdict {
  color: var(--emerald);
  text-shadow: 0 0 32px var(--emerald-glow);
}

.reveal-banner.is-wrong .reveal-verdict {
  color: var(--rose);
  text-shadow: 0 0 24px var(--rose-glow);
}

.reveal-stats-caption {
  margin: 0 0 0.875rem;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245 158 11 / 0.8);
}

.reveal-stats-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  margin-bottom: 1.25rem;
}

.reveal-stat { text-align: center; }

.reveal-stat-value {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--emerald);
  line-height: 1.1;
}

.reveal-stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255 255 255 / 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.reveal-stats-explanation {
  margin: 0 0 1rem;
  text-align: center;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  line-height: 1.5;
  color: rgba(226 232 240 / 0.9);
}

.reveal-stats-explanation img {
  display: block;
  margin: 0.75rem auto 0;
  max-height: 8rem;
  max-width: 100%;
  border-radius: 0.5rem;
  object-fit: contain;
}

.reveal-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.5rem 1rem;
}

.reveal-breakdown-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 0.15rem 0.65rem;
  align-items: center;
  padding: 0.5rem 0.625rem;
  border-radius: 0.625rem;
  background: rgba(255 255 255 / 0.04);
  border: 1px solid rgba(255 255 255 / 0.06);
}

.reveal-breakdown-label {
  grid-column: 1;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(203 213 225 / 0.9);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reveal-breakdown-meta {
  grid-column: 2;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(148 163 184 / 0.8);
  white-space: nowrap;
}

.reveal-breakdown-bar {
  grid-column: 1 / -1;
  height: 0.375rem;
  border-radius: 9999px;
  background: rgba(255 255 255 / 0.08);
  overflow: hidden;
}

.reveal-breakdown-fill {
  height: 100%;
  border-radius: 9999px;
  background: rgba(255 255 255 / 0.2);
  transition: width 0.5s ease;
}

.reveal-breakdown-row.is-correct .reveal-breakdown-fill {
  background: linear-gradient(90deg, #059669, #10b981);
}

.reveal-breakdown-row.is-picked:not(.is-correct) .reveal-breakdown-fill {
  background: rgba(244 63 94 / 0.75);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes boardEnter {
  from { opacity: 0; transform: scale(0.6) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes scorePop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); color: #fbbf24; }
  100% { transform: scale(1); }
}

@keyframes revealCorrect {
  0%   { transform: scale(0.82); opacity: 0.4; }
  55%  { transform: scale(1.06); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes revealWrong {
  0%, 100%   { transform: translateX(0); }
  20%, 60%   { transform: translateX(-14px); }
  40%, 80%   { transform: translateX(14px); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
/* ============================================================
   AUDIO UI
   ============================================================ */
.audio-unlock {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(7 8 15 / 0.92);
  backdrop-filter: blur(8px);
}

.audio-unlock.is-hidden {
  display: none;
}

.audio-unlock-panel {
  max-width: 28rem;
  text-align: center;
  padding: 2rem 2.25rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border-bright);
  background: rgba(255 255 255 / 0.06);
  box-shadow: 0 24px 80px rgba(0 0 0 / 0.45);
}

.audio-unlock-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.audio-unlock-hint {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.audio-unlock-btn {
  font: inherit;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #0f172a;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 0 24px var(--amber-glow);
}

.audio-unlock-btn:hover {
  filter: brightness(1.06);
}

.audio-mute-btn {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: rgba(255 255 255 / 0.06);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.audio-mute-btn:hover {
  border-color: var(--border-bright);
  background: rgba(255 255 255 / 0.1);
}

.audio-mute-btn.is-muted {
  opacity: 0.55;
}

@media (prefers-reduced-motion: reduce) {
  #app-root { animation: none; }

  .score-card.is-active { animation: none; box-shadow: 0 0 20px var(--amber-glow); }

  .category-tile.board-enter,
  .score-card.score-pop .score-value,
  .answer-tile.is-correct,
  .answer-tile.is-wrong,
  .reveal-banner,
  .reveal-panel { animation: none !important; }
}
