/**
 * 決?@?? - ???風??修正??
 * 
 * 修正?目?
 * - 減? emoji 使用
 * - 使用 Noto Sans TC 確?繁?中?完整?援
 * - 保????質??
 * - 對話以??方式???
 * - ?入翻??畫
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap');

/* ========================================
   CSS 變數
   ======================================== */
:root {
  /* 紙張?系 */
  --paper-white: #fffef9;
  --paper-cream: #f8f4e8;
  --paper-line: #d4e4f7;
  --paper-edge: #e8e0d0;

  /* 墨水?系 */
  --ink-black: #333;
  --ink-dark: #444;
  --ink-blue: #2563eb;
  --ink-light: #666;

  /* 對話框色?*/
  --bubble-other: #fff;
  --bubble-self: #dcfce7;
  --bubble-system: #fef9c3;

  /* 強調??*/
  --accent-green: #22c55e;
  --accent-red: #ef4444;
  --accent-blue: #3b82f6;

  /* 字? - ?用 Noto Sans TC */
  --font-main: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Microsoft JhengHei', sans-serif;
}

/* ========================================
   ???置
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-black);
  background: linear-gradient(135deg, #e8e0d0 0%, #d4ccc0 100%);
  min-height: 100vh;
}

/* ========================================
   ?戲容器 - 筆???觀
   ======================================== */
#app {
  max-width: 600px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 15px;
}

.notebook {
  background: var(--paper-cream);
  min-height: calc(100vh - 30px);
  border-radius: 3px;
  box-shadow:
    0 0 0 1px var(--paper-edge),
    4px 4px 15px rgba(0, 0, 0, 0.15),
    inset 0 0 80px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

/* 筆???訂? */
.notebook::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e57373;
  opacity: 0.5;
}

.notebook::after {
  content: '';
  position: absolute;
  left: 42px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e57373;
  opacity: 0.3;
}

/* ========================================
   ???面
   ======================================== */
.start-page {
  min-height: calc(100vh - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  perspective: 1000px;
}

.diary-book {
  background: linear-gradient(145deg, #5d4037 0%, #795548 50%, #5d4037 100%);
  padding: 50px 40px;
  border-radius: 4px 12px 12px 4px;
  box-shadow:
    -3px 0 0 #4e342e,
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 0 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.diary-book:hover {
  transform: rotateY(-8deg);
}

/* ???? */
.diary-book::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 15px;
  background: linear-gradient(90deg, #4e342e 0%, #6d4c41 100%);
  border-radius: 3px 0 0 3px;
}

/* ?屬裝飾??*/
.diary-book::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 2px;
}

.diary-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd54f;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 12px;
}

.diary-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

.diary-year {
  font-size: 0.9rem;
  color: rgba(255, 215, 0, 0.6);
  margin-top: 20px;
}

.btn-open {
  margin-top: 30px;
  padding: 14px 40px;
  background: var(--paper-cream);
  border: none;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-dark);
  cursor: pointer;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}

.btn-open:hover {
  transform: translateY(-2px);
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.25);
}

/* 翻??畫 */
@keyframes pageFlip {
  0% {
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0;
  }
}

.page-flip-out {
  animation: pageFlip 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: left center;
}

@keyframes pageFlipIn {
  0% {
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0;
  }

  100% {
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1;
  }
}

.page-flip-in {
  animation: pageFlipIn 0.4s cubic-bezier(0, 0, 0.2, 1) forwards;
  transform-origin: left center;
}

/* ========================================
   任??單??
   ======================================== */
.mission-page {
  padding: 25px 25px 25px 55px;
  min-height: calc(100vh - 30px);
}

.page-header {
  border-bottom: 1px solid var(--paper-line);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.page-date {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 5px;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-blue);
}

/* 積??? */
.score-card {
  background: var(--paper-white);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 25px;
}

.score-card-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-dark);
  margin-bottom: 12px;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.score-item {
  text-align: center;
  padding: 8px 4px;
  background: var(--paper-cream);
  border-radius: 6px;
}

.score-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-blue);
  display: block;
}

.score-name {
  font-size: 0.7rem;
  color: var(--ink-light);
}

/* 章?標? */
.chapter-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-dark);
  margin: 25px 0 8px;
}

.chapter-desc {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 15px;
  padding: 10px;
  background: var(--bubble-system);
  border-radius: 6px;
}

/* 任??表 */
.mission-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mission-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--paper-white);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.mission-item:hover {
  border-color: var(--ink-blue);
  transform: translateX(5px);
}

.mission-item.completed {
  opacity: 0.5;
}

