/* 蓝焰 · 属于我们的世界 — 手机优先，简洁不花哨 */

:root {
  --blue: #6eb5ff;
  --blue-bright: #a8d4ff;
  --blue-dim: #4d9ae8;
  --overlay: rgba(6, 14, 32, 0.62);
  --card-bg: rgba(10, 20, 40, 0.78);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  color: var(--blue);
  overflow-x: hidden;
  background: #0a1220;
}

/* 厌恶 / 拒绝：深蓝底，隐藏二次元背景与自介 */
body.mode-clean {
  background: #050c18;
}

body.mode-clean .anime-only {
  display: none !important;
}

/* —— 背景（用 img 铺满，比 CSS 背景更清晰，不模糊处理） —— */
.bg-img {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: var(--overlay);
  pointer-events: none;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

#particles canvas {
  pointer-events: none !important;
}

/* —— 水印 —— */
.watermark-layer {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='120'%3E%3Ctext x='10' y='60' fill='%234da6ff' font-size='18' font-family='sans-serif' transform='rotate(-25 50 50)'%3E@蓝焰%3C/text%3E%3Ctext x='90' y='100' fill='%234da6ff' font-size='14' font-family='sans-serif' transform='rotate(-25 120 80)'%3E蓝焰%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
}

.bgm-toggle {
  position: fixed;
  top: max(0.65rem, env(safe-area-inset-top));
  left: max(0.65rem, env(safe-area-inset-left));
  z-index: 120;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(147, 197, 253, 0.65);
  background: rgba(15, 23, 42, 0.82);
  color: #a8d4ff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.bgm-toggle:hover {
  background: rgba(30, 58, 95, 0.92);
  color: #fff;
}

.bgm-toggle[data-bgm-mode="5"] {
  border-color: rgba(253, 186, 116, 0.75);
}

/* —— 统一文字：蓝字 + 明显黑描边 + 向右阴影 —— */
.lanyan-text {
  color: var(--blue-bright);
  font-weight: 500;
  -webkit-text-stroke: 1.5px #000;
  paint-order: stroke fill;
  text-shadow:
    -1.5px 0 0 #000,
    1.5px 0 0 #000,
    0 -1.5px 0 #000,
    0 1.5px 0 #000,
    3px 0 0 #000,
    4px 0 0 rgba(0, 0, 0, 0.85);
  line-height: 1.6;
}

.intro-caption {
  text-align: center;
  width: 100%;
  margin-bottom: 0.35rem;
}

.lanyan-text-sm {
  font-size: clamp(0.85rem, 3.2vw, 0.95rem);
}

.lanyan-text-md {
  font-size: clamp(1rem, 4vw, 1.15rem);
}

.lanyan-text-lg {
  font-size: clamp(1.1rem, 4.5vw, 1.35rem);
}

.lanyan-text-xl {
  font-size: clamp(1.25rem, 5vw, 1.6rem);
}

@media (max-width: 767px) {
  .app {
    padding: 1.35rem 1rem calc(5rem + var(--safe-bottom));
  }

  .lanyan-text-sm {
    font-size: clamp(1rem, 4.2vw, 1.12rem);
  }

  .lanyan-text-md {
    font-size: clamp(1.14rem, 4.8vw, 1.32rem);
  }

  .lanyan-text-lg {
    font-size: clamp(1.26rem, 5.4vw, 1.52rem);
  }

  .lanyan-text-xl {
    font-size: clamp(1.4rem, 5.8vw, 1.78rem);
  }

  .btn {
    font-size: clamp(1.08rem, 4.4vw, 1.22rem);
    min-height: 48px;
    padding: 0.65rem 1rem;
  }

  .check-row {
    font-size: clamp(1.02rem, 4.2vw, 1.16rem);
  }

  .card {
    padding: 1.1rem 1rem;
  }

  #screen-contact .card {
    margin-top: 0.25rem;
  }
}

/* —— 主容器 —— */
.app {
  position: relative;
  z-index: 10;
  pointer-events: auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem calc(4.5rem + var(--safe-bottom));
}

.screen {
  width: 100%;
  max-width: 520px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  animation: fadeIn 1.2s ease forwards;
}

.screen.active {
  display: flex;
}

#screen-welcome.active {
  flex: 1;
  justify-content: center;
  min-height: calc(100dvh - 4rem);
}

#screen-quiz.active {
  flex: 1;
  justify-content: center;
  width: 100%;
  min-height: calc(100dvh - 4rem);
}

#screen-quiz.active.quiz-has-intro-large {
  justify-content: flex-start;
  overflow-y: auto;
  padding-top: 0.5rem;
}

