:root {
  --bg: #eef3f8;
  --bg-soft: #f8fbfe;
  --bg-deep: #e2eaf4;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-strong: #ffffff;
  --panel-tint: #f4f8fd;
  --panel-ink: #eef5fd;
  --line: rgba(16, 33, 61, 0.11);
  --line-strong: rgba(16, 33, 61, 0.2);
  --text: #182438;
  --muted: #60708a;
  --muted-strong: #46556d;
  --accent: #0f6cbd;
  --accent-strong: #0a4f88;
  --accent-soft: rgba(15, 108, 189, 0.12);
  --accent-soft-strong: rgba(15, 108, 189, 0.2);
  --warm: #c8852f;
  --warm-soft: rgba(200, 133, 47, 0.14);
  --success-soft: rgba(16, 124, 16, 0.12);
  --warn: #8a4b00;
  --warn-soft: rgba(255, 185, 0, 0.18);
  --danger-soft: rgba(196, 43, 28, 0.12);
  --navy: #10233e;
  --shadow-lg: 0 18px 42px rgba(10, 24, 47, 0.08);
  --shadow-md: 0 12px 24px rgba(10, 24, 47, 0.065);
  --shadow-sm: 0 6px 14px rgba(10, 24, 47, 0.05);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  color: var(--text);
  font-family: "Segoe UI Variable Text", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 10%, rgba(15, 108, 189, 0.08), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(108, 182, 255, 0.1), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg-soft) 26%, var(--bg) 62%, var(--bg-deep) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 28%),
    repeating-linear-gradient(90deg, rgba(16, 33, 61, 0.025) 0 1px, transparent 1px 120px);
  opacity: 0.28;
}

body::after {
  inset: auto -10vw -14rem auto;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 133, 47, 0.08), rgba(200, 133, 47, 0));
}

.page {
  width: min(860px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 20px 0 56px;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow-lg);
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 24%);
}

.stage,
.release-gallery,
.signal-grid,
.workflow-band,
.controls,
.output-panel {
  animation: rise-in 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.release-gallery { animation-delay: 50ms; }
.signal-grid { animation-delay: 70ms; }
.workflow-band { animation-delay: 120ms; }
.controls { animation-delay: 180ms; }
.output-panel { animation-delay: 240ms; }

.stage {
  margin-bottom: 16px;
}

.release-gallery {
  margin-bottom: 16px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.96));
}

.stage-shell {
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.95));
}

.stage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(15, 108, 189, 0.08), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(200, 133, 47, 0.12), transparent 28%);
  pointer-events: none;
}

.stage-topbar,
.panel-head,
.section-row,
.action-row,
.output-actions,
.output-shell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.stage-topbar {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #78b8f3);
  color: #ffffff;
  font-family: "Segoe UI Variable Display", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 108, 189, 0.18);
}

.brand-label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--muted-strong);
}

.status-cluster,
.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.status-cluster {
  justify-content: flex-start;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-block-size: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted-strong);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-pill-live {
  background: linear-gradient(180deg, rgba(230, 242, 255, 0.96), rgba(242, 248, 255, 0.98));
  border-color: rgba(15, 108, 189, 0.22);
  color: var(--accent-strong);
}

.stage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.stage-copy h1,
.panel-head h2,
.showcase-card h2 {
  margin: 0;
  font-family: "Segoe UI Variable Display", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.stage-copy h1 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1;
}

.panel-head h2,
.showcase-card h2 {
  font-size: clamp(1.35rem, 1.9vw, 1.9rem);
  line-height: 1.08;
}

.hero-text,
.panel-note,
.microcopy,
.section-intro,
.workflow-step p,
.showcase-list,
.showcase-list li {
  color: var(--muted);
}

.hero-text {
  max-width: 68ch;
  margin: 14px 0 0;
  font-size: 0.96rem;
  line-height: 1.62;
}

.hero-details {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-detail {
  min-width: 0;
  padding: 11px 13px;
  border: 1px solid rgba(16, 33, 61, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
}

.hero-detail strong {
  font-size: 0.93rem;
}

.hero-detail strong,
.signal-card strong,
.summary-card strong,
.workflow-step strong,
.output-shell-title {
  display: block;
  color: var(--text);
}

.showcase-card {
  position: relative;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #123055, #112643 58%, #0d1d33 100%);
  color: #edf4ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 28px rgba(10, 24, 47, 0.16);
}

.showcase-card {
  max-width: none;
}

.showcase-card .meta-label,
.showcase-card .panel-note,
.showcase-card .showcase-list,
.showcase-card .showcase-list li {
  color: rgba(237, 244, 255, 0.8);
}

.showcase-card h2 {
  margin-top: 8px;
  margin-bottom: 14px;
}

.showcase-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.55;
  font-size: 0.93rem;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.release-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(16, 35, 62, 0.8), rgba(12, 22, 39, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 28px rgba(10, 24, 47, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.release-card::before,
.release-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.release-card::before {
  inset: auto -12% -34% -12%;
  height: 72%;
  border-radius: 50% 50% 0 0;
  background: rgba(8, 15, 28, 0.42);
}

.release-card::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 28%), radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.16), transparent 18%);
}

