:root {
  --bg: #FFF8F1;
  --bg-card: rgba(255, 255, 255, 0.82);
  --ink: #34205F;
  --ink-soft: rgba(52, 32, 95, 0.55);
  --accent: #FF5EA8;
  --accent-2: #8F6BFF;
  --accent-soft: #FFEAF6;
  --good: #55D6A5;
  --good-soft: #DCFFF4;
  --bad: #FF7043;
  --bad-soft: #FFE8E0;
  --border: rgba(199, 184, 255, 0.55);
  --shadow: 0 18px 45px rgba(52, 32, 95, 0.12);
  --shadow-btn: 0 8px 0 rgba(52, 32, 95, 0.15);
  --radius: 20px;
  --radius-pill: 999px;
  --bubble: #fff;
  --bubble-border: rgba(199, 184, 255, 0.65);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #FFF8F1 0%, #FFEAF6 42%, #EEE8FF 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  min-height: 100%;
}

body {
  display: flex;
  justify-content: center;
}

#app {
  width: 100%;
  max-width: 720px;
  padding: 24px 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

body.gallery-mode #app {
  max-width: 1080px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.link-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.link-btn:hover {
  background: var(--bg-card);
  color: var(--ink);
}

.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border: 2.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, transform 0.08s ease;
}

.secondary:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.secondary:active {
  transform: translateY(1px);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mascot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.brand {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

.brand-logo {
  height: clamp(40px, 6vw, 72px);
  width: auto;
  display: block;
}

.logo-home-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  opacity: 0.9;
  transition: opacity 0.15s;
}

.logo-home-btn:hover {
  opacity: 1;
}

.stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 12px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.screen {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  text-align: center;
}

.helpers-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.helpers-portrait[hidden] {
  display: none !important;
}

.helpers-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  border: 4px solid var(--bg-card);
  box-shadow: var(--shadow);
  background: var(--bg-card);
}

.speech-bubble {
  position: relative;
  background: var(--bubble);
  border: 1px solid var(--bubble-border);
  border-radius: 18px;
  padding: 12px 18px;
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 90%;
  box-shadow: var(--shadow);
}

.speech-bubble::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--bubble-border);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid var(--bubble);
}

.title {
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  font-size: 2rem;
  margin: 0;
  line-height: 1.2;
}

.subtitle {
  margin: -8px 0 0;
  color: var(--ink-soft);
}

.hint {
  color: var(--ink-soft);
  margin: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-radius: var(--radius-pill);
  padding: 14px 30px;
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  align-self: center;
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
  box-shadow: var(--shadow-btn);
}

.primary:hover {
  opacity: 0.92;
}

.primary:active {
  transform: translateY(4px);
  box-shadow: 0 3px 0 rgba(52, 32, 95, 0.15);
}

.prompt-label {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.description-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: var(--shadow);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.description-card--has-visual {
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.question-visual-inner {
  display: flex;
  justify-content: center;
  width: 100%;
}

.question-visual-inner svg {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
}

.description-text {
  margin: 0;
  text-align: center;
}

.choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 18px 14px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  transition: transform 0.08s ease, border-color 0.15s ease, background 0.15s ease;
  min-height: 64px;
}

.choice:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.choice:active {
  transform: translateY(1px);
}

.choice:disabled {
  cursor: default;
  opacity: 0.85;
}

.choice.correct {
  background: var(--good-soft);
  border-color: var(--good);
  color: var(--good);
}

.choice.wrong {
  background: var(--bad-soft);
  border-color: var(--bad);
  color: var(--bad);
}

.choice.reveal {
  background: var(--good-soft);
  border-color: var(--good);
  color: var(--good);
}

.feedback {
  min-height: 28px;
  font-weight: 600;
  color: var(--ink-soft);
}

.feedback.good {
  color: var(--good);
}

.feedback.bad {
  color: var(--bad);
}

.big-score {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 8px 0;
  letter-spacing: -0.02em;
}

.result-stats {
  margin: 0;
  color: var(--ink-soft);
}

.missed {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.missed li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.missed-name {
  font-weight: 700;
}

.missed-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 2px;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== Picker shared (students / tests / games) ===== */

.picker-header {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  position: relative;
}

.picker-header .title {
  flex: 1;
  text-align: center;
}

.back-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background 0.12s, border-color 0.12s, transform 0.08s;
}

.back-arrow:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.back-arrow:active {
  transform: translateY(-50%) translateY(1px);
}

.empty-state {
  text-align: center;
  color: var(--ink-soft);
  font-size: 1rem;
  padding: 24px 16px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

/* ===== Student picker ===== */

.student-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 6px -20px 0;
  padding: 0 4px;
}

.student-card {
  background: none;
  border: none;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.12s;
  font: inherit;
  color: inherit;
}

.student-card:hover {
  transform: scale(1.06);
}

.student-card:hover .student-avatar {
  box-shadow: 0 0 0 5px var(--accent), var(--shadow);
}

.student-card:active {
  transform: scale(0.97);
}

.student-avatar {
  width: clamp(155px, 46vw, 240px);
  height: clamp(155px, 46vw, 240px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  border: 4px solid white;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--accent);
  transition: box-shadow 0.15s;
}

.student-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.student-name {
  font-size: 1.5rem;
  font-weight: 700;
}

/* ===== Subject picker ===== */

.subject-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}

