@font-face {
  font-family: "Tiny5";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/tiny5/tiny5-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Tiny5";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/tiny5/tiny5-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Tiny5";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/tiny5/tiny5-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: "Tiny5";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/tiny5/tiny5-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Tiny5";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/tiny5/tiny5-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
  --bg: #0b0d10;
  --panel: #15191f;
  --panel-2: #1e232b;
  --line: #313944;
  --text: #f2f5f7;
  --muted: #9aa7b5;
  --accent: #83d6c3;
  --accent-2: #f2c16d;
  --danger: #ff7d7d;
  --ok: #9be38f;
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body,
#app {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: var(--panel-2);
  color: var(--text);
  cursor: pointer;
}

button:hover {
  border-color: var(--accent);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

button.primary {
  border-color: transparent;
  background: var(--accent);
  color: #07110f;
  font-weight: 700;
}

button.warn {
  border-color: transparent;
  background: var(--accent-2);
  color: #171106;
  font-weight: 700;
}

button.danger {
  border-color: transparent;
  background: var(--danger);
  color: #1d0808;
  font-weight: 700;
}

.button-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: var(--panel-2);
  color: var(--text);
}

.button-link:hover {
  border-color: var(--accent);
  text-decoration: none;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

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

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.brand h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 760;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
}

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

.nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--text);
}

.nav a.active {
  border-color: var(--accent);
  color: var(--accent);
}

.grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 16px;
  align-items: start;
}

.stack {
  display: grid;
  gap: 16px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px var(--shadow);
  padding: 16px;
}

.panel h2,
.panel h3 {
  margin: 0 0 14px;
  font-size: 16px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 12px;
}

.field input,
.field select,
.actions select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 10px;
  background: #0f1217;
  color: var(--text);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.actions.compact {
  margin-top: 0;
}

.toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  background: var(--panel-2);
  color: var(--text);
}

.toggle input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--panel-2);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.status.running {
  color: var(--ok);
}

.status.finished {
  color: var(--accent-2);
}

.muted {
  color: var(--muted);
}

.hidden {
  display: none !important;
}

.file-status {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.error {
  color: var(--danger);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #10141a;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.metric strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.session-list,
.tile-list {
  display: grid;
  gap: 10px;
}

.session-toolbar {
  margin: 0 0 12px;
}

.session-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.session-filter button.active {
  border-color: var(--accent);
  background: rgba(135, 242, 196, 0.14);
  color: var(--accent);
}

.item-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #10141a;
}

.item-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.session-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.session-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.item-card code {
  color: var(--accent);
  overflow-wrap: anywhere;
}

.preview {
  display: grid;
  gap: 12px;
}

.video-export-card {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #10141a;
}

.video-export-card select {
  width: auto;
  min-width: 180px;
}

.video-export-status {
  display: grid;
  gap: 8px;
  min-height: 24px;
  font-size: 13px;
}

.video-export-status p {
  margin: 0;
}

.video-export-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.progress-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #050609;
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 180ms ease;
}

.effect-editor {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.effect-editor header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.effect-editor h3 {
  margin: 0;
}

.effects-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(110px, 1fr));
  gap: 8px;
}

.effect-cell {
  display: grid;
  gap: 6px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: #10141a;
}

.effect-cell span {
  color: var(--muted);
  font-size: 12px;
}

.effect-cell select {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0f1217;
  color: var(--text);
  font-size: 12px;
}

.canvas-frame {
  position: relative;
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #060709;
}

.canvas-frame canvas,
.fullscreen-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.display-page {
  width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 14px;
  overflow: hidden;
  padding: 14px;
  background:
    linear-gradient(rgba(112, 255, 216, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 255, 216, 0.025) 1px, transparent 1px),
    #020403;
  background-size: 100% 4px, 42px 42px, auto;
  color: #d8fff5;
  font-family: "Tiny5", Courier, "Courier New", monospace;
  letter-spacing: 0;
}

.display-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    115deg,
    transparent,
    transparent 18px,
    rgba(255, 184, 245, 0.025) 18px,
    rgba(255, 184, 245, 0.025) 19px
  );
  mix-blend-mode: screen;
  opacity: 0.7;
}

.display-stage {
  position: relative;
  min-width: 0;
  height: calc(100vh - 28px);
  height: calc(100dvh - 28px);
  min-height: calc(100vh - 28px);
  min-height: calc(100dvh - 28px);
  border: 3px solid rgba(134, 255, 222, 0.72);
  border-radius: 0;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 3px rgba(255, 180, 245, 0.18),
    0 0 28px rgba(111, 255, 220, 0.12);
  cursor: zoom-in;
}