.mission-number {
  width: 28px;
  height: 28px;
  background: var(--ink-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mission-item.completed .mission-number {
  background: var(--accent-green);
}

.mission-info {
  flex: 1;
}

.mission-title {
  font-weight: 500;
  color: var(--ink-dark);
}

.mission-tag {
  font-size: 0.7rem;
  color: var(--ink-light);
  margin-top: 2px;
}

.mission-arrow {
  color: #ccc;
  font-size: 1.2rem;
}

/* ========================================
   ???面
   ======================================== */
.story-page {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 30px);
}

/* ?部?*/
.story-header {
  padding: 12px 15px 12px 55px;
  background: var(--paper-white);
  border-bottom: 1px solid var(--paper-line);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-back {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--ink-light);
  cursor: pointer;
  padding: 5px;
}

.story-title {
  flex: 1;
  font-weight: 500;
  color: var(--ink-dark);
}

.story-score {
  font-size: 0.85rem;
  color: var(--ink-blue);
  font-weight: 500;
}

/* 對話???- ???*/
.story-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 15px 20px 55px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background:
    repeating-linear-gradient(transparent 0px,
      transparent 27px,
      var(--paper-line) 27px,
      var(--paper-line) 28px);
}

/* 訊息?? */
.msg {
  max-width: 85%;
  animation: msgSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes msgFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.msg-other {
  align-self: flex-start;
}

.msg-self {
  align-self: flex-end;
}

.msg-center {
  align-self: center;
  max-width: 90%;
}

/* ?送者??*/
.msg-sender {
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-bottom: 3px;
  margin-left: 5px;
}

/* ? */
.msg-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  line-height: 1.6;
}

.msg-other .msg-bubble {
  background: var(--bubble-other);
  border: 1px solid #e5e5e5;
  border-bottom-left-radius: 4px;
}

.msg-self .msg-bubble {
  background: var(--bubble-self);
  border: 1px solid #bbf7d0;
  border-bottom-right-radius: 4px;
}

/* 系統訊息 */
.msg-system {
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--ink-light);
  background: rgba(0, 0, 0, 0.03);
  border-radius: 20px;
}

/* ?述?? */
.msg-narrative {
  background: var(--paper-white);
  border: 1px solid var(--paper-line);
  border-left: 3px solid var(--ink-blue);
  border-radius: 8px;
  padding: 15px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ?? */
.msg-image {
  background: var(--paper-white);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.msg-image img {
  max-width: 100%;
  border-radius: 6px;
}

.msg-image-caption {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-top: 8px;
}

/* ?思卡??*/
.msg-reflection {
  background: linear-gradient(135deg, var(--paper-white) 0%, #fef9c3 100%);
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: 20px;
}

.reflection-title {
  font-weight: 700;
  color: var(--ink-dark);
  margin-bottom: 12px;
  font-size: 1rem;
}

.reflection-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--ink-dark);
  white-space: pre-wrap;
  margin-bottom: 15px;
}

.reflection-lesson {
  background: var(--paper-white);
  border-left: 3px solid var(--accent-green);
  padding: 12px;
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: var(--ink-light);
}

.score-changes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.score-change {
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.score-change.positive {
  background: #dcfce7;
  color: #166534;
}

.score-change.negative {
  background: #fee2e2;
  color: #991b1b;
}

/* ???示??*/
.typing {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
}

.typing span {
  width: 6px;
  height: 6px;
  background: #999;
  border-radius: 50%;
  animation: typingDot 1.2s infinite;
}

.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {

  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }
}

/* 底部??? */
.story-footer {
  padding: 15px;
  padding-left: 55px;
  background: var(--paper-white);
  border-top: 1px solid var(--paper-line);
  flex-shrink: 0;
}

/* ???表 */
.choices-title {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 10px;
  text-align: center;
}

.choices-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.choice-btn {
  padding: 12px 16px;
  background: var(--paper-cream);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--ink-dark);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}

.choice-btn:hover {
  background: var(--paper-white);
  border-color: var(--ink-blue);
  transform: translateX(5px);
}

/* 繼??? */
.btn-continue {
  width: 100%;
  padding: 12px;
  background: var(--ink-blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-continue:hover {
  background: #1d4ed8;
}

/* 返??? */
.btn-back-list {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--ink-light);
  border: 1px dashed var(--paper-line);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 10px;
}

/* ========================================
   完??面
   ======================================== */
.complete-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 30px);
  padding: 40px;
  text-align: center;
}

.complete-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.complete-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-dark);
  margin-bottom: 8px;
}

.complete-mission {
  color: var(--ink-light);
  margin-bottom: 25px;
}

.complete-scores {
  background: var(--paper-white);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 20px 30px;
  margin-bottom: 25px;
}

.complete-scores-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-dark);
  margin-bottom: 12px;
}

/* ========================================
   ???
   ======================================== */
@media (max-width: 500px) {
  #app {
    padding: 0;
  }

  .notebook {
    min-height: 100vh;
    border-radius: 0;
  }

  .notebook::before,
  .notebook::after {
    left: 25px;
  }

  .mission-page {
    padding-left: 40px;
  }

  .story-header {
    padding-left: 40px;
  }

  .story-content {
    padding-left: 40px;
  }

  .story-footer {
    padding-left: 40px;
  }

  .score-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   滾??
   ======================================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--paper-cream);
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

/* ========================================
   X˦
   ======================================== */
.complete-feedback {
  margin: 20px 0;
  padding: 15px 20px;
  background: var(--paper-white);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  max-width: 400px;
}

