:root {
  color-scheme: dark;
  --ink: #e8e4dc;
  --muted: #969996;
  --faint: #676d6e;
  --canvas: #102338;
  --canvas-deep: #0c1a2b;
  --panel: #183149;
  --panel-raised: #24435d;
  --line: #45627b;
  --line-soft: rgba(151, 194, 226, 0.18);
  --paper: #e8e4dc;
  --accent: #4db8ff;
  --accent-soft: rgba(77, 184, 255, 0.18);
  --conjugation: var(--accent);
  --conjugation-soft: var(--accent-soft);
  --recognition: var(--accent);
  --recognition-soft: var(--accent-soft);
  --success: #9ac68d;
  --error: #df8a79;
  --warning: #d9b878;
  --sans: "Manrope", "Noto Sans JP", sans-serif;
  --jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --mono: "DM Mono", monospace;
  font-family: var(--sans);
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 11%, rgba(77, 184, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 11% 94%, rgba(52, 122, 202, 0.2), transparent 25rem),
    var(--canvas);
  font-size: 14px;
  letter-spacing: -0.01em;
}

body::before,
body::after {
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  opacity: 0.16;
  background-image:
    linear-gradient(30deg, #5f8eb1 12%, transparent 12.5%, transparent 87%, #5f8eb1 87.5%, #5f8eb1),
    linear-gradient(150deg, #5f8eb1 12%, transparent 12.5%, transparent 87%, #5f8eb1 87.5%, #5f8eb1),
    linear-gradient(30deg, #5f8eb1 12%, transparent 12.5%, transparent 87%, #5f8eb1 87.5%, #5f8eb1),
    linear-gradient(150deg, #5f8eb1 12%, transparent 12.5%, transparent 87%, #5f8eb1 87.5%, #5f8eb1),
    linear-gradient(60deg, #5f8eb177 25%, transparent 25.5%, transparent 75%, #5f8eb177 75%);
  background-position: 0 0, 0 0, 10px 18px, 10px 18px, 0 0;
  background-size: 20px 35px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

body::after {
  border: 1px solid rgba(232, 228, 220, 0.04);
  inset: 12px;
}

button, input { font: inherit; }
button { color: inherit; }
button:focus-visible, input:focus-visible { outline: 2px solid var(--active); outline-offset: 3px; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.grain {
  position: fixed;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line-soft);
  background: #0e2034;
  backdrop-filter: blur(14px);
}

.brand-lockup, .top-actions, .mode-menu-trigger, .practice-header, .question-card-top,
.question-foot, .answer-form, .secondary-actions, .score-strip, .panel-heading,
.section-title-row, .history-header, .radio-row, .toggle-row {
  display: flex;
  align-items: center;
}

.brand-lockup { gap: 11px; }
.brand-stamp {
  display: grid;
  width: 35px;
  height: 35px;
  place-content: center;
  color: var(--paper);
  border: 1px solid var(--conjugation);
  border-radius: 50%;
  font-family: var(--jp);
  font-size: 10px;
  font-weight: 800;
  line-height: 8px;
  text-align: center;
  transform: none;
}
.brand-name { margin: 0; font-size: 17px; font-weight: 800; letter-spacing: 0.18em; }
.brand-caption { margin: 2px 0 0; color: var(--faint); font-family: var(--mono); font-size: 9px; letter-spacing: 0.02em; }

.mode-menu { position: relative; z-index: 20; margin-left: 5%; }
.mode-menu-trigger {
  gap: 14px;
  padding: 10px 13px;
  color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel-raised);
  cursor: pointer;
  font-family: var(--jp);
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s, background .2s;
}
.mode-menu-trigger:hover { border-color: var(--conjugation); background: var(--panel-raised); }
.mode-menu-trigger b { color: var(--conjugation); font-weight: 500; }
.chevron { color: var(--muted); font-size: 16px; line-height: 10px; }
.mode-menu-list {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  min-width: 215px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  box-shadow: 0 18px 45px #0008;
}
.mode-option { display: flex; justify-content: space-between; gap: 20px; padding: 11px 10px; border-radius: 3px; font-family: var(--jp); font-size: 14px; cursor: default; }
.mode-option small { color: var(--muted); font-family: var(--sans); font-size: 12px; }
.mode-option.active { color: var(--conjugation); background: var(--conjugation-soft); }
.mode-option.coming-soon { color: var(--faint); }

.top-actions { gap: 8px; }
.top-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 7px 11px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel-raised);
  cursor: pointer;
  font-size: 13px;
  transition: color .2s, border-color .2s, background .2s;
}
.top-action:hover { color: var(--paper); border-color: var(--conjugation); background: var(--panel-raised); }
.top-action.icon-only { width: 38px; justify-content: center; padding: 0; }
.action-icon { color: var(--conjugation); font-size: 17px; transform: rotate(45deg); }
.settings-glyph { color: var(--paper); font-size: 19px; line-height: 1; transform: none; }
.action-count { min-width: 16px; padding: 2px 4px; color: var(--canvas); border-radius: 2px; background: var(--muted); font-family: var(--mono); font-size: 9px; text-align: center; }

.page-shell {
  display: block;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(58px, 9vh, 105px) 0 72px;
}
.eyebrow { margin: 0 0 10px; color: var(--conjugation); font-family: var(--mono); font-size: 20px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }

.practice-column { width: min(100%, 690px); }
.practice-header { justify-content: space-between; margin-bottom: 22px; }
.practice-header h2 { margin: 0; color: var(--paper); font-family: var(--serif); font-size: 25px; font-weight: 600; letter-spacing: -.04em; }
.session-mark { display: flex; align-items: center; gap: 8px; color: var(--faint); font-family: var(--mono); font-size: 9px; letter-spacing: .06em; }
.session-mark-line { width: 24px; height: 1px; background: var(--conjugation); }

.mode-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 15px; }
.mode-tab { display: flex; align-items: center; gap: 14px; padding: 15px 16px; color: var(--muted); border: 1px solid var(--line); border-radius: 4px; background: var(--panel-raised); cursor: pointer; text-align: left; transition: color .2s, border-color .2s, background .2s, transform .2s; }
.mode-tab:hover { color: var(--paper); border-color: #687273; transform: translateY(-1px); }
.mode-tab.active { color: var(--paper); border-color: var(--accent); background: color-mix(in srgb, var(--accent) 30%, var(--panel-raised)); }
body.mode-recognition .mode-tab.active { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 30%, var(--panel-raised)); }
.tab-index { color: var(--conjugation); font-family: var(--mono); font-size: 10px; }
body.mode-recognition .tab-index { color: var(--recognition); }
.mode-tab strong { display: block; font-size: 15px; font-weight: 700; }
.mode-tab small { display: block; margin-top: 4px; color: #c3d7e5; font-family: var(--jp); font-size: 13px; }

.question-card { position: relative; min-height: 274px; padding: 20px 23px 18px; border: 1px solid var(--line); border-radius: 5px; background: linear-gradient(145deg, #244762, #1a3650); box-shadow: 14px 14px 0 rgba(1, 11, 22, .28); overflow: hidden; }
.question-card::before { position: absolute; top: 0; right: 0; width: 100px; height: 100px; border-top: 1px solid var(--conjugation); border-right: 1px solid var(--conjugation); opacity: .7; content: ""; }
.question-card::after { position: absolute; right: -46px; bottom: -60px; width: 180px; height: 180px; border-radius: 50%; content: ""; }
body.mode-recognition .question-card::before { border-color: var(--recognition); }
.question-card-top { position: relative; z-index: 1; justify-content: space-between; }
.question-label { color: var(--muted); font-family: var(--mono); font-size: 13px; letter-spacing: .12em; }
.help-button { display: grid; width: 25px; height: 25px; place-content: center; color: var(--conjugation); border: 1px solid var(--conjugation); border-radius: 50%; background: transparent; cursor: pointer; font-family: var(--serif); font-size: 15px; transition: background .2s, color .2s; }
.help-button:hover, .help-button[aria-expanded="true"] { color: var(--canvas); background: var(--conjugation); }
body.mode-recognition .help-button { color: var(--recognition); border-color: var(--recognition); }
body.mode-recognition .help-button:hover, body.mode-recognition .help-button[aria-expanded="true"] { color: var(--canvas); background: var(--recognition); }
.question-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 167px; }
.question-verb-row { display: flex; flex-direction: column; gap: 10px; }
.verb-root { color: var(--paper); font-family: var(--jp); font-size: clamp(42px, 7vw, 68px); font-weight: 700; letter-spacing: -.1em; line-height: 1; }
.verb-gloss { color: var(--muted); font-size: 16px; }
.ending-prompt { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.ending-prefix { color: var(--muted); font-family: var(--mono); font-size: 15px; letter-spacing: .1em; text-align: right; }
.ending-form { color: var(--conjugation); font-family: var(--jp); font-size: clamp(34px, 4vw, 46px); font-weight: 700; letter-spacing: -.07em; }
body.mode-recognition .ending-form { color: var(--recognition); }
.question-foot { position: relative; z-index: 1; justify-content: space-between; padding-top: 11px; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: 14px; }
.question-counter { font-family: var(--mono); font-size: 11px; }

.help-panel { margin: 0 0 15px; padding: 15px 17px; border-left: 2px solid var(--conjugation); background: #24516a; animation: help-in .18s ease-out; }
.help-panel.closing { animation: help-out .18s ease-in forwards; }
body.mode-recognition .help-panel { border-left-color: var(--recognition); }
.help-panel-heading { display: flex; align-items: center; gap: 9px; color: var(--paper); font-size: 14px; font-weight: 700; }
.help-kana { color: var(--conjugation); font-family: var(--jp); font-size: 16px; }
body.mode-recognition .help-kana { color: var(--recognition); }
.formula { margin: 11px 0 6px; color: var(--paper); font-family: var(--jp); font-size: 19px; font-weight: 700; }
.formula .formula-muted { color: var(--faint); font-size: 15px; font-weight: 500; }
.formula .formula-accent { color: var(--conjugation); }
body.mode-recognition .formula .formula-accent { color: var(--recognition); }
.help-panel p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.example-line { margin-top: 8px; font-family: var(--mono); font-size: 13px; }

.answer-form { gap: 9px; margin-top: 15px; }
.input-wrap { display: flex; align-items: center; flex: 1; min-width: 0; padding: 0 13px; border: 1px solid #68777d; border-radius: 4px; background: var(--canvas-deep); transition: border-color .2s, box-shadow .2s; }
.input-wrap:focus-within { border-color: #39708f; box-shadow: 0 0 0 3px rgba(77, 184, 255, .09); }
body.mode-recognition .input-wrap:focus-within { border-color: #39708f; box-shadow: 0 0 0 3px rgba(77, 184, 255, .09); }
.input-prefix { padding-right: 11px; color: var(--muted); border-right: 1px solid var(--line); font-family: var(--jp); font-size: 13px; }
.answer-form input { width: 100%; min-width: 0; padding: 14px 0 14px 12px; color: var(--paper); border: 0; outline: 0; background: transparent; font-family: var(--jp); font-size: 18px; }
.answer-form input::placeholder { color: var(--muted); font-family: var(--sans); font-size: 14px; }
.check-button { min-width: 106px; padding: 14px 13px; color: #171b1e; border: 0; border-radius: 4px; background: var(--conjugation); cursor: pointer; font-size: 11px; font-weight: 800; transition: filter .2s, transform .2s; }
.check-button:hover { filter: brightness(1.1); transform: translateY(-1px); }
.check-button span { margin-left: 7px; font-family: var(--mono); font-size: 10px; }
body.mode-recognition .check-button { background: var(--recognition); }
.secondary-actions { justify-content: center; gap: 13px; margin: 12px 0 0; }
.text-button { padding: 10px 14px; color: var(--paper); border: 1px solid var(--line); border-radius: 4px; background: var(--panel-raised); cursor: pointer; font-size: 13px; font-weight: 600; }
.text-button:hover { color: var(--paper); }
.text-button:hover:not(:disabled) { border-color: var(--conjugation); }
.text-button:disabled { color: var(--muted); border-color: var(--line-soft); cursor: not-allowed; }
.action-divider { width: 1px; height: 12px; background: var(--line); }

.feedback { margin-top: 14px; padding: 12px 14px; border: 1px solid var(--line); border-left: 3px solid var(--success); background: #24516a; animation: drop-in .18s ease-out; }
.feedback.incorrect { border-left-color: var(--error); background: #4a3b4d; }
.feedback.revealed { border-left-color: var(--warning); background: #2d5270; }
.feedback-title { font-size: 14px; font-weight: 800; }
.feedback.correct .feedback-title { color: var(--success); }
.feedback.incorrect .feedback-title { color: var(--error); }
.feedback.revealed .feedback-title { color: var(--warning); }
.feedback-answer { margin-top: 7px; color: var(--paper); font-family: var(--jp); font-size: 27px; font-weight: 800; }
.feedback-detail { margin-top: 5px; color: var(--muted); font-size: 13px; }

.score-strip { gap: 0; margin-top: 26px; padding: 16px 0 0; border-top: 1px solid var(--line-soft); }
.score-item { display: flex; flex: 1; flex-direction: column; gap: 6px; min-width: 110px; padding: 13px 16px; border: 1px solid var(--line); border-right: 0; background: var(--panel-raised); }
.score-item:first-child { border-radius: 4px 0 0 4px; }
.score-item:last-child { border-right: 1px solid var(--line); border-radius: 0 4px 4px 0; }
.score-label { color: var(--muted); font-family: var(--mono); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.score-item strong { color: var(--paper); font-family: var(--serif); font-size: 27px; font-weight: 600; line-height: 1; }
.score-highlight strong { color: var(--conjugation); }

.panel-backdrop { position: fixed; z-index: 29; inset: 0; background: rgba(0, 0, 0, .45); backdrop-filter: blur(2px); }
.side-panel { position: fixed; z-index: 30; top: 0; right: 0; display: flex; flex-direction: column; width: min(410px, calc(100vw - 27px)); height: 100vh; border-left: 1px solid var(--line); background: #17314a; box-shadow: -20px 0 60px #06132299; animation: panel-in .24s cubic-bezier(.22, 1, .36, 1); }
.panel-heading { align-items: flex-start; justify-content: space-between; padding: 30px 26px 22px; border-bottom: 1px solid var(--line-soft); }
.panel-heading h2 { margin: 0; color: var(--paper); font-family: var(--serif); font-size: 25px; font-weight: 600; letter-spacing: -.04em; }
.close-button { width: 28px; height: 28px; color: var(--muted); border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 20px; line-height: 1; }
.close-button:hover { color: var(--paper); border-color: var(--conjugation); }
.panel-body { flex: 1; padding: 21px 26px 35px; overflow-y: auto; }
.panel-empty { margin: 3px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.history-list { display: flex; flex-direction: column; gap: 9px; margin: 0; padding: 0; list-style: none; }
.history-item { padding: 12px 13px; border: 1px solid var(--line); border-left: 3px solid var(--line); background: var(--panel); }
.history-item.correct { border-left-color: var(--success); }
.history-item.incorrect { border-left-color: var(--error); }
.history-item.skipped { border-left-color: var(--faint); }
.history-item.revealed { border-left-color: var(--warning); }
.history-header { justify-content: space-between; margin-bottom: 8px; }
.result-tag { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.result-tag.correct { color: var(--success); }
.result-tag.incorrect { color: var(--error); }
.result-tag.skipped { color: var(--faint); }
.result-tag.revealed { color: var(--warning); }
.history-mode { color: var(--faint); font-size: 12px; }
.history-question { color: var(--paper); font-family: var(--jp); font-size: 18px; font-weight: 700; }
.history-meta { margin-top: 5px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.history-meta code { color: var(--paper); font-family: var(--jp); }
.history-try { margin-top: 9px; padding: 7px 10px; color: var(--muted); border: 1px solid var(--line); border-radius: 3px; background: var(--panel-raised); cursor: pointer; font-size: 12px; }
.history-try:hover { color: var(--paper); border-color: var(--conjugation); }

.settings-body { padding-top: 8px; }
.settings-section { padding: 17px 0 20px; border-bottom: 1px solid var(--line-soft); }
.settings-section:last-child { border-bottom: 0; }
.settings-section h3 { margin: 0 0 12px; color: var(--paper); font-size: 14px; font-weight: 800; letter-spacing: .02em; }
.section-title-row { justify-content: space-between; }
.section-title-row h3 { margin-bottom: 0; }
.section-links { display: flex; gap: 9px; }
.link-button { padding: 0; color: var(--conjugation); border: 0; background: transparent; cursor: pointer; font-family: var(--mono); font-size: 12px; }
.link-button:hover { color: var(--paper); }
.section-help { margin: 7px 0 14px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.ending-list { display: flex; flex-direction: column; gap: 6px; }
.ending-option { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border: 1px solid transparent; border-radius: 3px; background: var(--panel-raised); cursor: pointer; }
.ending-option:hover { border-color: var(--line); }
.ending-option input { accent-color: var(--conjugation); }
.ending-option-copy { flex: 1; }
.ending-option-name { display: block; color: var(--paper); font-size: 14px; }
.ending-option-meta { display: block; margin-top: 3px; color: var(--faint); font-size: 12px; }
.ending-option-form { color: var(--conjugation); font-family: var(--jp); font-size: 20px; font-weight: 700; }
.radio-row, .toggle-row { gap: 9px; min-height: 34px; color: var(--muted); font-size: 14px; cursor: pointer; }
.radio-row input { accent-color: var(--conjugation); }
.radio-row input[type="number"] { width: 58px; margin: 0 3px; padding: 5px 6px; color: var(--paper); border: 1px solid var(--line); background: var(--canvas-deep); font-family: var(--mono); font-size: 13px; }
.danger-button { width: 100%; margin-top: 11px; padding: 11px 10px; color: var(--accent); border: 1px solid rgba(77, 184, 255, .55); border-radius: 3px; background: #143451; cursor: pointer; font-size: 13px; }
.danger-button:hover { background: #1e4a6c; }
.toggle-row input { position: absolute; opacity: 0; }
.toggle-control { position: relative; width: 29px; height: 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--canvas-deep); transition: background .2s; }
.toggle-control::after { position: absolute; top: 3px; left: 3px; width: 8px; height: 8px; border-radius: 50%; background: var(--faint); transition: transform .2s, background .2s; content: ""; }
.toggle-row input:checked + .toggle-control { border-color: var(--conjugation); background: var(--conjugation-soft); }
.toggle-row input:checked + .toggle-control::after { background: var(--conjugation); transform: translateX(13px); }

.toast { position: fixed; z-index: 50; bottom: 24px; left: 50%; padding: 10px 13px; color: var(--paper); border: 1px solid var(--line); border-radius: 3px; background: var(--panel); box-shadow: 0 10px 30px #06132299; font-size: 13px; transform: translateX(-50%); animation: drop-in .18s ease-out; }

@keyframes drop-in { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
@keyframes help-in { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
@keyframes help-out { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-5px); } }
@keyframes panel-in { from { opacity: 0; transform: translateX(25px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse-card { 0% { transform: translateY(4px); opacity: .4; } 100% { transform: translateY(0); opacity: 1; } }
.question-card.refreshing { animation: pulse-card .2s ease-out; }

@media (max-width: 820px) {
  .topbar { min-height: 64px; padding: 10px 20px; }
  .mode-menu { margin-left: auto; margin-right: auto; }
  .mode-menu-trigger { padding: 9px 10px; font-size: 12px; }
  .top-action { min-height: 34px; padding: 6px 8px; }
  .top-action:not(.icon-only) span:not(.action-icon):not(.action-count) { display: none; }
  .page-shell { display: block; width: min(690px, calc(100% - 34px)); padding-top: 39px; }
  .practice-column { width: 100%; }
}

@media (max-width: 520px) {
  body::after { inset: 6px; }
  .topbar { padding: 9px 13px; }
  .brand-caption { display: none; }
  .brand-stamp { width: 30px; height: 30px; font-size: 9px; line-height: 7px; }
  .brand-name { font-size: 13px; }
  .mode-menu-trigger { max-width: 150px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .top-actions { gap: 4px; }
  .page-shell { width: calc(100% - 26px); padding-top: 29px; }
  .practice-header { align-items: flex-end; }
  .practice-header h2 { font-size: 22px; }
  .mode-tabs { gap: 5px; }
  .mode-tab { gap: 7px; padding: 11px 9px; }
  .tab-index { display: none; }
  .mode-tab strong { font-size: 13px; }
  .mode-tab small { font-size: 11px; }
  .question-card { min-height: 220px; padding: 17px 15px 15px; box-shadow: 7px 7px 0 rgba(0, 0, 0, .11); }
  .question-content { min-height: 145px; align-items: flex-start; flex-direction: column; justify-content: center; }
  .verb-root { font-size: 47px; }
  .ending-prompt { flex-direction: row; align-items: baseline; gap: 10px; }
  .ending-form { font-size: 34px; }
  .ending-prefix { font-size: 10px; }
  .question-foot { font-size: 12px; }
  .answer-form { align-items: stretch; flex-direction: column; }
  .check-button { width: 100%; }
  .score-strip { gap: 0; }
  .score-item { flex: 1; min-width: 0; padding: 11px 7px; }
  .score-label { font-size: 10px; }
  .side-panel { width: calc(100vw - 13px); }
  .panel-heading, .panel-body { padding-right: 18px; padding-left: 18px; }
}