.subject-picker .create-deck-btn {
  grid-column: 1 / -1;
}

.subject-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 14px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.08s ease, border-color 0.15s ease, background 0.15s ease;
  box-shadow: var(--shadow);
  font: inherit;
  color: inherit;
}

.subject-card:hover:not(.subject-card--locked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.subject-card:active:not(.subject-card--locked) {
  transform: translateY(1px);
}

.subject-card--locked {
  cursor: default;
  opacity: 0.5;
}

.subject-icon {
  font-size: 3rem;
  line-height: 1;
}

.subject-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.subject-meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.subject-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 6px;
  padding: 3px 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.subject-meta--empty {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}

/* ===== Create subject screen ===== */

.create-subject-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.create-subject-hint {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.subject-icon-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.icon-option {
  font-size: 1.75rem;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 12px;
  border: 2.5px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
}

.icon-option:hover {
  border-color: var(--accent-2);
  background: var(--accent-soft);
}

.icon-option--selected {
  border-color: var(--accent-2);
  background: rgba(143,107,255,0.12);
  box-shadow: 0 0 0 2px var(--accent-2);
}

/* ===== Test picker ===== */

.test-picker {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.test-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.08s, border-color 0.15s, background 0.15s;
  box-shadow: var(--shadow);
  text-align: left;
  font: inherit;
  color: inherit;
}

.test-card:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.test-card:active {
  transform: translateY(1px);
}

.test-icon {
  font-size: 2rem;
  line-height: 1;
}

.test-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.test-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.test-meta {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.test-arrow {
  color: var(--ink-soft);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ===== Mode picker (game-picker on the third screen) ===== */

.mode-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.mode-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.08s ease, border-color 0.15s ease, background 0.15s ease;
  box-shadow: var(--shadow);
}

.mode-card:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.mode-card:active {
  transform: translateY(1px);
}

.mode-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.mode-name {
  font-weight: 700;
  font-size: 1.15rem;
}

.mode-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.3;
}

/* ===== Shooting gallery ===== */

.gallery-scene {
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.helper-side {
  flex: 0 0 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}

.helper-portrait {
  width: 150px;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid var(--bg-card);
  box-shadow: var(--shadow);
  background: var(--bg-card);
}

.helper-portrait-left,
.helper-portrait-right {
  object-position: center top;
}

.helper-bubble {
  position: relative;
  background: var(--bubble);
  border: 1px solid var(--bubble-border);
  border-radius: 14px;
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  max-width: 100%;
  box-shadow: var(--shadow);
  min-height: 36px;
  margin-top: 4px;
  line-height: 1.25;
}

.helper-bubble:empty {
  visibility: hidden;
}

.helper-bubble::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid var(--bubble-border);
}

.helper-bubble::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--bubble);
}

