:root {
  --bg-top: #f3efe3;
  --bg-bottom: #e2efe8;
  --paper: rgba(255, 252, 245, 0.86);
  --paper-strong: rgba(255, 250, 240, 0.96);
  --ink: #1d2b28;
  --muted: #536560;
  --line: rgba(30, 54, 49, 0.16);
  --accent: #0d7c66;
  --accent-deep: #084f43;
  --alert: #a43d2d;
  --warn: #b47513;
  --soft-green: #dff2ea;
  --soft-red: #fbe3df;
  --soft-gold: #f8e8b6;
  --shadow: 0 22px 60px rgba(29, 43, 40, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at top left, rgba(13, 124, 102, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(180, 117, 19, 0.16), transparent 24%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  color: var(--ink);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.5;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.hero {
  padding: 22px;
}

.hero-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.eyebrow,
.case-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
}

.hero-copy {
  width: min(520px, 100%);
  margin: 16px 0 0;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
}

.auth-bar {
  margin-top: 4px;
  display: grid;
  gap: 12px;
  justify-items: end;
  flex-shrink: 0;
}

.auth-signin,
.auth-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(30, 54, 49, 0.1);
  background: rgba(255, 255, 255, 0.66);
  width: fit-content;
  max-width: 100%;
}

.auth-copy {
  margin: 0;
  color: var(--muted);
}

.auth-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.auth-user-copy strong,
.auth-user-copy span {
  display: block;
}

.auth-user-copy {
  text-align: center;
}

.auth-user-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.auth-signout-button {
  width: auto;
  min-width: 0;
  align-self: center;
}

.case-card,
.play-card {
  background: var(--paper);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 22px;
}

.case-card,
.play-card {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.guess-dock {
  display: grid;
  gap: 0;
}

.case-header,
.play-header,
.guess-log-header,
.timeline-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.attempt-badge {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.case-stem,
.play-copy,
#status-text {
  color: var(--muted);
  line-height: 1.65;
}

.case-stem {
  margin: 18px 0 22px;
  font-size: 1.28rem;
  line-height: 1.5;
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.timeline-header {
  margin-bottom: 10px;
}

.clue-list,
.guess-log {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clue-list {
  display: grid;
  gap: 12px;
}

.clue-item {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  position: relative;
  overflow: hidden;
}

.clue-item::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(13, 124, 102, 0.18), transparent);
}

.clue-item.locked {
  color: rgba(83, 101, 96, 0.56);
  background: rgba(245, 239, 227, 0.7);
  filter: saturate(0.7);
}

.clue-item.revealed {
  background:
    linear-gradient(135deg, rgba(223, 242, 234, 0.9), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 28px rgba(13, 124, 102, 0.08);
  animation: clue-flip 380ms ease-out;
}

.clue-index {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  background: var(--soft-green);
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

button,
input {
  font: inherit;
}

input,
button {
  min-height: 48px;
}

.primary-button,
.secondary-button,
.ghost-button {
  border-radius: 999px;
  padding: 12px 18px;
  border: 0;
  cursor: pointer;
  transition: transform 140ms ease, opacity 140ms ease, background 140ms ease;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.primary-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  min-width: 116px;
}

.secondary-button {
  background: #113d35;
  color: #f5f5ef;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-deep);
  border: 1px solid var(--line);
}

.attempt-badge {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 96px;
  align-items: center;
  text-align: center;
}

.search-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 20px;
}

#guess-input {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  min-width: 0;
}

#guess-input:focus {
  outline: 2px solid rgba(13, 124, 102, 0.22);
  border-color: rgba(13, 124, 102, 0.32);
}

.suggestions {
  display: none;
  margin-top: 10px;
  border-radius: 18px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  overflow: hidden;
  max-height: min(320px, 48vh);
  overflow-y: auto;
}

.suggestion-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}

.suggestion-item + .suggestion-item {
  border-top: 1px solid rgba(30, 54, 49, 0.08);
}

.suggestion-item:hover,
.suggestion-item.active {
  background: rgba(223, 242, 234, 0.72);
}

.suggestion-hint {
  color: var(--muted);
  font-size: 0.82rem;
}

.status-panel,
.answer-panel {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.status-panel {
  background: rgba(255, 252, 245, 0.72);
}

.status-panel.success {
  background: var(--soft-green);
}

.status-panel.fail {
  background: var(--soft-red);
}

.status-title {
  margin: 0 0 6px;
  color: var(--accent-deep);
  font-weight: 700;
}

.guess-log-wrap {
  margin-top: 18px;
}

.guess-log-header {
  margin-bottom: 12px;
  align-items: baseline;
}

.guess-log {
  display: grid;
  gap: 10px;
}

.guess-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  animation: card-rise 220ms ease-out;
}

