.iqm-game {
  --iqm-ink: #082c35;
  --iqm-teal: #057b77;
  --iqm-aqua: #43c8bd;
  --iqm-cream: #fff8df;
  --iqm-gold: #ffbd2e;
  --iqm-red: #d94b4b;
  color: var(--iqm-ink);
  font-family: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  margin: 24px auto;
  max-width: 760px;
}
.iqm-game * { box-sizing: border-box; }
.iqm-game button, .iqm-game a { font: inherit; }
.iqm-shell {
  background: linear-gradient(155deg, #fffdf1, var(--iqm-cream));
  border: 2px solid rgba(5,123,119,.35);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(8,44,53,.2);
  overflow: hidden;
  padding: clamp(18px, 4vw, 34px);
}
.iqm-header { align-items: center; display: flex; gap: 18px; justify-content: space-between; }
.iqm-eyebrow { color: var(--iqm-teal); font-size: 13px; font-weight: 900; letter-spacing: .13em; margin: 0 0 4px; }
.iqm-header h2 { font-size: clamp(32px, 7vw, 52px); letter-spacing: -.04em; line-height: 1; margin: 0; }
.iqm-header p:not(.iqm-eyebrow) { font-family: system-ui, sans-serif; font-size: 17px; margin: 10px 0 0; }
.iqm-score { align-items: center; background: var(--iqm-ink); border-radius: 50%; color: white; display: flex; flex: 0 0 86px; height: 86px; flex-direction: column; justify-content: center; }
.iqm-score span { font-size: 30px; font-weight: 900; line-height: 1; }
.iqm-score small { color: var(--iqm-gold); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.iqm-progress { background: rgba(8,44,53,.12); border-radius: 99px; height: 10px; margin-top: 24px; overflow: hidden; }
.iqm-progress span { background: linear-gradient(90deg, var(--iqm-aqua), var(--iqm-teal)); border-radius: inherit; display: block; height: 100%; transition: width .35s ease; }
.iqm-round { font-size: 13px; font-weight: 900; letter-spacing: .08em; margin: 10px 0 16px; text-align: right; text-transform: uppercase; }
.iqm-card { animation: iqm-rise .35s ease both; }
.iqm-picture-wrap {
  aspect-ratio: 1 / 1;
  background: #102f36;
  border: 2px solid var(--iqm-teal);
  border-radius: 22px;
  margin-inline: auto;
  max-width: 650px;
  overflow: hidden;
  position: relative;
}
.iqm-picture {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity .25s ease;
  width: 100%;
}
.iqm-picture.iqm-loaded { opacity: 1; }
.iqm-image-loading { animation: iqm-pulse 1s infinite alternate; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.7) 45%, transparent 70%); inset: 0; position: absolute; pointer-events: none; }
.iqm-picture.iqm-loaded + .iqm-image-loading { display: none; }
.iqm-answers { display: grid; gap: 12px; margin-top: 18px; }
.iqm-answer, .iqm-next, .iqm-replay, .iqm-app-link { border-radius: 15px; cursor: pointer; font-weight: 900; min-height: 58px; padding: 13px 18px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.iqm-answer { background: white; border: 2px solid rgba(5,123,119,.45); color: var(--iqm-ink); font-size: clamp(17px, 3vw, 21px); text-align: left; }
.iqm-answer:hover:not(:disabled), .iqm-next:hover, .iqm-replay:hover, .iqm-app-link:hover { box-shadow: 0 8px 18px rgba(8,44,53,.17); transform: translateY(-2px); }
.iqm-answer.is-correct { background: #dff7e9; border-color: #23915b; }
.iqm-answer.is-wrong { background: #ffe2df; border-color: var(--iqm-red); }
.iqm-reveal { animation: iqm-rise .3s ease both; background: white; border: 2px solid var(--iqm-gold); border-radius: 20px; margin-top: 18px; padding: 20px; text-align: center; }
.iqm-result { font-weight: 900; margin: 0 0 8px; }
.iqm-result.is-correct { color: #16784a; }
.iqm-result.is-wrong { color: #a53737; }
.iqm-reveal h3 { font-size: clamp(25px, 5vw, 38px); margin: 0; }
.iqm-meaning { font-family: system-ui, sans-serif; font-size: 18px; margin: 8px 0 18px; }
.iqm-next, .iqm-replay { background: var(--iqm-teal); border: 0; color: white; width: 100%; }
.iqm-finish { animation: iqm-rise .4s ease both; padding: 30px 0 8px; }
.iqm-finish-card { text-align: center; }
.iqm-trophy { align-items: center; background: var(--iqm-gold); border-radius: 50%; color: white; display: inline-flex; font-size: 48px; height: 100px; justify-content: center; margin-bottom: 16px; width: 100px; }
.iqm-finish h3 { font-size: clamp(29px, 6vw, 46px); line-height: 1.08; margin: 8px auto; max-width: 560px; }
.iqm-finish-message { font-family: system-ui, sans-serif; font-size: 19px; margin: 12px auto 24px; }
.iqm-replay { margin-bottom: 12px; }
.iqm-app-link { align-items: center; background: var(--iqm-ink); color: white !important; display: flex; justify-content: center; text-decoration: none !important; }
.iqm-game [hidden] { display: none !important; }
@keyframes iqm-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes iqm-pulse { from { transform: translateX(-70%); } to { transform: translateX(70%); } }
@media (min-width: 620px) {
  .iqm-answers { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .iqm-game { margin: 12px auto; }
  .iqm-shell { border-radius: 22px; padding: 16px; }
  .iqm-score { flex-basis: 68px; height: 68px; }
  .iqm-score span { font-size: 25px; }
}
@media (prefers-reduced-motion: reduce) {
  .iqm-game *, .iqm-game *::before, .iqm-game *::after { animation-duration: .01ms !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
.iqm-game {
  --iqm-ink: #082c35;
  --iqm-teal: #057b77;
  --iqm-aqua: #43c8bd;
  --iqm-cream: #fff8df;
  --iqm-gold: #ffbd2e;
  --iqm-red: #d94b4b;
  color: var(--iqm-ink);
  font-family: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  margin: 24px auto;
  max-width: 760px;
}
.iqm-game * { box-sizing: border-box; }
.iqm-game button, .iqm-game a { font: inherit; }
.iqm-shell {
  background: linear-gradient(155deg, #fffdf1, var(--iqm-cream));
  border: 2px solid rgba(5,123,119,.35);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(8,44,53,.2);
  overflow: hidden;
  padding: clamp(18px, 4vw, 34px);
}
.iqm-header { align-items: center; display: flex; gap: 18px; justify-content: space-between; }
.iqm-eyebrow { color: var(--iqm-teal); font-size: 13px; font-weight: 900; letter-spacing: .13em; margin: 0 0 4px; }
.iqm-header h2 { font-size: clamp(32px, 7vw, 52px); letter-spacing: -.04em; line-height: 1; margin: 0; }
.iqm-header p:not(.iqm-eyebrow) { font-family: system-ui, sans-serif; font-size: 17px; margin: 10px 0 0; }
.iqm-score { align-items: center; background: var(--iqm-ink); border-radius: 50%; color: white; display: flex; flex: 0 0 86px; height: 86px; flex-direction: column; justify-content: center; }
.iqm-score span { font-size: 30px; font-weight: 900; line-height: 1; }
.iqm-score small { color: var(--iqm-gold); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.iqm-progress { background: rgba(8,44,53,.12); border-radius: 99px; height: 10px; margin-top: 24px; overflow: hidden; }
.iqm-progress span { background: linear-gradient(90deg, var(--iqm-aqua), var(--iqm-teal)); border-radius: inherit; display: block; height: 100%; transition: width .35s ease; }
.iqm-round { font-size: 13px; font-weight: 900; letter-spacing: .08em; margin: 10px 0 16px; text-align: right; text-transform: uppercase; }
.iqm-card { animation: iqm-rise .35s ease both; }
.iqm-picture-wrap {
  aspect-ratio: 1 / 1;
  background: #102f36;
  border: 2px solid var(--iqm-teal);
  border-radius: 22px;
  margin-inline: auto;
  max-width: 650px;
  overflow: hidden;
  position: relative;
}
.iqm-picture {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity .25s ease;
  width: 100%;
}
.iqm-picture.iqm-loaded { opacity: 1; }
.iqm-image-loading { animation: iqm-pulse 1s infinite alternate; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.7) 45%, transparent 70%); inset: 0; position: absolute; pointer-events: none; }
.iqm-picture.iqm-loaded + .iqm-image-loading { display: none; }
.iqm-answers { display: grid; gap: 12px; margin-top: 18px; }
.iqm-answer, .iqm-next, .iqm-replay, .iqm-app-link { border-radius: 15px; cursor: pointer; font-weight: 900; min-height: 58px; padding: 13px 18px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.iqm-answer { background: white; border: 2px solid rgba(5,123,119,.45); color: var(--iqm-ink); font-size: clamp(17px, 3vw, 21px); text-align: left; }
.iqm-answer:hover:not(:disabled), .iqm-next:hover, .iqm-replay:hover, .iqm-app-link:hover { box-shadow: 0 8px 18px rgba(8,44,53,.17); transform: translateY(-2px); }
.iqm-answer.is-correct { background: #dff7e9; border-color: #23915b; }
.iqm-answer.is-wrong { background: #ffe2df; border-color: var(--iqm-red); }
.iqm-reveal { animation: iqm-rise .3s ease both; background: white; border: 2px solid var(--iqm-gold); border-radius: 20px; margin-top: 18px; padding: 20px; text-align: center; }
.iqm-result { font-weight: 900; margin: 0 0 8px; }
.iqm-result.is-correct { color: #16784a; }
.iqm-result.is-wrong { color: #a53737; }
.iqm-reveal h3 { font-size: clamp(25px, 5vw, 38px); margin: 0; }
.iqm-meaning { font-family: system-ui, sans-serif; font-size: 18px; margin: 8px 0 18px; }
.iqm-next, .iqm-replay { background: var(--iqm-teal); border: 0; color: white; width: 100%; }
.iqm-finish { animation: iqm-rise .4s ease both; padding: 30px 0 8px; }
.iqm-finish-card { text-align: center; }
.iqm-trophy { align-items: center; background: var(--iqm-gold); border-radius: 50%; color: white; display: inline-flex; font-size: 48px; height: 100px; justify-content: center; margin-bottom: 16px; width: 100px; }
.iqm-finish h3 { font-size: clamp(29px, 6vw, 46px); line-height: 1.08; margin: 8px auto; max-width: 560px; }
.iqm-finish-message { font-family: system-ui, sans-serif; font-size: 19px; margin: 12px auto 24px; }
.iqm-replay { margin-bottom: 12px; }
.iqm-app-link { align-items: center; background: var(--iqm-ink); color: white !important; display: flex; justify-content: center; text-decoration: none !important; }
.iqm-game [hidden] { display: none !important; }
@keyframes iqm-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes iqm-pulse { from { transform: translateX(-70%); } to { transform: translateX(70%); } }
@media (min-width: 620px) {
  .iqm-answers { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .iqm-game { margin: 12px auto; }
  .iqm-shell { border-radius: 22px; padding: 16px; }
  .iqm-score { flex-basis: 68px; height: 68px; }
  .iqm-score span { font-size: 25px; }
}
@media (prefers-reduced-motion: reduce) {
  .iqm-game *, .iqm-game *::before, .iqm-game *::after { animation-duration: .01ms !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}


/* Keep Quick Match readable inside the light game panel, even when the site theme is dark. */
.iqm-game .iqm-header h2 {
  color: var(--iqm-ink) !important;
  text-shadow: none !important;
}
.iqm-game .iqm-header p:not(.iqm-eyebrow) {
  color: #31535a !important;
}
.iqm-game .iqm-round {
  color: var(--iqm-teal) !important;

/* Keep Quick Match readable inside the light game panel, even when the site theme is dark. */
.iqm-game .iqm-header h2 {
  color: var(--iqm-ink) !important;
  text-shadow: none !important;
}
.iqm-game .iqm-header p:not(.iqm-eyebrow) {
  color: #31535a !important;
}
.iqm-game .iqm-round {
  color: var(--iqm-teal) !important;
}
.iqm-game .iqm-progress {
  background: rgba(8, 44, 53, .22) !important;
}
.iqm-game .iqm-reveal h3,
.iqm-game .iqm-meaning,
.iqm-game .iqm-finish h3,
.iqm-game .iqm-finish-message {
  color: var(--iqm-ink) !important;
  text-shadow: none !important;
}

}
.iqm-game .iqm-progress {
  background: rgba(8, 44, 53, .22) !important;
}
.iqm-game .iqm-reveal h3,
.iqm-game .iqm-meaning,
.iqm-game .iqm-finish h3,
.iqm-game .iqm-finish-message {
  color: var(--iqm-ink) !important;
  text-shadow: none !important;
}
.i

/* Keep Quick Match readable inside the light game panel, even when the site theme is dark. */
.iqm-game .iqm-header h2 {
  color: var(--iqm-ink) !important;
  text-shadow: none !important;
}
.iqm-game .iqm-header p:not(.iqm-eyebrow) {
  color: #31535a !important;
}
.iqm-game .iqm-round {
  color: var(--iqm-teal) !important;
}
.iqm-game .iqm-progress {
  background: rgba(8, 44, 53, .22) !important;
}
.iqm-game .iqm-reveal h3,
.iqm-game .iqm-meaning,
.iqm-game .iqm-finish h3,
.iqm-game .iqm-finish-message {
  color: var(--iqm-ink) !important;
  text-shadow: none !important;
}
.i