.helper-name {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery {
  flex: 1 1 auto;
  position: relative;
  background:
    linear-gradient(180deg, #b91c1c 0 6%, #fecaca 6% 12%, #b91c1c 12% 18%, #fecaca 18% 24%, #b91c1c 24% 30%, #fecaca 30% 36%, #b91c1c 36% 42%) ,
    linear-gradient(180deg, #1f2937, #374151);
  background-size: 100% 50%, 100% 100%;
  background-repeat: no-repeat;
  background-position: top, bottom;
  border-radius: var(--radius);
  border: 2px solid #4b5563;
  box-shadow: var(--shadow);
  padding: 22px 18px 0;
  overflow: hidden;
  cursor: crosshair;
  min-height: 460px;
}

.gallery-banner {
  position: relative;
  margin: 0 auto 10px;
  max-width: 92%;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.35));
}

.banner-rope {
  position: absolute;
  top: -16px;
  width: 3px;
  height: 22px;
  background: #1f2937;
  transform-origin: top center;
}

.banner-rope-left {
  left: 14%;
  transform: rotate(14deg);
}

.banner-rope-right {
  right: 14%;
  transform: rotate(-14deg);
}

.banner-paper {
  background: #fef3c7;
  background-image:
    repeating-linear-gradient(0deg, rgba(120, 53, 15, 0.05) 0 2px, transparent 2px 6px);
  border: 3px solid #78350f;
  border-radius: 8px;
  padding: 14px 18px;
  font-family: "Georgia", "Palatino", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  line-height: 1.35;
  transform: rotate(-1deg);
  box-shadow: inset 0 0 18px rgba(120, 53, 15, 0.15);
}

.gallery-stage {
  position: relative;
  height: 300px;
}

.gallery-targets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 75px;
  align-items: end;
  height: 230px;
}

.gallery-floor {
  position: absolute;
  left: -14px;
  right: -14px;
  bottom: 0;
  height: 75px;
  background:
    repeating-linear-gradient(
      90deg,
      #78350f 0 28px,
      #5b2706 28px 30px,
      #78350f 30px 58px,
      #5b2706 58px 60px
    );
  border-top: 4px solid #3f1d04;
  box-shadow: inset 0 6px 10px rgba(0, 0, 0, 0.35);
}