.guess-marker {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

.guess-item.correct .guess-marker {
  background: var(--soft-green);
  color: var(--accent-deep);
}

.guess-item.incorrect .guess-marker {
  background: #fbe3df;
  color: #a43d2d;
}

.guess-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.answer-panel {
  background:
    radial-gradient(circle at top right, rgba(13, 124, 102, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(223, 242, 234, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.result-kicker {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent-deep);
}

.result-answer {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.08;
  margin: 0;
  overflow-wrap: anywhere;
}

.result-copy {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.result-rank {
  margin: 10px 0 0;
  color: var(--accent-deep);
  font-weight: 600;
  line-height: 1.45;
}

.next-case-timer {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.history-panel {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(30, 54, 49, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

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

.history-stat {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(246, 243, 235, 0.9);
  border: 1px solid rgba(30, 54, 49, 0.08);
}

.history-label {
  margin: 0;
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.history-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1.5rem;
  line-height: 1;
}

.history-strip-wrap {
  margin-top: 12px;
}

.history-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
  gap: 8px;
  padding: 0;
  margin: 8px 0 0;
}

.history-chip {
  padding: 8px 6px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(30, 54, 49, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.history-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.15;
}

.history-chip strong {
  display: block;
  margin-top: 5px;
  font-size: 0.84rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.history-chip.win strong {
  color: var(--accent-deep);
}

.history-chip.loss strong {
  color: var(--alert);
}

.history-chip.today {
  border-color: rgba(13, 124, 102, 0.28);
  box-shadow: inset 0 0 0 1px rgba(13, 124, 102, 0.08);
}

.share-preview {
  margin: 14px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(13, 124, 102, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-family: "SFMono-Regular", "Menlo", monospace;
  font-size: 0.9rem;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.answer-panel.win {
  border-color: rgba(13, 124, 102, 0.22);
}

.answer-panel.loss {
  border-color: rgba(164, 61, 45, 0.22);
  background:
    radial-gradient(circle at top right, rgba(164, 61, 45, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(251, 227, 223, 0.9));
}

.groups-section {
  margin-top: 22px;
}

.groups-section-header {
  padding: 0 22px 14px;
}

.groups-copy {
  max-width: 680px;
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.groups-card {
  background: var(--paper);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.groups-card-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.groups-card-copy,
.member-row span,
.standing-row span,
.group-card-header p,
.inline-feedback,
.invite-kicker {
  color: var(--muted);
}

.profile-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 18px;
}

.profile-form input {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  min-width: 0;
}

.inline-feedback {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.inline-feedback.success {
  color: var(--accent-deep);
}

.inline-feedback.error {
  color: var(--alert);
}

.invite-preview {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(13, 124, 102, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.invite-kicker,
.group-panel-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.invite-title {
  margin-top: 8px;
  margin-bottom: 8px;
}

.group-list-card {
  margin-top: 22px;
}

.empty-groups {
  margin-top: 16px;
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(30, 54, 49, 0.18);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.56);
}

.group-list {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.group-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(30, 54, 49, 0.1);
  background: rgba(255, 255, 255, 0.68);
}

.group-card-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.group-card-header h4 {
  font-size: 1.2rem;
  margin: 0;
}

.group-card-header p {
  margin: 8px 0 0;
}

.group-columns {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.group-panel {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(30, 54, 49, 0.08);
  background: rgba(246, 243, 235, 0.82);
}

.member-list,
.standing-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.member-row,
.standing-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(30, 54, 49, 0.08);
}

.member-row > div,
.standing-row > div {
  min-width: 0;
}

.member-row strong,
.standing-row strong {
  display: block;
  overflow-wrap: anywhere;
}

.member-row span,
.standing-row span {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
}

.member-remove-button {
  width: auto;
  min-width: 0;
  padding: 9px 12px;
}

.standing-row.win {
  border-color: rgba(13, 124, 102, 0.16);
}

.standing-row.loss {
  border-color: rgba(164, 61, 45, 0.14);
}

.ops-shell {
  padding-top: 28px;
}

.ops-hero {
  padding-bottom: 12px;
}

.ops-grid {
  display: grid;
  gap: 22px;
}

.ops-cards {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ops-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(246, 243, 235, 0.9);
  border: 1px solid rgba(30, 54, 49, 0.08);
}

.ops-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.75rem;
  line-height: 1;
}

.ops-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
}

.ops-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.ops-table th,
.ops-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(30, 54, 49, 0.08);
}

.ops-table th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.site-footer {
  margin-top: 24px;
  padding: 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer a {
  color: var(--accent-deep);
}

.share-button {
  margin-top: 14px;
}

.share-feedback {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes clue-flip {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  55% {
    opacity: 1;
    transform: translateY(-2px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 920px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 24px;
  }

  .hero {
    padding: 18px 10px 12px;
  }

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

  .groups-grid,
  .group-columns,
  .ops-cards {
    grid-template-columns: 1fr;
  }

  .play-header,
  .case-header,
  .timeline-header,
  .guess-log-header,
  .groups-card-header,
  .group-card-header,
  .auth-user,
  .auth-signin {
    flex-direction: column;
  }

  .hero-grid {
    flex-direction: column;
  }

  .auth-bar {
    margin-top: 8px;
    justify-items: start;
  }

  .attempt-badge {
    align-self: flex-start;
  }

}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 16px, 1180px);
    padding-top: 12px;
    padding-bottom: calc(136px + env(safe-area-inset-bottom));
  }

  .hero,
  .case-card,
  .play-card,
  .groups-card {
    padding: 16px;
    border-radius: 22px;
  }

  .play-card {
    background: transparent;
    backdrop-filter: none;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .guess-dock {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    z-index: 40;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 250, 240, 0.96);
    border: 1px solid rgba(30, 54, 49, 0.14);
    box-shadow: 0 18px 40px rgba(29, 43, 40, 0.18);
    backdrop-filter: blur(14px);
  }

  .hero {
    padding-bottom: 10px;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
    line-height: 0.96;
  }

  .hero-copy,
  .play-copy,
  #status-text,
  .result-copy,
  .site-footer,
  .groups-card-copy {
    font-size: 0.96rem;
  }

  .case-stem {
    margin: 14px 0 18px;
    font-size: 1.12rem;
    line-height: 1.45;
  }

  .case-header,
  .timeline-header,
  .play-header,
  .guess-log-header {
    gap: 10px;
  }

  .play-header > div:first-child {
    display: none;
  }

  .attempt-badge {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
  }

  .search-wrap {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 0;
  }

  .profile-form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .primary-button,
  .secondary-button,
  .ghost-button {
    width: 100%;
  }

  #guess-input {
    font-size: 16px;
    padding: 14px 16px;
  }

  .suggestion-item {
    padding: 14px 16px;
  }

  .status-panel,
  .answer-panel {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .status-panel {
    display: none;
  }

  .guess-log-wrap {
    margin-top: 0;
    padding: 0 0 0;
  }

  .guess-log {
    gap: 8px;
  }

  .guess-item {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 12px;
    align-items: start;
    padding: 12px;
  }

  .guess-item > div {
    min-width: 0;
  }

  .guess-item > div strong {
    display: block;
    overflow-wrap: anywhere;
  }

  .guess-item > strong:last-child {
    grid-column: 2;
    justify-self: start;
    font-size: 0.82rem;
    line-height: 1.2;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(30, 54, 49, 0.08);
  }

  .result-answer {
    font-size: 1.45rem;
    line-height: 1.12;
  }

  .share-preview {
    font-size: 0.84rem;
    padding: 12px 14px;
  }

  .history-panel {
    padding: 12px 14px;
  }

  .history-stats {
    gap: 8px;
  }

  .history-stat {
    padding: 9px 10px;
  }

  .history-stat strong {
    font-size: 1.3rem;
  }

  .history-strip {
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
    gap: 6px;
  }

  .site-footer {
    margin-top: 18px;
    padding: 0 8px;
  }

  .groups-section-header {
    padding: 0 8px 12px;
  }

  .ops-card strong {
    font-size: 1.45rem;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: min(100% - 12px, 1180px);
  }

  .hero,
  .case-card,
  .play-card,
  .groups-card {
    padding: 14px;
    border-radius: 20px;
  }

  .clue-item {
    padding: 12px 14px;
  }

  .clue-index,
  .guess-marker {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .guess-log-header h3,
  .timeline-header h3,
  .play-header h2 {
    font-size: 1.08rem;
  }

  .attempt-badge {
    padding: 9px 12px;
  }
}
