.classic-scene {
  position: absolute;
  left: 54px;
  top: 280px;
  width: 972px;
  height: 778px;
}

.classic-meta-row {
  position: absolute;
  left: 0;
  top: 0;
  width: 972px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 22px;
  border: 1px solid rgba(39, 230, 255, 0.26);
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(39, 230, 255, 0.08), rgba(101, 92, 255, 0.08));
  overflow: hidden;
}

.classic-mode-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.classic-mode-copy strong {
  color: var(--color-cyan);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0.09em;
}

.classic-mode-copy span {
  color: var(--color-muted);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0.07em;
}

.classic-phase-chip {
  min-width: 164px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(56, 236, 146, 0.38);
  border-radius: 999px;
  color: var(--color-green);
  background: rgba(56, 236, 146, 0.09);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.classic-phase-chip.warning {
  color: var(--color-yellow);
  border-color: rgba(255, 228, 95, 0.48);
  background: rgba(255, 228, 95, 0.09);
}

.classic-phase-chip.final,
.classic-phase-chip.locking {
  color: var(--color-orange);
  border-color: rgba(255, 155, 66, 0.58);
  background: rgba(255, 155, 66, 0.11);
}

.classic-phase-chip.locked {
  min-width: 210px;
  color: var(--color-white);
  border-color: rgba(39, 230, 255, 0.68);
  background: linear-gradient(90deg, rgba(39, 230, 255, 0.18), rgba(101, 92, 255, 0.20));
  box-shadow: 0 0 18px rgba(39, 230, 255, 0.16);
}

.classic-question-panel {
  position: absolute;
  left: 0;
  top: 58px;
  width: 972px;
  height: 228px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 38px 10px;
  border: 2px solid rgba(39, 230, 255, 0.52);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(58, 124, 255, 0.23), transparent 55%),
    linear-gradient(155deg, rgba(14, 31, 68, 0.98), rgba(4, 10, 27, 0.98));
  box-shadow: var(--shadow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.classic-question-panel::before {
  content: "";
  position: absolute;
  left: 70px;
  right: 70px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-indigo), transparent);
}

.classic-question-kicker {
  position: absolute;
  left: 28px;
  top: 14px;
  color: var(--color-muted);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.classic-question-text {
  width: 100%;
  height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 62px;
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-align: center;
  overflow: hidden;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.classic-question-corners::before,
.classic-question-corners::after {
  content: "";
  position: absolute;
  bottom: 18px;
  width: 42px;
  height: 2px;
  background: rgba(39, 230, 255, 0.55);
}

.classic-question-corners::before { left: 24px; }
.classic-question-corners::after { right: 24px; }

.classic-answers {
  position: absolute;
  left: 0;
  top: 304px;
  width: 972px;
  height: 468px;
  display: grid;
  grid-template-rows: repeat(4, 108px);
  row-gap: 12px;
}

.classic-answer-card {
  --answer-color: var(--color-cyan);
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  padding: 10px 32px 10px 14px;
  border: 2px solid rgba(105, 183, 255, 0.28);
  border-radius: 23px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--answer-color) 11%, transparent), transparent 42%),
    linear-gradient(155deg, rgba(12, 26, 58, 0.98), rgba(4, 9, 24, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 8px 20px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 260ms var(--ease-enter),
    border-color 260ms ease,
    filter 260ms ease,
    opacity 260ms ease;
}

.classic-answer-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--answer-color);
  box-shadow: 0 0 18px color-mix(in srgb, var(--answer-color) 42%, transparent);
}

.answer-a { --answer-color: var(--color-cyan); }
.answer-b { --answer-color: var(--color-blue); }
.answer-c { --answer-color: #a77cff; }
.answer-d { --answer-color: var(--color-gold); }

.classic-answer-letter {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid color-mix(in srgb, var(--answer-color) 72%, white 8%);
  border-radius: 20px;
  color: var(--color-white);
  background: color-mix(in srgb, var(--answer-color) 15%, rgba(5, 12, 31, 0.9));
  box-shadow: 0 0 20px color-mix(in srgb, var(--answer-color) 18%, transparent);
  font-size: 43px;
  font-weight: 950;
  line-height: 1;
}

.classic-answer-text {
  min-width: 0;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  font-size: 40px;
  font-weight: 875;
  line-height: 1.04;
  letter-spacing: -0.016em;
  overflow: hidden;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: nowrap;
}

.classic-answer-edge {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 7px;
  height: 38px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--answer-color) 55%, transparent);
  opacity: 0.55;
  transform: translateY(-50%);
}

.classic-lock-sweep {
  position: absolute;
  left: -310px;
  top: 304px;
  width: 240px;
  height: 468px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.17), rgba(255, 255, 255, 0.30), rgba(101, 92, 255, 0.16), transparent);
  filter: blur(2px);
  transform: skewX(-12deg);
}

.classic-scene.is-warning .classic-question-panel {
  border-color: rgba(255, 228, 95, 0.58);
}

.classic-scene.is-final .classic-question-panel {
  border-color: rgba(255, 155, 66, 0.78);
  box-shadow: 0 0 22px rgba(255, 155, 66, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.classic-scene.is-final .classic-answer-card {
  border-color: rgba(255, 155, 66, 0.31);
}

.classic-scene.is-locking .classic-answer-card {
  transform: scale(0.985);
  filter: saturate(0.88);
}

.classic-scene.is-locking .classic-lock-sweep {
  opacity: 1;
  animation: classic-lock-sweep 720ms var(--ease-enter) forwards;
}

@keyframes classic-lock-sweep {
  from { left: -310px; }
  to { left: 1040px; }
}

.classic-scene.is-locked .classic-answer-card {
  border-color: rgba(83, 182, 255, 0.34);
  filter: saturate(0.72) brightness(0.91);
}

.classic-scene.is-locked .classic-answer-letter {
  box-shadow: none;
}

.classic-scene.chat-unavailable .classic-phase-chip:not(.locked) {
  color: var(--color-orange);
  border-color: rgba(255, 155, 66, 0.42);
  background: rgba(255, 155, 66, 0.08);
}

.debug-enabled .classic-meta-row,
.debug-enabled .classic-question-panel,
.debug-enabled .classic-answer-card {
  outline: 2px dashed rgba(255, 255, 255, 0.38);
  outline-offset: -4px;
}

@media (prefers-reduced-motion: reduce) {
  .classic-lock-sweep { display: none; }
}

.reduced-motion .classic-lock-sweep { display: none; }

.classic-question-panel.dense-question {
  padding: 6px 38px;
}
.classic-question-panel.dense-question .classic-question-kicker {
  display: none;
}
.classic-question-panel.dense-question .classic-question-text {
  height: 216px;
  line-height: 0.92;
  letter-spacing: -0.04em;
}