.display-stage::before,
.display-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.display-stage::before {
  inset: 0;
  border: 2px solid rgba(255, 190, 247, 0.28);
}

.display-stage::after {
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.045) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.24;
}

.display-stage canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.display-stage:fullscreen {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  border: 0;
  box-shadow: none;
  cursor: zoom-out;
}

.display-stage:fullscreen canvas {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
}

.display-hud {
  position: relative;
  z-index: 2;
  display: grid;
  align-self: stretch;
  align-content: start;
  gap: 12px;
  min-width: 0;
  border-left: 3px solid rgba(134, 255, 222, 0.45);
  padding-left: 14px;
  text-transform: uppercase;
}

.hud-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(134, 255, 222, 0.76);
  font-size: 20px;
}

.hud-topline strong {
  color: #ffb9f3;
  text-align: right;
}

.hud-window {
  display: grid;
  gap: 14px;
  border: 3px solid rgba(134, 255, 222, 0.72);
  padding: 12px;
  background: rgba(1, 6, 5, 0.78);
  box-shadow: inset 0 0 18px rgba(134, 255, 222, 0.06);
}

.hud-window header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 3px solid rgba(255, 184, 245, 0.62);
  padding-bottom: 10px;
}

.hud-window header strong {
  color: #ffb9f3;
  font-size: 13px;
  text-align: right;
}

.hud-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.hud-metric {
  display: grid;
  gap: 5px;
  min-height: 68px;
  border: 3px solid rgba(134, 255, 222, 0.46);
  padding: 9px 10px;
  background: rgba(0, 0, 0, 0.34);
}

.hud-metric span {
  color: rgba(216, 255, 245, 0.62);
  font-size: 20px;
  white-space: nowrap;
}

.hud-metric strong {
  color: #dffff7;
  font-size: 40px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(134, 255, 222, 0.36);
}

.hud-progress {
  height: 18px;
  border: 3px solid rgba(255, 184, 245, 0.72);
  padding: 3px;
  background: rgba(0, 0, 0, 0.42);
}

.hud-progress span {
  display: block;
  width: 0;
  height: 100%;
  background:
    repeating-linear-gradient(
      90deg,
      #ffb9f3,
      #ffb9f3 8px,
      rgba(255, 185, 243, 0.45) 8px,
      rgba(255, 185, 243, 0.45) 12px
    );
  transition: width 220ms ease;
}

.hud-command {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  border-top: 3px solid rgba(134, 255, 222, 0.42);
  padding-top: 10px;
  color: rgba(216, 255, 245, 0.72);
  font-size: 12px;
}

.hud-command strong {
  color: #ffb9f3;
}

.video-export-page {
  overflow: hidden;
  background: #000;
}

.video-export-page canvas {
  display: block;
  background: #000;
}

.tablet {
  width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin: 0;
  overflow: auto;
  padding: 14px;
  background:
    linear-gradient(rgba(112, 255, 216, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 255, 216, 0.025) 1px, transparent 1px),
    #020403;
  background-size: 100% 4px, 42px 42px, auto;
  color: #d8fff5;
  font-family: "Tiny5", Courier, "Courier New", monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tablet::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    115deg,
    transparent,
    transparent 18px,
    rgba(255, 184, 245, 0.025) 18px,
    rgba(255, 184, 245, 0.025) 19px
  );
  mix-blend-mode: screen;
  opacity: 0.7;
}

.task-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - 28px);
  min-height: calc(100dvh - 28px);
  display: grid;
  align-content: start;
  border: 3px solid rgba(134, 255, 222, 0.72);
  border-radius: 0;
  padding: 18px;
  background: rgba(1, 6, 5, 0.78);
  box-shadow:
    0 0 0 3px rgba(255, 180, 245, 0.18),
    inset 0 0 18px rgba(134, 255, 222, 0.06);
}

.tablet-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(134, 255, 222, 0.76);
  font-size: 20px;
}

.tablet-topline a {
  color: #ffb9f3;
}

.tablet-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
  border-top: 3px solid rgba(255, 184, 245, 0.62);
  border-bottom: 3px solid rgba(255, 184, 245, 0.62);
  padding: 12px 0;
}

.tablet-header strong {
  color: #ffb9f3;
  font-size: 28px;
  text-align: right;
}

.tablet .status {
  min-height: 34px;
  border: 3px solid rgba(134, 255, 222, 0.46);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.34);
  color: #dffff7;
  font-family: inherit;
  font-size: 18px;
}

.tablet-label {
  margin-top: 20px;
  color: rgba(216, 255, 245, 0.62);
  font-size: 20px;
}