#screen-quiz.active > .quiz-gate:not(.hidden),
#screen-quiz.active > #quiz-msg-dislike:not(.hidden) {
  width: 100%;
  max-width: 520px;
}

#screen-quiz.active #quiz-intro-block:not(.hidden-block) {
  width: 100%;
  max-width: 520px;
}

.quiz-gate.active-panel,
#quiz-main.is-centered {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

#quiz-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* —— 卡片 / 题目区 —— */
.card {
  width: 100%;
  padding: 1.25rem 1rem;
  background: var(--card-bg);
  border: 1px solid rgba(77, 166, 255, 0.25);
  border-radius: 8px;
  /* 不用模糊滤镜，避免整块区域发糊 */
}

.card-center {
  text-align: center;
}

/* —— 按钮 —— */
.btn {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  border: 2px solid #000;
  border-radius: 6px;
  background: rgba(20, 40, 70, 0.85);
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.btn:first-of-type {
  margin-top: 0;
}

.btn:hover,
.btn:focus-visible {
  background: rgba(40, 70, 110, 0.9);
  outline: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(77, 166, 255, 0.5);
  margin-top: 0.75rem;
}

/* 同一组按钮统一宽度（放大 / 暂时不想看 一样大） */
.stack-btns {
  width: 100%;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stack-btns .btn {
  width: 100%;
  margin-top: 0;
}

#quiz-intro-block.hidden-block {
  display: none !important;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* —— 欢迎页 · 自介图 —— */
.intro-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.intro-img {
  width: 100%;
  height: auto;
  max-height: 55vh;
  object-fit: contain;
  border: 2px solid rgba(77, 166, 255, 0.4);
  border-radius: 6px;
  display: block;
  background: rgba(0, 0, 0, 0.3);
}

.intro-placeholder {
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(77, 166, 255, 0.4);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
  padding: 1rem;
  text-align: center;
}

.skip-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
}

/* —— 弹窗放大自介 —— */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.85);
}

.modal.open {
  display: flex;
  flex-direction: column;
}

.modal-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.modal-intro-panel {
  text-align: center;
  max-width: 100%;
  flex: 1;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0.25rem;
}

.modal img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
  transition: max-height 0.25s ease;
  cursor: zoom-in;
  display: block;
  margin: 0 auto;
}

.modal img.is-full {
  max-height: none;
  max-width: 100%;
  width: auto;
  cursor: zoom-out;
}

.modal-close {
  position: fixed;
  top: max(0.75rem, env(safe-area-inset-top));
  right: max(0.75rem, env(safe-area-inset-right));
  z-index: 120;
  width: 48px;
  height: 48px;
  border: 2px solid #000;
  border-radius: 50%;
  background: rgba(10, 20, 40, 0.95);
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  font-weight: bold;
  -webkit-text-stroke: 1px #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}

.modal-close-bar {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding: 0.65rem 0 0.25rem;
}

.modal-close-text {
  background: rgba(20, 40, 70, 0.95);
  border: 2px solid rgba(77, 166, 255, 0.5);
  color: var(--blue);
  font-weight: 600;
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .modal {
    padding: 0;
    align-items: stretch;
  }

  .modal-shell {
    height: 100dvh;
    padding-top: calc(3.75rem + env(safe-area-inset-top));
    padding-bottom: env(safe-area-inset-bottom);
  }

  .modal img {
    max-height: 52vh;
  }

  .modal img.is-full {
    max-width: 135%;
    width: 135%;
    margin: 0 auto;
  }

  .modal-intro-panel .stack-btns {
    position: sticky;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85) 35%);
    padding: 0.75rem 0 0.5rem;
    margin-top: 0.5rem;
  }
}

/* —— 联系方式页 · 对访客故事的看法 —— */
.contact-list-wrap {
  width: 100%;
  margin-top: 0.75rem;
}

.contact-list-hint {
  opacity: 0.88;
  text-align: center;
  margin: 0;
}

/* —— 访客昵称门禁 —— */
.visitor-gate-card {
  max-width: 420px;
  width: calc(100% - 2rem);
  text-align: left;
}

.visitor-gate-label {
  display: block;
  margin-top: 0.75rem;
  opacity: 0.92;
}

.visitor-gate-input {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  border: 1px solid rgba(77, 166, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #e8f0ff;
  font: inherit;
}

.visitor-gate-input:focus {
  outline: none;
  border-color: var(--blue);
}

.visitor-privacy-note,
.visitor-contact-hint,
.welcome-privacy {
  opacity: 0.88;
  line-height: 1.55;
}

.visitor-gate-error {
  margin-top: 0.5rem;
}

.visitor-gate-error.hidden {
  display: none;
}

.story-reply-block {
  text-align: left;
  padding: 1rem;
}

.story-reply-label {
  opacity: 0.85;
}

.story-reply-quote {
  margin-top: 0.35rem;
  opacity: 0.92;
  font-style: italic;
  word-break: break-word;
}

.story-reply-body {
  margin-top: 0.35rem;
  word-break: break-word;
}

/* —— 新闻看法 · 黑底白字 —— */
#quiz-card.news-opinion-mode {
  background: #000;
  border-color: rgba(255, 255, 255, 0.2);
}

