/* Flashcard — native selection shell */

body:has(.fc-app) {
  margin: 0;
  background: #faf8f5;
  min-height: 100dvh;
}

.fc-app {
  position: relative;
  min-height: 100dvh;
  overflow-x: clip;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1c1917;
}

.fc-app__ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(251, 191, 36, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 8%, rgba(13, 148, 136, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(254, 243, 199, 0.15) 0%, transparent 45%);
}

.fc-app__topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  padding-top: max(12px, env(safe-area-inset-top));
  background: rgba(250, 248, 245, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(120, 113, 108, 0.1);
}

.fc-app__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.fc-app__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.08);
}

.fc-app__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.fc-app__brand-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1c1917;
}

.fc-app__brand-text em {
  font-size: 0.68rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d9488;
}

.fc-app__auth {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 36px;
}

.fc-app__player-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  max-width: min(52vw, 220px);
}

.fc-app__player {
  min-width: 0;
}

/* Game player badge — selection + shared */
.fc-game-player {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 4px 10px 4px 4px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fef3c7 100%);
  border: 2px solid rgba(217, 119, 6, 0.35);
  box-shadow: 0 3px 0 rgba(217, 119, 6, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-decoration: none;
  color: inherit;
}

.fc-game-player--link {
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.fc-game-player--link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 rgba(217, 119, 6, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.fc-game-player--guest {
  border-color: rgba(120, 113, 108, 0.25);
  background: linear-gradient(180deg, #fff 0%, #f5f5f4 100%);
  box-shadow: 0 3px 0 rgba(120, 113, 108, 0.1);
}

.fc-game-player__portrait {
  position: relative;
  flex-shrink: 0;
}

.fc-game-player__avatar {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  overflow: hidden;
  background: linear-gradient(135deg, #ecfdf5, #fff);
  display: grid;
  place-items: center;
  border: 2px solid #0d9488;
}

.fc-game-player--guest .fc-game-player__avatar {
  border-color: #a8a29e;
}

.fc-game-player__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fc-game-player__initial {
  font-size: 1rem;
  font-weight: 900;
  color: #0d9488;
}

.fc-game-player--guest .fc-game-player__initial {
  color: #78716c;
}

.fc-game-player__rim {
  position: absolute;
  inset: -3px;
  border-radius: 13px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  pointer-events: none;
}

.fc-game-player__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.fc-game-player__tag {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d97706;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fc-game-player--guest .fc-game-player__tag {
  color: #78716c;
}

.fc-game-player__name {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #1c1917;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.fc-app__main {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 12px 20px 48px;
}

/* Game stage (mission select) */

.fc-stage {
  position: relative;
  margin-bottom: 18px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(254, 243, 199, 0.55) 0%, rgba(255, 255, 255, 0.95) 38%, rgba(240, 253, 250, 0.9) 100%);
  border: 2px solid rgba(180, 83, 9, 0.18);
  box-shadow:
    0 6px 0 rgba(180, 83, 9, 0.12),
    0 16px 40px rgba(28, 25, 23, 0.08);
}

.fc-stage__glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 120px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, color-mix(in srgb, var(--stage-accent, #0d9488) 22%, transparent), transparent 70%);
  pointer-events: none;
}

.fc-stage__top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.fc-stage__tag {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(28, 25, 23, 0.06);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #57534e;
}

.fc-stage__rank {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fc-stage__seal {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #fef3c7 0%, #fde68a 40%, #f59e0b 100%);
  border: 2px solid color-mix(in srgb, var(--rank-color, #d97706) 50%, #92400e);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.8),
    0 3px 0 rgba(146, 64, 14, 0.35),
    inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.fc-stage__seal span {
  font-family: 'Noto Serif SC', 'Ma Shan Zheng', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #991b1b;
  line-height: 1;
}

.fc-stage__rank-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: right;
}

.fc-stage__rank-text strong {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rank-color, #d97706);
}

.fc-stage__rank-text em {
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  color: #78716c;
}

.fc-stage__mission {
  position: relative;
  margin-bottom: 16px;
}

.fc-stage__label {
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8a29e;
}

.fc-stage__title {
  margin: 0 0 12px;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #1c1917;
}

.fc-stage__xp-track {
  height: 10px;
  border-radius: 99px;
  background: rgba(28, 25, 23, 0.08);
  border: 1px solid rgba(28, 25, 23, 0.06);
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(28, 25, 23, 0.08);
}

.fc-stage__xp-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--stage-accent, #0d9488), #fbbf24);
  box-shadow: 0 0 12px color-mix(in srgb, var(--stage-accent, #0d9488) 50%, transparent);
  transition: width 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.fc-stage__xp-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #78716c;
}

.fc-stage__resume {
  margin: 8px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0d9488;
}

.fc-stage__actions {
  position: relative;
  display: grid;
  gap: 8px;
}

.fc-stage__play {
  position: relative;
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 45%, #d97706 100%);
  color: #451a03;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 5px 0 #92400e,
    0 10px 28px rgba(217, 119, 6, 0.45);
  transition: transform 0.1s, box-shadow 0.1s, filter 0.12s;
}

.fc-stage__play::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.35) 50%, transparent 72%);
  transform: translateX(-120%);
  animation: fcCtaShine 3s ease-in-out infinite;
}

.fc-stage__play-label {
  position: relative;
  z-index: 1;
}

.fc-stage__play:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.fc-stage__play:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #92400e, 0 4px 14px rgba(217, 119, 6, 0.35);
}

.fc-stage__opts {
  width: 100%;
  padding: 11px 16px;
  border: 2px solid rgba(120, 113, 108, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: #57534e;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.1s, border-color 0.12s;
}

.fc-stage__opts:active {
  transform: translateY(1px);
}

/* Journey map — khoa cử */

.fc-journey {
  margin-bottom: 22px;
  padding: 16px 14px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 249, 235, 0.85) 100%);
  border: 2px solid rgba(180, 83, 9, 0.12);
  box-shadow: 0 4px 0 rgba(180, 83, 9, 0.08);
}

.fc-journey__head {
  margin-bottom: 14px;
}

.fc-journey__title {
  margin: 0 0 4px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #92400e;
}

.fc-journey__next {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #78716c;
}

.fc-journey__next strong {
  color: #d97706;
  font-weight: 800;
}

.fc-journey__path-wrap {
  overflow-x: auto;
  margin: 0 -6px 14px;
  padding: 4px 6px 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.fc-journey__path-wrap::-webkit-scrollbar {
  display: none;
}

.fc-journey__path {
  display: flex;
  align-items: flex-start;
  min-width: max-content;
  padding: 4px 2px;
}

.fc-journey__stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 52px;
  flex-shrink: 0;
}

.fc-journey__node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--stop-soft, #f5f5f4);
  border: 2px solid rgba(120, 113, 108, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fc-journey__char {
  font-family: 'Noto Serif SC', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #a8a29e;
  line-height: 1;
}

.fc-journey__han {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.58rem;
  font-weight: 700;
  color: #a8a29e;
  white-space: nowrap;
}

.fc-journey__seg {
  flex: 0 0 18px;
  height: 3px;
  margin-top: 19px;
  border-radius: 99px;
  background: rgba(120, 113, 108, 0.12);
}

.fc-journey__seg.is-done {
  background: linear-gradient(90deg, #d97706, #fbbf24);
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

.fc-journey__stop--done .fc-journey__node {
  background: var(--stop-soft);
  border-color: var(--stop-color);
  box-shadow: 0 2px 0 color-mix(in srgb, var(--stop-color) 30%, transparent);
}

.fc-journey__stop--done .fc-journey__char,
.fc-journey__stop--done .fc-journey__han {
  color: var(--stop-color);
}

.fc-journey__stop--current .fc-journey__node {
  transform: scale(1.15);
  background: radial-gradient(circle at 35% 30%, #fff 0%, var(--stop-soft) 100%);
  border-color: var(--stop-color);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--stop-color) 20%, transparent),
    0 4px 0 color-mix(in srgb, var(--stop-color) 35%, transparent),
    0 0 16px color-mix(in srgb, var(--stop-color) 30%, transparent);
  animation: fcRankPulse 2s ease-in-out infinite;
}

.fc-journey__stop--current .fc-journey__char {
  color: var(--stop-color);
  font-size: 1.1rem;
}

.fc-journey__stop--current .fc-journey__han {
  color: var(--stop-color);
  font-weight: 800;
}

@keyframes fcRankPulse {
  0%, 100% { transform: scale(1.15); }
  50% { transform: scale(1.22); }
}

.fc-journey__hud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.fc-journey__hud-item {
  padding: 10px 6px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(120, 113, 108, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 0 rgba(120, 113, 108, 0.06);
}

.fc-journey__hud-val {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.fc-journey__hud-lbl {
  display: block;
  margin-top: 2px;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #78716c;
}

.fc-journey__hud-item--due .fc-journey__hud-val { color: #ea580c; }
.fc-journey__hud-item--streak .fc-journey__hud-val { color: #0d9488; }
.fc-journey__hud-item--score .fc-journey__hud-val { color: #92400e; }

@keyframes fcCtaShine {
  0%, 70%, 100% { transform: translateX(-120%); }
  85% { transform: translateX(120%); }
}

.fc-btn-ghost {
  display: block;
  width: 100%;
  padding: 11px 16px;
  border: 2px solid rgba(13, 148, 136, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  color: #0f766e;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
}

/* Tabs */

.fc-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(120, 113, 108, 0.1);
}

.fc-tabs button {
  flex: 1;
  padding: 11px 16px;
  border: 2px solid transparent;
  border-radius: 11px;
  background: transparent;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  color: #78716c;
  cursor: pointer;
  transition: transform 0.12s, background 0.12s, color 0.12s, box-shadow 0.12s;
}

.fc-tabs button:hover:not(.active) {
  color: #57534e;
  transform: translateY(-1px);
}

.fc-tabs button.active {
  background: linear-gradient(180deg, #fff 0%, #f0fdfa 100%);
  color: #0d9488;
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow: 0 3px 0 rgba(13, 148, 136, 0.15);
}

/* Level grid */

.fc-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.fc-level {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px 12px;
  border: 2px solid rgba(120, 113, 108, 0.12);
  border-radius: 16px;
  background: var(--lv-soft, #fff);
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 3px 0 rgba(120, 113, 108, 0.06);
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
  animation: fcFadeUp 0.4s ease both;
}

.fc-level:hover:not(:disabled) {
  transform: translateY(-3px);
  border-color: var(--lv-accent, #0d9488);
  box-shadow: 0 6px 0 color-mix(in srgb, var(--lv-accent, #0d9488) 25%, transparent),
              0 10px 24px rgba(28, 25, 23, 0.1);
}

.fc-level:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--lv-accent, #0d9488) 20%, transparent);
}

.fc-level.is-active {
  border-color: var(--lv-accent, #0d9488);
  box-shadow:
    0 4px 0 color-mix(in srgb, var(--lv-accent, #0d9488) 30%, transparent),
    0 0 0 3px color-mix(in srgb, var(--lv-accent, #0d9488) 18%, transparent);
  animation: fcLevelPulse 2s ease-in-out infinite;
}

@keyframes fcLevelPulse {
  0%, 100% { box-shadow: 0 4px 0 color-mix(in srgb, var(--lv-accent, #0d9488) 30%, transparent), 0 0 0 3px color-mix(in srgb, var(--lv-accent, #0d9488) 18%, transparent); }
  50% { box-shadow: 0 4px 0 color-mix(in srgb, var(--lv-accent, #0d9488) 30%, transparent), 0 0 0 5px color-mix(in srgb, var(--lv-accent, #0d9488) 28%, transparent); }
}

.fc-level.is-locked {
  opacity: 0.45;
  cursor: not-allowed;
}

.fc-level img {
  width: 44px;
  height: 44px;
}

.fc-level__name {
  font-size: 0.78rem;
  font-weight: 800;
  color: #1c1917;
}

.fc-level__pct {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--lv-accent, #0d9488);
}

/* Bottom sheet */

.fc-app__sheet[hidden] {
  display: none !important;
}

.fc-app__sheet {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.fc-app__sheet-bg {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.35);
  backdrop-filter: blur(4px);
}

.fc-app__sheet-panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 85dvh;
  overflow-y: auto;
  padding: 20px 20px max(24px, env(safe-area-inset-bottom));
  border-radius: 20px 20px 0 0;
  background: #faf8f5;
  animation: fcSheetUp 0.28s ease;
}

@keyframes fcSheetUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.fc-app__sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.fc-app__sheet-head h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.fc-app__sheet-head button {
  padding: 8px 14px;
  border: none;
  border-radius: 10px;
  background: #0d9488;
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.fc-app__label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #78716c;
}

.fc-app__label:not(:first-of-type) {
  margin-top: 18px;
}

.fc-app__opts {
  display: flex;
  gap: 8px;
}

.fc-app__opt {
  flex: 1;
  padding: 12px 8px;
  border: 2px solid rgba(120, 113, 108, 0.15);
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  color: #57534e;
  cursor: pointer;
  box-shadow: 0 2px 0 rgba(120, 113, 108, 0.08);
  transition: transform 0.1s, border-color 0.12s, color 0.12s, background 0.12s, box-shadow 0.1s;
}

.fc-app__opt:hover:not(.active) {
  transform: translateY(-1px);
}

.fc-app__opt:active {
  transform: translateY(2px);
  box-shadow: none;
}

.fc-app__opt.active {
  border-color: #0d9488;
  color: #0d9488;
  background: linear-gradient(180deg, #fff 0%, #ecfdf5 100%);
  box-shadow: 0 3px 0 rgba(13, 148, 136, 0.25);
}

/* Session loading / error */

.fc-session-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60dvh;
  gap: 16px;
  color: #78716c;
  font-weight: 600;
}

.fc-session-loading__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(13, 148, 136, 0.15);
  border-top-color: #0d9488;
  border-radius: 50%;
  animation: fcSpin 0.8s linear infinite;
}

@keyframes fcSpin {
  to { transform: rotate(360deg); }
}

.fc-error-panel {
  max-width: 400px;
  margin: 80px auto;
  padding: 28px;
  text-align: center;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(120, 113, 108, 0.12);
}

.fc-error-panel h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.fc-error-panel p {
  margin: 0 0 20px;
  color: #78716c;
  font-size: 0.9rem;
}

.fc-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

.fc-btn--primary {
  background: #0d9488;
  color: #fff;
}

/* Animations */

.fc-animate {
  animation: fcFadeUp 0.45s ease both;
}

.fc-animate--d1 { animation-delay: 0.06s; }
.fc-animate--d2 { animation-delay: 0.12s; }
.fc-animate--d3 { animation-delay: 0.18s; }

@keyframes fcFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden { display: none !important; }

/* Responsive */

@media (max-width: 400px) {
  .fc-levels {
    grid-template-columns: repeat(2, 1fr);
  }

  .fc-stage__title {
    font-size: 1.45rem;
  }

  .fc-journey__hud-val {
    font-size: 1.05rem;
  }
}