.target {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: crosshair;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  transform: translateY(110%);
  animation: target-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.target:nth-child(1) { animation-delay: 0.05s; }
.target:nth-child(2) { animation-delay: 0.18s; }
.target:nth-child(3) { animation-delay: 0.31s; }
.target:nth-child(4) { animation-delay: 0.44s; }

@keyframes target-pop {
  0% { transform: translateY(110%); }
  70% { transform: translateY(-6%); }
  100% { transform: translateY(0); }
}

.target-post {
  width: 8px;
  height: 30px;
  background: linear-gradient(180deg, #6b7280, #374151);
  border-radius: 2px;
  margin-bottom: -4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.bullseye {
  width: 130px;
  height: 130px;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.target-label {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #1f2937;
  text-shadow: 0 1px 0 #fff, 0 0 6px #fff;
  pointer-events: none;
  padding: 0 4px;
  line-height: 1.1;
}

.target.hit {
  animation: target-hit 0.6s ease-in forwards;
}

@keyframes target-hit {
  0% { transform: translateY(0) rotate(0); opacity: 1; }
  40% { transform: translateY(-8px) rotate(-12deg); }
  100% { transform: translateY(140%) rotate(40deg); opacity: 0; }
}

.target.miss {
  animation: target-shake 0.4s ease-in-out;
}

@keyframes target-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.target.reveal {
  animation: target-reveal 0.5s ease-out forwards;
}

@keyframes target-reveal {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.08); }
  100% { transform: translateY(0) scale(1.05); }
}

.target.reveal .bullseye {
  filter: drop-shadow(0 0 12px #facc15) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}

.target.fade-out {
  animation: target-retract 0.4s ease-in forwards;
}

@keyframes target-retract {
  to { transform: translateY(110%); opacity: 0.6; }
}

.target:disabled {
  cursor: default;
}

.bang {
  position: absolute;
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fbbf24;
  text-shadow: 0 0 10px #f59e0b, 2px 2px 0 #b91c1c;
  pointer-events: none;
  animation: bang-pop 0.6s ease-out forwards;
  z-index: 5;
}

@keyframes bang-pop {
  0% { transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
  30% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

@media (max-width: 900px) {
  body.gallery-mode #app {
    max-width: 720px;
  }
  .helper-side {
    flex: 0 0 110px;
  }
  .helper-portrait {
    width: 110px;
    height: 160px;
  }
  .bullseye {
    width: 100px;
    height: 100px;
  }
  .target-label {
    top: 36px;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .gallery-scene {
    flex-direction: column;
    gap: 10px;
  }
  .helper-side {
    flex-direction: row;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    padding-top: 0;
  }
  .helper-portrait {
    width: 70px;
    height: 70px;
    border-radius: 50%;
  }
  .helper-portrait-left,
  .helper-portrait-right {
    object-position: center 8%;
  }
  .helper-bubble {
    flex: 1;
    text-align: left;
    margin-top: 0;
    min-height: 30px;
  }
  .helper-bubble::before,
  .helper-bubble::after {
    display: none;
  }
  .helper-name {
    display: none;
  }
}

@media (max-width: 480px) {
  .mode-picker {
    grid-template-columns: 1fr;
  }
  .bullseye {
    width: 80px;
    height: 80px;
  }
  .target-label {
    font-size: 0.85rem;
    top: 28px;
  }
  .gallery-stage {
    height: 240px;
  }
  .gallery-targets {
    height: 180px;
    bottom: 60px;
  }
  .gallery-floor {
    height: 60px;
  }
  .gallery {
    min-height: 360px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 17px;
  }
  .choices {
    grid-template-columns: 1fr;
  }
  .description-card {
    font-size: 1.15rem;
    padding: 22px 18px;
  }
  .big-score {
    font-size: 3rem;
  }
  .helpers-img {
    width: 180px;
    height: 180px;
  }
  .mascot {
    width: 38px;
    height: 38px;
  }
}

/* ===== Design kit additions ===== */

.pe-sparkle-bg {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 94, 168, .18) 0 4px, transparent 5px),
    radial-gradient(circle at 90% 30%, rgba(116, 185, 255, .18) 0 5px, transparent 6px),
    radial-gradient(circle at 70% 80%, rgba(255, 200, 87, .18) 0 5px, transparent 6px);
}

.feedback-explanation {
  margin: 6px 0 0;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.88;
  line-height: 1.35;
}

/* ===== Create Study Set screen ===== */

.create-deck-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.create-label {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.create-input,
.create-textarea {
  font: inherit;
  width: 100%;
  background: var(--bg-card);
  border: 2.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.15s;
}

.create-textarea {
  font-family: ui-monospace, "Consolas", monospace;
  font-size: 0.88rem;
  resize: vertical;
  min-height: 180px;
}

.create-input:focus,
.create-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.create-status {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.create-status.error {
  background: var(--bad-soft);
  border: 1.5px solid var(--bad);
  color: var(--bad);
}

.create-status.warning {
  background: #FFF9E6;
  border: 1.5px solid #D4A017;
  color: #7a5c00;
}

.create-status.success {
  background: var(--good-soft);
  border: 1.5px solid var(--good);
  color: #1a7a5a;
}

.create-preview {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: left;
  font-size: 0.9rem;
}

.create-preview-item {
  border-top: 1px solid var(--border);
  padding: 10px 0;
}

.create-preview-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.preview-q {
  font-weight: 700;
  margin-bottom: 4px;
}

.preview-a {
  color: var(--good);
  font-weight: 700;
}

.preview-choices {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.preview-explanation {
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 2px;
}

.create-deck-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border: 2.5px dashed var(--accent);
  border-radius: var(--radius);
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  background: transparent;
  transition: background 0.12s, border-style 0.12s;
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
}

.create-deck-btn:hover {
  background: var(--accent-soft);
  border-style: solid;
}

.test-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 6px;
  vertical-align: middle;
}

.create-io {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ===== AI upload section ===== */

.ai-upload-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(143, 107, 255, 0.06);
  border: 2px solid rgba(143, 107, 255, 0.25);
  border-radius: var(--radius);
  padding: 18px;
}

.ai-upload-hint {
  margin: -4px 0 2px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.ai-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 2.5px dashed var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: border-color 0.15s, background 0.15s;
  color: var(--ink);
}

.ai-file-label:hover {
  border-color: var(--accent-2);
  background: rgba(143, 107, 255, 0.06);
}

.ai-file-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.ai-or-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-or-divider::before,
.ai-or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ai-extract-btn {
  align-self: flex-start;
}

.manual-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 4px 0;
}

.manual-divider::before,
.manual-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.create-status.loading {
  background: rgba(143, 107, 255, 0.08);
  border: 1.5px solid rgba(143, 107, 255, 0.4);
  color: var(--accent-2);
}

/* ===== Break button ===== */

.break-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}

.break-btn {
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s, color 0.12s, opacity 0.12s;
  letter-spacing: 0.02em;
}

.break-btn:hover:not(:disabled) {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.break-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.break-timer {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== Modal overlay (shared) ===== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 20, 60, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
}

.modal-box {
  background: #1e1b2e;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  max-width: 360px;
  width: 100%;
}

/* ===== Snake game ===== */

.snake-box {
  gap: 12px;
}

.snake-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.snake-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 52px;
}

.snake-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.snake-score,
.snake-timer {
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.snake-timer {
  color: #FFC857;
}

.snake-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
  margin-left: auto;
}

.snake-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

#snake-canvas {
  border-radius: 12px;
  display: block;
  image-rendering: pixelated;
}

.snake-controls {
  width: 100%;
  display: flex;
  justify-content: center;
}

.dpad {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 4px;
  align-items: center;
  justify-items: center;
}

.dpad-row {
  display: flex;
  gap: 4px;
}

.dpad-btn {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.dpad-btn:active {
  background: rgba(255, 94, 168, 0.45);
  color: #fff;
}

.snake-hint {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ===== GIF break overlay ===== */

.gif-box {
  background: #fff;
  gap: 12px;
  padding: 24px 20px;
}

.gif-caption {
  margin: 0;
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
}

.gif-frame {
  width: 240px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gif-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gif-subcaption {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
}

/* =====================================================
   HOMEWORK TUTOR FEATURE
   ===================================================== */

/* ----- Home screen ----- */

.home-logo-wrap {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.home-logo {
  height: clamp(48px, 8vw, 80px);
  width: auto;
}

.home-tagline {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
}

.home-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 4px;
}

@media (max-width: 500px) {
  .home-cards {
    grid-template-columns: 1fr;
  }
}

.home-card {
  background: var(--bg-card);
  border: 2.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  cursor: pointer;
  transition: transform 0.1s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow);
  overflow: hidden;
  font: inherit;
  color: inherit;
  text-align: center;
}

.home-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(52, 32, 95, 0.16);
}

.home-card:active {
  transform: translateY(0);
}

.home-card--testprep:hover {
  border-color: var(--accent-2);
}

.home-card--tutor:hover {
  border-color: #FFB800;
}

.home-card-graphic {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.home-card-label {
  width: 100%;
  padding: 14px 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
}

.home-card-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.home-card-title {
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
}

.home-card-desc {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.home-parent-note {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 500;
  padding: 0 12px;
  line-height: 1.5;
}

/* ----- Shared HW Tutor layout ----- */

.hw-logo {
  width: auto;
  height: clamp(36px, 6vw, 56px);
  display: block;
  margin: 0 auto;
}

.hw-setup-form,
.hw-field {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.hw-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin: 0;
}

/* ----- Grade select ----- */

.hw-select-wrap {
  position: relative;
}

.hw-select-wrap::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.hw-select {
  width: 100%;
  appearance: none;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 12px 40px 12px 16px;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.12s;
}

.hw-select:focus {
  outline: none;
  border-color: var(--accent-2);
}

/* ----- Subject grid ----- */

.hw-subject-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 400px) {
  .hw-subject-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hw-subject-btn {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 12px 8px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s, transform 0.08s;
  text-align: center;
  line-height: 1.3;
}

.hw-subject-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.hw-subject-btn:active {
  transform: translateY(1px);
}

.hw-subject-btn--selected {
  border-color: var(--accent-2);
  background: rgba(143, 107, 255, 0.1);
  box-shadow: 0 0 0 2px var(--accent-2);
}

.hw-start-btn {
  margin-top: 8px;
}

.hw-setup-error,
.hw-input-error {
  background: var(--bad-soft);
  border: 1.5px solid var(--bad);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bad);
  text-align: center;
}

/* ----- Input screen tabs ----- */

.hw-input-tabs {
  display: flex;
  gap: 8px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 6px;
}

.hw-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 10px;
  padding: 10px 8px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}

.hw-tab:hover {
  color: var(--ink);
}

.hw-tab--active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
}

.hw-tab-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
}

/* ----- Upload tab ----- */

.hw-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 2.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
  text-align: center;
}