#quiz-card.news-opinion-mode #quiz-title,
#quiz-card.news-opinion-mode .news-opinion-body,
#quiz-card.news-opinion-mode .quiz-helper,
#quiz-card.news-opinion-mode .text-area-input {
  color: #fff;
}

#quiz-card.news-opinion-mode .text-area-input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

#quiz-card.news-opinion-mode .text-area-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.news-opinion-scroll {
  max-height: min(52vh, 420px);
  overflow-y: auto;
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.85rem;
  text-align: left;
  background: #000;
  color: #fff;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-opinion-body {
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.55;
  color: #fff;
}

.news-opinion-figure {
  margin: 0.75rem 0 0;
}

.news-opinion-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid rgba(77, 166, 255, 0.25);
  display: block;
}

/* —— 进度（预留多题） —— */
.progress {
  width: 100%;
  height: 3px;
  background: rgba(77, 166, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--blue);
  transition: width 0.4s ease;
}

.progress-hidden {
  display: none !important;
}

.quiz-helper {
  margin-top: 0.65rem;
  width: 100%;
  font-size: clamp(0.82rem, 3.2vw, 0.92rem);
  font-weight: 500;
  color: rgba(200, 220, 255, 0.78);
  -webkit-text-stroke: 0;
  text-shadow: none;
  line-height: 1.55;
  text-align: center;
}

.quiz-expand {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  text-align: left;
}

.quiz-expand-summary {
  cursor: pointer;
  color: rgba(180, 210, 255, 0.85);
  -webkit-text-stroke: 0;
  text-shadow: none;
  list-style: none;
  user-select: none;
}

.quiz-expand-summary::-webkit-details-marker {
  display: none;
}

.quiz-expand-body {
  margin-top: 0.65rem;
  padding: 0.75rem 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  color: rgba(230, 240, 255, 0.88);
  -webkit-text-stroke: 0;
  text-shadow: none;
  line-height: 1.65;
  text-align: left;
}

/* —— 其他输入 —— */
.other-input {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.6rem;
  border: 2px solid #000;
  border-radius: 6px;
  background: rgba(10, 20, 40, 0.8);
  color: var(--blue);
  font-weight: 600;
  font-size: 1rem;
}

.other-input::placeholder {
  color: rgba(77, 166, 255, 0.5);
}

.hidden {
  display: none !important;
}

.quiz-back {
  width: 100%;
  margin-top: 1rem !important;
}

.quiz-gate .quiz-back {
  margin-top: 0.75rem;
}

.blackout {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
}

.blackout.active {
  display: block;
}

.text-red {
  color: #ff6b6b !important;
  -webkit-text-stroke: 1.5px #000;
}

.block-overlay {
  position: fixed;
  inset: 0;
  z-index: 50000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.75);
}

.block-overlay .card {
  max-width: 520px;
}