.feedback-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.feedback-text.positive {
  color: #166534;
}

.feedback-text.neutral {
  color: var(--ink-dark);
}

.feedback-text.negative {
  color: #92400e;
}

.complete-image {
  margin: 15px 0;
}

.complete-image img {
  max-width: 200px;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.feedback-label {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 8px;
  font-weight: 500;
}

/* ========================================
   D\GٸBiױBȦ^U
   ======================================== */
.player-title {
  text-align: center;
  margin-bottom: 20px;
  padding: 15px;
  background: linear-gradient(135deg, var(--paper-white) 0%, #e8f4fd 100%);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
}

.player-title-label {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-bottom: 5px;
}

.player-title-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink-blue);
}

/* iױ */
.score-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.score-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.score-bar-name {
  width: 50px;
  font-size: 0.85rem;
  color: var(--ink-dark);
}

.score-bar-track {
  flex: 1;
  height: 10px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.score-bar-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 0.5s ease-out;
}

.score-bar-fill.positive {
  background: linear-gradient(90deg, #22c55e 0%, #86efac 100%);
}

.score-bar-fill.negative {
  background: linear-gradient(90deg, #ef4444 0%, #fca5a5 100%);
}

.score-bar-value {
  width: 35px;
  text-align: right;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-dark);
}

/* Ȧ^U */
.mission-reviews {
  margin-top: 25px;
}

.mission-reviews-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-dark);
  margin-bottom: 12px;
}

.review-card {
  background: var(--paper-white);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 10px;
}

.review-mission-name {
  font-weight: 500;
  color: var(--ink-dark);
  margin-bottom: 5px;
}

.review-aftermath {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ========================================
   SEL \˦
   ======================================== */

/* CASEL O */
.sel-section {
  margin: 20px 0;
  padding: 15px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 8px;
}

.sel-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0369a1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.casel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.casel-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: white;
  border: 1px solid #7dd3fc;
  border-radius: 16px;
  font-size: 0.8rem;
  color: #0c4a6e;
}

.casel-tag .icon {
  font-size: 1rem;
}

/* Qװ϶ */
.discussion-section {
  margin: 20px 0;
  padding: 15px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%);
  border: 1px solid #fbbf24;
  border-radius: 8px;
}

.discussion-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.discussion-questions {
  list-style: none;
  padding: 0;
  margin: 0;
}

.discussion-questions li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: #78350f;
  line-height: 1.5;
}

.discussion-questions li::before {
  content: '??';
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

.discussion-questions li + li {
  border-top: 1px dashed #fcd34d;
}

/*  */
.emotion-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 10px;
  font-size: 0.75rem;
  margin-left: 6px;
  vertical-align: middle;
}

/* ms */
.reset-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed var(--paper-line);
  text-align: center;
}

.btn-reset {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #f87171;
  color: #dc2626;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reset:hover {
  background: #fef2f2;
  border-color: #dc2626;
}

/* Ѫì]۵M^*/
.growth-note {
  margin: 20px 0;
  padding: 15px;
  background: #fefce8;
  border-left: 3px solid #facc15;
  border-radius: 0 8px 8px 0;
}

.growth-header {
  font-size: 0.9rem;
  font-weight: 600;
  color: #a16207;
  margin: 0 0 8px 0;
}

.growth-text {
  font-size: 0.9rem;
  color: #78350f;
  line-height: 1.6;
  margin: 0;
}

.growth-skill {
  font-weight: 500;
}

/* Q@Q]PQ׭^*/
.think-section {
  margin: 20px 0;
  padding: 15px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.think-header {
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  margin: 0 0 10px 0;
}

.think-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.think-list li {
  padding: 8px 0;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}

.think-list li::before {
  content: 'E';
  position: absolute;
  left: 0;
  color: #94a3b8;
}

.think-list li + li {
  border-top: 1px dashed #e2e8f0;
}

/* OpO]² hashtag ^*/
.diary-footnote {
  margin: 25px 0 15px;
  padding-top: 15px;
  border-top: 1px dashed var(--paper-line);
  font-size: 0.8rem;
  color: var(--ink-light);
  font-style: italic;
}

.diary-footnote .footnote-label {
  margin-right: 5px;
}

.diary-footnote span {
  color: #6366f1;
}

/* ҡ]²g^*/
.thinking-prompt {
  margin: 20px 0;
  padding: 12px 15px;
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  border-radius: 8px;
  border-left: 3px solid #a855f7;
}

.thinking-title {
  font-size: 0.85rem;
  color: #7c3aed;
  margin: 0 0 6px 0;
  font-weight: 500;
}

.thinking-question {
  font-size: 0.9rem;
  color: #581c87;
  margin: 0;
  line-height: 1.5;
  font-style: italic;
}

/* ҦC */
.thinking-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thinking-list li {
  font-size: 0.9rem;
  color: #581c87;
  line-height: 1.6;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}

.thinking-list li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: #a855f7;
  font-weight: 600;
}