.hw-upload-label:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.hw-upload-graphic {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
}

.hw-upload-text {
  font-weight: 700;
  font-size: 1rem;
}

.hw-upload-hint {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.hw-image-preview-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hw-image-preview {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  background: rgba(52, 32, 95, 0.04);
  display: block;
}

.hw-remove-image {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 4px 10px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bad);
  cursor: pointer;
}

/* ----- Textarea shared ----- */

.hw-textarea {
  width: 100%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.12s;
}

.hw-textarea:focus {
  outline: none;
  border-color: var(--accent-2);
}

.hw-textarea--tall {
  min-height: 140px;
}

.hw-ask-btn {
  margin-top: 4px;
}

/* ----- Voice tab ----- */

.hw-voice-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
}

.hw-voice-graphic {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
}

.hw-mic-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font: inherit;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: transform 0.1s, box-shadow 0.1s;
}

.hw-mic-btn:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 rgba(52, 32, 95, 0.15);
}

.hw-mic-btn--recording {
  animation: hw-mic-pulse 1.1s ease-in-out infinite;
}

@keyframes hw-mic-pulse {
  0%, 100% { box-shadow: 0 8px 0 rgba(52,32,95,0.15), 0 0 0 0 rgba(255,94,168,0.5); }
  50% { box-shadow: 0 8px 0 rgba(52,32,95,0.15), 0 0 0 14px rgba(255,94,168,0); }
}