.equation {
  min-height: 160px;
  display: grid;
  place-items: center;
  margin: 8px 0 16px;
  border: 3px solid rgba(134, 255, 222, 0.46);
  background: rgba(0, 0, 0, 0.34);
  color: #dffff7;
  font-size: 96px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 10px rgba(134, 255, 222, 0.36);
}

.answer-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.answer-row input {
  min-width: 0;
  min-height: 76px;
  border: 3px solid rgba(134, 255, 222, 0.72);
  border-radius: 0;
  padding: 0 14px;
  background: #020403;
  color: #dffff7;
  font-family: inherit;
  font-size: 46px;
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.answer-row input:focus {
  outline: 3px solid rgba(255, 184, 245, 0.72);
  outline-offset: 3px;
}

.answer-row input:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.answer-row button {
  min-height: 76px;
  border: 3px solid rgba(255, 184, 245, 0.72);
  border-radius: 0;
  padding: 0 22px;
  background: rgba(255, 184, 245, 0.16);
  color: #ffb9f3;
  font-family: inherit;
  font-size: 28px;
  text-transform: uppercase;
}

.answer-row button.primary {
  border-color: rgba(255, 184, 245, 0.72);
  background: rgba(255, 184, 245, 0.16);
  color: #ffb9f3;
}

.answer-row button:hover {
  border-color: rgba(134, 255, 222, 0.86);
}

#tablet-message {
  min-height: 34px;
  margin: 14px 0 0;
  font-size: 24px;
}

.tablet-hud {
  align-self: stretch;
}

.tablet-qr {
  display: none;
}

.result-image {
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.qr-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #10141a;
}

.qr-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.qr-card code {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

@media (min-width: 861px) {
  .tablet-hud .hud-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1320px) and (min-width: 861px) {
  .tablet {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .tablet-hud {
    align-self: stretch;
  }
}

@media (max-width: 860px) {
  .grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .effect-editor header {
    align-items: stretch;
    flex-direction: column;
  }

  .effects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .canvas-frame {
    min-height: 320px;
  }

  .display-page {
    display: block;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: auto;
    padding: 0;
  }

  .display-stage {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    height: calc(100dvh - 16px);
    min-height: calc(100vh - 16px);
    min-height: calc(100dvh - 16px);
    margin: 8px;
    touch-action: pan-y;
  }

  .display-stage canvas {
    touch-action: pan-y;
  }

  .display-hud {
    position: relative;
    z-index: 2;
    border-top: 3px solid rgba(134, 255, 222, 0.45);
    border-left: 0;
    padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
    background:
      linear-gradient(rgba(112, 255, 216, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(112, 255, 216, 0.025) 1px, transparent 1px),
      #020403;
    background-size: 100% 4px, 42px 42px, auto;
  }

  .hud-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hud-metric {
    min-height: 62px;
  }

  .hud-topline {
    font-size: 12px;
  }

  .hud-metric span {
    font-size: 11px;
  }

  .hud-metric strong {
    font-size: 22px;
  }

  .hud-metric-iterations {
    grid-column: 1 / -1;
  }

  .tablet {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(76px, 1fr) auto;
    align-items: stretch;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px;
  }

  .task-panel {
    min-height: 0;
    align-self: start;
    padding: 12px;
  }

  .tablet-qr {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    align-self: center;
    justify-self: center;
    gap: 6px;
    padding: 6px;
    color: rgba(134, 255, 222, 0.76);
    font-size: 16px;
  }

  .tablet-qr img {
    width: min(45vw, 228px);
    aspect-ratio: 1;
    border: 3px solid rgba(134, 255, 222, 0.72);
    image-rendering: pixelated;
    background: #fff;
  }

  .tablet-hud {
    align-self: end;
    width: 100%;
  }

  .tablet-topline {
    font-size: 12px;
  }

  .tablet-header strong {
    font-size: 22px;
  }

  .tablet-header {
    margin-top: 10px;
    padding: 8px 0;
  }

  .tablet .status {
    font-size: 14px;
  }

  .tablet-label {
    margin-top: 12px;
    font-size: 16px;
  }

  .tablet .equation {
    min-height: 88px;
    font-size: 48px;
    margin-bottom: 10px;
  }

  .answer-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .answer-row input,
  .answer-row button {
    min-height: 54px;
  }

  .answer-row input {
    font-size: 32px;
  }

  .answer-row button {
    min-width: 92px;
    padding: 0 12px;
    font-size: 22px;
  }

  #tablet-message {
    min-height: 20px;
    margin-top: 6px;
    font-size: 18px;
  }
}