.fade-panel {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.fade-panel.is-in {
  opacity: 1;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem;
  margin-top: 0.4rem;
  border: 2px solid rgba(77, 166, 255, 0.35);
  border-radius: 6px;
  background: rgba(10, 20, 40, 0.6);
  cursor: grab;
  user-select: none;
}

.rank-item.dragging {
  opacity: 0.6;
}

.rank-handle {
  color: var(--blue);
  font-weight: bold;
  letter-spacing: -2px;
  cursor: grab;
  padding: 0 0.25rem;
}

.rank-label {
  flex: 1;
  text-align: left;
}

.rank-num {
  font-size: 0.85rem;
  opacity: 0.85;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.5rem;
  text-align: left;
}

.check-row input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* 右上角自介小按钮 */
.intro-mini {
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  max-width: 200px;
  pointer-events: auto;
}

.intro-mini-hint {
  text-align: right;
  font-size: 0.72rem !important;
  line-height: 1.35;
  padding: 0.35rem 0.5rem;
  background: rgba(10, 20, 40, 0.85);
  border-radius: 6px;
  border: 1px solid rgba(77, 166, 255, 0.35);
}

.intro-mini-btn {
  padding: 0.4rem 0.65rem;
  border: 2px solid #000;
  border-radius: 6px;
  background: rgba(20, 40, 70, 0.92);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  -webkit-text-stroke: 1px #000;
}

.intro-arrow-down {
  display: block;
  text-align: right;
  margin-top: 0.2rem;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--blue);
  animation: arrowBounce 1.2s ease infinite;
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.modal-intro-panel .stack-btns {
  margin-top: 1rem;
}

.text-area-input {
  width: 100%;
  min-height: 120px;
  margin-top: 0.75rem;
  padding: 0.65rem;
  border: 2px solid #000;
  border-radius: 6px;
  background: rgba(10, 20, 40, 0.85);
  color: var(--blue);
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

body.is-locked {
  overflow: hidden;
}

body.is-locked .app,
body.is-locked .site-footer,
body.is-locked #particles,
body.is-locked .bg-img,
body.is-locked .modal {
  pointer-events: none !important;
}

/* —— 页脚 —— */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 0.6rem 1rem calc(0.6rem + var(--safe-bottom));
  background: linear-gradient(transparent, rgba(8, 18, 36, 0.75));
  pointer-events: none;
}

.footer-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.footer-lines .lanyan-text {
  font-size: clamp(0.75rem, 3vw, 0.85rem);
  line-height: 1.3;
}

/* —— 联系区占位 —— */
.contact-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-detail {
  display: none;
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  word-break: break-all;
}

.contact-chat-unlock {
  margin-top: 1.25rem;
  padding: 1rem 0.85rem;
  border: 2px solid rgba(248, 113, 113, 0.45);
  border-radius: 10px;
  background: rgba(40, 10, 10, 0.35);
  text-align: center;
}

.contact-chat-unlock-title {
  color: #fca5a5 !important;
  font-weight: 700;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 12px rgba(248, 113, 113, 0.35);
}

.contact-chat-unlock-desc {
  margin-top: 0.65rem;
  opacity: 0.95;
}

.btn-chat-now {
  display: block;
  width: 100%;
  margin-top: 1rem;
  font-size: clamp(1.12rem, 4.8vw, 1.35rem) !important;
  font-weight: 700;
  padding: 0.75rem 1rem !important;
}

.btn-chat-later {
  display: block;
  width: 100%;
  margin-top: 0.55rem;
  opacity: 0.88;
}

.contact-chat-unlock-hint {
  margin-top: 0.65rem;
  opacity: 0.78;
  font-style: italic;
}

.contact-gate-card {
  max-width: 420px;
  width: calc(100% - 2rem);
}

.contact-gate-q {
  margin-top: 0.75rem;
  font-weight: 600;
}

.contact-detail.show {
  display: block;
}

/* —— 电脑端微调 —— */
@media (min-width: 768px) {
  .app {
    padding-top: 2rem;
  }

  .card {
    padding: 1.5rem 1.25rem;
  }

  .intro-img {
    max-height: 50vh;
  }
}

/* —— 题目关键词着色 —— */
.hl-name {
  color: #7ec8ff;
}

.hl-sincere {
  color: #1a4d8c;
}

.hl-accurate {
  color: #2ecc71;
}

.hl-thanks {
  color: #ff8ec8;
}

/* 按钮/选项内关键词（减弱描边对色块的影响） */
.btn .hl-name,
.btn .hl-sincere,
.btn .hl-accurate,
.btn .hl-thanks,
.check-row .hl-name,
.check-row .hl-sincere,
.check-row .hl-accurate,
.check-row .hl-thanks {
  -webkit-text-stroke: 0;
  text-shadow: none;
}

/* —— 友情长文阅读区 —— */
.story-scroll-panel {
  width: 100%;
  max-height: min(58vh, 520px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: #0d0d0d;
  color: #f2f2f2;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  text-align: left;
  line-height: 1.75;
  font-size: clamp(1.05rem, 4.4vw, 1.2rem);
  font-weight: 400;
  -webkit-text-stroke: 0;
  text-shadow: none;
  margin-bottom: 0.75rem;
}

.story-scroll-panel--gate {
  max-height: min(45vh, 400px);
}

.story-scroll-panel .hl-name {
  color: #7ec8ff;
}

.story-scroll-panel .hl-sincere {
  color: #5b9fd4;
}

.story-scroll-panel .hl-accurate {
  color: #5de08a;
}

.story-scroll-panel .hl-thanks {
  color: #ffb3d9;
}

.story-scroll-hint {
  text-align: center;
  margin: 0.5rem 0;
  opacity: 0.9;
}

.story-continue-wrap {
  width: 100%;
  margin-top: 0.5rem;
}

.story-continue-wrap.hidden {
  display: none;
}

#quiz-card .story-scroll-panel br {
  display: block;
  content: "";
  margin-top: 0.65em;
}