.hw-mic-icon {
  font-size: 1.8rem;
}

/* ----- Chat screen ----- */

.hw-chat-header-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.hw-chat-subject-badge {
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.hw-chat-grade {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hw-hw-preview {
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 180px;
  box-shadow: var(--shadow);
}

.hw-hw-preview-img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  background: rgba(52, 32, 95, 0.04);
  display: block;
}

.hw-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  max-height: 52vh;
  overflow-y: auto;
  padding: 4px 2px;
  scroll-behavior: smooth;
}

.hw-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  max-width: 90%;
}

.hw-msg--tutor {
  align-self: flex-start;
}

.hw-msg--student {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.hw-msg-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: var(--bg-card);
}

.hw-msg--tutor .hw-msg-avatar {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

.hw-msg-bubble {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 10px 14px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  box-shadow: 0 4px 12px rgba(52, 32, 95, 0.07);
  white-space: pre-wrap;
  word-break: break-word;
}

.hw-msg--tutor .hw-msg-bubble {
  border-color: rgba(143, 107, 255, 0.3);
  background: rgba(143, 107, 255, 0.06);
  border-bottom-left-radius: 4px;
}

.hw-msg--student .hw-msg-bubble {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-color: transparent;
  border-bottom-right-radius: 4px;
}

.hw-msg--loading .hw-msg-bubble {
  color: var(--ink-soft);
  font-style: italic;
}

.hw-chat-input-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  margin-top: 4px;
}

.hw-chat-input {
  flex: 1;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 11px 14px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  resize: none;
  max-height: 120px;
  overflow-y: auto;
  transition: border-color 0.12s;
  line-height: 1.4;
}

.hw-chat-input:focus {
  outline: none;
  border-color: var(--accent-2);
}

.hw-send-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: var(--shadow-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.08s, box-shadow 0.08s;
}

.hw-send-btn:hover {
  opacity: 0.9;
}

.hw-send-btn:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(52, 32, 95, 0.15);
}

.hw-send-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.hw-new-session-btn {
  align-self: center;
  margin-top: 4px;
}