.release-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 120, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 215, 120, 0.18), 0 20px 34px rgba(10, 24, 47, 0.18);
}

.release-card-copy {
  position: relative;
  z-index: 1;
}

.release-card-copy .meta-label,
.release-card-copy .panel-note {
  color: rgba(241, 246, 255, 0.84);
}

.release-card-copy strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1.18rem;
}

.release-era {
  background: radial-gradient(circle at 26% 24%, rgba(232, 197, 118, 0.5), transparent 22%), linear-gradient(180deg, #6c5636, #2d241b 62%, #15110d 100%);
}

.release-tbc {
  background: radial-gradient(circle at 70% 20%, rgba(86, 255, 167, 0.42), transparent 20%), linear-gradient(180deg, #284f3a, #16211c 58%, #0d1511 100%);
}

.release-wrath {
  background: radial-gradient(circle at 66% 20%, rgba(147, 213, 255, 0.42), transparent 22%), linear-gradient(180deg, #2f5978, #19273a 58%, #111822 100%);
}

.release-cata {
  background: radial-gradient(circle at 50% 18%, rgba(255, 147, 75, 0.42), transparent 20%), linear-gradient(180deg, #66392a, #2a1716 56%, #180d0f 100%);
}

.release-mop {
  background: radial-gradient(circle at 28% 18%, rgba(119, 236, 183, 0.32), transparent 20%), linear-gradient(180deg, #365f4a, #1a2d26 56%, #111c18 100%);
}

.release-retail {
  background: radial-gradient(circle at 72% 18%, rgba(164, 167, 255, 0.34), transparent 22%), linear-gradient(180deg, #243e72, #162240 56%, #0f1528 100%);
}

.signal-card,
.summary-card,
.workflow-step,
.control-section,
.output-shell {
  border: 1px solid rgba(16, 33, 61, 0.08);
  box-shadow: var(--shadow-md);
}

.signal-card {
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
}

.workflow-band,
.controls,
.output-panel {
  padding: 22px;
}

.workflow-band {
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 253, 0.96));
}

.panel-head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.workspace {
  display: grid;
  gap: 16px;
}

.workflow-steps,
.control-stack,
.summary-strip {
  display: grid;
  gap: 12px;
}

.workflow-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-step {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(252, 253, 255, 0.98), rgba(245, 248, 252, 0.96));
}

.step-index,
.eyebrow,
.meta-label,
.section-label,
.section-kicker {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.step-index {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.section-kicker {
  color: var(--warm);
}

.selection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.control-stack {
  position: relative;
  z-index: 1;
}

.control-section {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
}

.control-section-spotlight {
  background:
    linear-gradient(135deg, rgba(233, 244, 255, 0.9), rgba(255, 255, 255, 0.98));
}

.control-section-emphasis {
  background:
    linear-gradient(180deg, rgba(245, 248, 253, 0.98), rgba(255, 255, 255, 0.98));
}

.section-intro,
.panel-note,
.microcopy {
  margin: 0;
  line-height: 1.5;
  font-size: 0.92rem;
}

.microcopy {
  display: block;
  margin-top: 4px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.choice-grid-versions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-button,
.button,
.tab,
.option-chip {
  font: inherit;
}

.choice-button {
  width: 100%;
  min-block-size: 78px;
  padding: 13px;
  border: 1px solid rgba(16, 33, 61, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.96));
  color: var(--text);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.choice-grid .choice-button {
  max-width: none;
}

.class-accordion {
  display: grid;
  gap: 8px;
}

.class-accordion-panel {
  display: grid;
  gap: 8px;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(15, 108, 189, 0.16);
}

.class-accordion-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.spec-choice-button {
  min-block-size: 68px;
  padding: 11px 12px;
  border-radius: 14px;
}

.choice-button:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(15, 108, 189, 0.24);
  box-shadow: 0 16px 28px rgba(10, 24, 47, 0.12);
}

.choice-button.is-active {
  background:
    linear-gradient(180deg, rgba(230, 242, 255, 0.98), rgba(245, 249, 255, 1));
  border-color: rgba(15, 108, 189, 0.38);
  box-shadow: 0 0 0 1px rgba(15, 108, 189, 0.12), 0 18px 30px rgba(15, 108, 189, 0.15);
  color: var(--accent-strong);
}

.choice-button.is-disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.choice-button .title {
  display: block;
  font-weight: 700;
  font-size: 0.94rem;
}

.choice-button .detail {
  display: block;
  margin-top: 5px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
}

.class-token {
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 8px;
}

.token-warrior { background: #c69b6d; }
.token-paladin { background: #f48cba; }
.token-hunter { background: #aad372; }
.token-rogue { background: #fff468; }
.token-priest { background: #f5f5f5; }
.token-shaman { background: #0070dd; }
.token-mage { background: #3fc7eb; }
.token-warlock { background: #8788ee; }
.token-druid { background: #ff7c0a; }
.token-deathknight { background: #c41e3a; }
.token-monk { background: #00ff98; }
.token-demonhunter { background: #a330c9; }
.token-evoker { background: #33937f; }

.text-input,
.simc-input,
.code-output {
  width: 100%;
  border-radius: 18px;
  font-family: "Cascadia Code", Consolas, monospace;
}

.text-input {
  min-height: 46px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 33, 61, 0.12);
  background: linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(242, 247, 252, 0.96));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.simc-input {
  min-height: 180px;
  margin-top: 12px;
  padding: 14px;
  resize: vertical;
  line-height: 1.55;
  border: 1px solid rgba(16, 33, 61, 0.12);
  background: linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(242, 247, 252, 0.96));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.simc-input:disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(16, 33, 61, 0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.94));
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

.option-chip input {
  accent-color: var(--accent);
}

.action-row-primary {
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(16, 33, 61, 0.08);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(16, 35, 62, 0.98), rgba(18, 49, 85, 0.98));
}

.action-row-primary .panel-note {
  max-width: 56ch;
  color: rgba(231, 238, 252, 0.76);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-block-size: 40px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, opacity 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.button-primary {
  background: linear-gradient(180deg, #2f8ee4, #0f6cbd 56%, #0a4f88 100%);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(15, 108, 189, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border-color: rgba(16, 33, 61, 0.1);
  box-shadow: var(--shadow-sm);
}

.button-compact {
  min-block-size: 32px;
  padding: 7px 12px;
}

.summary-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.summary-card {
  position: relative;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
}

.banner {
  margin: 0 0 14px;
  padding: 13px 15px;
  border: 1px solid rgba(16, 33, 61, 0.08);
  border-radius: 14px;
  background: rgba(16, 33, 61, 0.05);
  color: var(--muted-strong);
  line-height: 1.5;
  font-size: 0.92rem;
}

.banner.is-success {
  background: var(--success-soft);
  color: #145214;
  border-color: rgba(16, 124, 16, 0.16);
}

.banner.is-warn {
  background: var(--warn-soft);
  color: var(--warn);
  border-color: rgba(255, 185, 0, 0.22);
}

.banner.is-error {
  background: var(--danger-soft);
  color: #7a1b13;
  border-color: rgba(196, 43, 28, 0.18);
}

.output-shell {
  position: relative;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(244, 248, 253, 0.9), rgba(249, 251, 254, 0.98));
}

.output-shell-head {
  align-items: flex-end;
  margin-bottom: 10px;
}

.tab-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(16, 33, 61, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.tab {
  min-block-size: 34px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--muted-strong);
  font-weight: 600;
  font-size: 0.86rem;
}

.tab.active {
  background: linear-gradient(180deg, rgba(230, 242, 255, 0.98), rgba(245, 250, 255, 1));
  border-color: rgba(15, 108, 189, 0.28);
  color: var(--accent-strong);
}

.tab.has-alert {
  color: #8f231b;
}

.code-output {
  min-height: 500px;
  margin: 0;
  padding: 18px;
  overflow: auto;
  line-height: 1.55;
  font-size: 0.86rem;
  border: 1px solid rgba(122, 158, 210, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 70%),
    linear-gradient(180deg, #0d1627, #101c30 55%, #12203a 100%);
  color: #e8eefb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.token-comment { color: #8fb7a3; }
.token-keyword { color: #78c0ff; }
.token-string { color: #d7ba7d; }
.token-number { color: #b5cea8; }

.choice-button:focus-visible,
.button:focus-visible,
.tab:focus-visible,
.simc-input:focus-visible,
.text-input:focus-visible {
  outline: 2px solid rgba(15, 108, 189, 0.34);
  outline-offset: 2px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .stage-grid,
  .release-grid,
  .signal-grid,
  .workflow-steps,
  .selection-grid,
  .summary-strip {
    grid-template-columns: 1fr;
  }

  .hero-details {
    grid-template-columns: 1fr;
  }

  .choice-grid-versions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stage-copy h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .page {
    width: min(100vw - 20px, 1180px);
    padding-top: 14px;
  }

  .stage-shell,
  .workflow-band,
  .controls,
  .output-panel {
    padding: 16px;
  }

  .stage-topbar,
  .panel-head,
  .section-row,
  .action-row,
  .output-shell-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-cluster,
  .hero-details {
    width: 100%;
  }

  .choice-grid,
  .choice-grid-versions,
  .option-grid,
  .summary-strip {
    grid-template-columns: 1fr;
  }

  .tab-row {
    width: 100%;
  }

  .tab {
    flex: 1 1 auto;
  }

  .code-output {
    min-height: 380px;
    padding: 14px;
  }
}
