/* Responsive game layout safety net — fits games cleanly on all screen sizes */
canvas {
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
}

button:focus-visible,
a:focus-visible,
[role="button"]:focus-visible,
[tabindex]:not(canvas):focus-visible,
.opt:focus-visible,
.option:focus-visible,
.choice:focus-visible,
.answer:focus-visible,
.tile:focus-visible,
.card:focus-visible {
  outline: 3px solid #2f6df0;
  outline-offset: 3px;
  border-radius: 8px;
}

.gfx-spark {
  position: fixed;
  z-index: 9999;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

.gfx-pop {
  animation: gfxPop 0.34s ease;
}
@keyframes gfxPop {
  40% {
    transform: scale(1.25);
  }
}

/* Touch Ripple Visual FX */
.gfx-ripple {
  position: fixed;
  z-index: 9999;
  border: 3px solid #38bdf8;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

/* Combo Streak Multiplier overlay HUD */
#game-combo-hud {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 8px 24px;
  color: #fff;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition:
    transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.2s;
  will-change: transform, opacity;
}
#game-combo-hud.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
#game-combo-hud.show.pop {
  animation: comboPop 0.3s ease;
}
@keyframes comboPop {
  50% {
    transform: translateX(-50%) scale(1.3);
  }
}

[data-parallax] [data-parallax-layer],
.ghero .deco {
  will-change: transform;
}

/* ---- Game Floating Toolbar ---- */
#game-pub-toolbar {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 10000;
  display: flex;
  gap: 8px;
  /* Never push buttons off-screen on narrow phones */
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: calc(100vw - 24px);
}
.pub-btn {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition:
    background 0.15s,
    transform 0.12s;
}
.pub-btn:hover {
  background: rgba(30, 41, 59, 0.95);
  transform: translateY(-1px);
}

/* ---- High Contrast Styles ---- */
body.high-contrast {
  filter: contrast(1.45) !important;
}
body.high-contrast button,
body.high-contrast a,
body.high-contrast input,
body.high-contrast select {
  border: 2px solid #fff !important;
  outline: 2px solid #000 !important;
  background: #000 !important;
  color: #fff !important;
  font-weight: bold !important;
}

/* ---- Controls Help Dialog ---- */
#game-controls-dialog,
#teacher-cheat-console {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  width: 330px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 16px;
  color: #f8fafc;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.3),
    0 8px 10px -6px rgba(0, 0, 0, 0.3);
  display: none;
  box-sizing: border-box;
  text-align: left;
}
#game-controls-dialog.show,
#teacher-cheat-console.show {
  display: block;
}
#game-controls-dialog h4,
#teacher-cheat-console h4 {
  margin: 0 0 8px 0;
  color: #38bdf8;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#game-controls-dialog .close-btn,
#teacher-cheat-console .close-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
#game-controls-dialog .close-btn:hover,
#teacher-cheat-console .close-btn:hover {
  color: #f1f5f9;
}
.cheat-btn {
  width: 100%;
  margin-top: 8px;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px;
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.15s,
    color 0.15s;
}
.cheat-btn:hover {
  background: #38bdf8;
  color: #0f172a;
}



/* Screen Shake Visual FX */
@keyframes gfx-shake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(-4px, -2px) rotate(-1deg); }
  20% { transform: translate(3px, 4px) rotate(1deg); }
  30% { transform: translate(-5px, 2px) rotate(-1.5deg); }
  40% { transform: translate(4px, -3px) rotate(1.5deg); }
  50% { transform: translate(-3px, 4px) rotate(-1deg); }
  60% { transform: translate(3px, -2px) rotate(1deg); }
  70% { transform: translate(-4px, 2px) rotate(-1.5deg); }
  80% { transform: translate(4px, 3px) rotate(1.5deg); }
  90% { transform: translate(-2px, -3px) rotate(-0.5deg); }
}

.gfx-shake {
  animation: gfx-shake 0.35s cubic-bezier(.36,.07,.19,.97) both;
}

/* CRT Arcade Screen Warp & Vignette */
body.crt-active {
  perspective: 1000px;
}
body.crt-active canvas,
body.crt-active #wrap,
body.crt-active .page-shell {
  position: relative;
  animation: crt-warmup 0.5s ease-out;
  transform: rotateX(1.5deg) scale(0.985);
  box-shadow: 0 0 50px rgba(56, 189, 248, 0.15);
}
body.crt-active::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  background: radial-gradient(circle at center, transparent 60%, rgba(0,0,0,0.55) 100%),
              linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.22) 50%),
              linear-gradient(90deg, rgba(255, 0, 0, 0.05), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.05));
  background-size: 100% 100%, 100% 4px, 6px 100%;
  opacity: 0.85;
}

/* Glass Specular Glare Parallax */
.gfx-specular-glare {
  position: fixed;
  inset: -60px; /* Bleed outer margins for movement */
  pointer-events: none;
  z-index: 99998;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.065) 0%, rgba(255, 255, 255, 0) 45%);
  background-size: 100% 100%;
  opacity: 0;
  transition: opacity 0.5s ease-out;
  transform: translate(calc(var(--glare-x, 0) * -0.04px), calc(var(--glare-y, 0) * -0.04px));
}
body.crt-active .gfx-specular-glare {
  opacity: 1;
}

/* Electro-Magnetic CRT Glitch Visuals */
@keyframes gfx-crt-glitch {
  0% { transform: rotateX(1.5deg) scale(0.985) translate(0); filter: hue-rotate(0deg) saturate(1.5); }
  5% { transform: rotateX(1.5deg) scale(0.99) translate(-5px, 2px) skewX(6deg); filter: hue-rotate(90deg) contrast(1.4); }
  10% { transform: rotateX(1.5deg) scale(0.98) translate(5px, -2px) skewX(-12deg); filter: hue-rotate(180deg) brightness(1.2); }
  15% { transform: rotateX(1.5deg) scale(0.985) translate(0) skewX(0); filter: hue-rotate(0deg); }
  100% { transform: rotateX(1.5deg) scale(0.985) translate(0); filter: none; }
}
body.crt-glitch canvas,
body.crt-glitch #wrap,
body.crt-glitch .page-shell {
  animation: gfx-crt-glitch 0.22s linear infinite !important;
}
/* Retro Scanline grid overlay */
.gfx-scanlines {
  position: fixed;
  inset: 0;
  z-index: 99998;
  pointer-events: none;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.12) 50%
  );
  background-size: 100% 3px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.gfx-scanlines.scanlines-off {
  opacity: 0 !important;
}

@keyframes crt-warmup {
  0% { transform: scaleY(0.01) scaleX(0); filter: brightness(3); }
  40% { transform: scaleY(0.01) scaleX(1); filter: brightness(3); }
  100% { transform: rotateX(1.5deg) scale(0.985); filter: brightness(1); }
}

/* Floating Score Popup Visual FX */
.gfx-floating-score {
  position: fixed;
  pointer-events: none;
  z-index: 100000;
  font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 2px 4px rgba(0,0,0,0.5);
  animation: gfx-float-up 0.8s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
  will-change: transform, opacity;
}
@keyframes gfx-float-up {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
  25% { transform: translate(-50%, -100%) scale(1.3); opacity: 1; }
  100% { transform: translate(-50%, -220%) scale(0.9); opacity: 0; }
}

/* Golden Shockwave Ripple FX */
.gfx-shockwave {
  position: fixed;
  border: 4px solid #f0a400;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%) scale(0);
  opacity: 1;
  box-shadow: 0 0 20px rgba(240, 164, 0, 0.6), inset 0 0 20px rgba(240, 164, 0, 0.6);
  animation: gfx-shockwave-expand 0.6s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
  will-change: transform, opacity;
}
@keyframes gfx-shockwave-expand {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(3.5); opacity: 0; }
}

/* Combo Energy Meter Gauge */
#gfx-combo-meter {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 12px;
  background: rgba(15, 23, 42, 0.85);
  border: 2px solid #38bdf8;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
  z-index: 100000;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
#gfx-combo-meter.active {
  opacity: 1;
}
#gfx-combo-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #38bdf8, #10b981);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
  transition: width 0.1s linear;
}

/* Arcade Cabinet Bezel Control switches */
#gfx-arcade-controls {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100000;
  display: flex;
  gap: 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 8px 24px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  align-items: center;
}
.arcade-switch {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.2);
  color: #94a3b8;
  padding: 6px 14px;
  font-size: 11px;
  font-family: monospace;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.arcade-switch:hover {
  background: #334155;
  color: #f8fafc;
}
.arcade-switch.active {
  background: #0284c7;
  color: #fff;
  border-color: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}
#gfx-equalizer {
  width: 70px;
  height: 24px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 4px;
  margin-left: 8px;
  display: block;
}

/* Dual-feedback coach toast */
#gfx-coach-toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%) translateY(12px);
  z-index: 100050;
  max-width: min(520px, calc(100vw - 24px));
  background: rgba(15, 23, 42, 0.96);
  color: #f8fafc;
  border: 2px solid #38bdf8;
  border-radius: 14px;
  padding: 12px 16px;
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
#gfx-coach-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
#gfx-coach-toast.gfx-coach-good {
  border-color: #34d399;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.95), rgba(15, 23, 42, 0.96));
}
#gfx-coach-toast.gfx-coach-tip {
  border-color: #fbbf24;
  background: linear-gradient(135deg, rgba(120, 53, 15, 0.92), rgba(15, 23, 42, 0.96));
}
.gfx-coach-icon {
  font-size: 1.25rem;
  line-height: 1.2;
  flex: 0 0 auto;
}
.gfx-coach-msg {
  flex: 1 1 auto;
}

/* Pause overlay */
#gfx-pause-overlay {
  position: fixed;
  inset: 0;
  z-index: 100060;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.72);
  padding: 16px;
}
#gfx-pause-overlay.show {
  display: flex;
}
.gfx-pause-card {
  width: min(420px, 100%);
  background: #0f172a;
  border: 2px solid rgba(56, 189, 248, 0.45);
  border-radius: 18px;
  padding: 22px 20px 18px;
  color: #f8fafc;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.gfx-pause-card h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  color: #67e8f9;
}
.gfx-pause-body {
  margin: 0 0 16px;
  opacity: 0.9;
  font-size: 0.98rem;
  line-height: 1.45;
}
.gfx-pause-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.gfx-pause-resume {
  background: #0891b2 !important;
  border-color: #67e8f9 !important;
}
.gfx-pause-hint {
  margin: 14px 0 0;
  font-size: 12px;
  opacity: 0.7;
}
body.gfx-paused canvas {
  filter: brightness(0.55);
}

/* Mission brief */
#gfx-mission-brief {
  position: fixed;
  inset: 0;
  z-index: 100070;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.78);
  padding: 16px;
}
#gfx-mission-brief.show {
  display: flex;
}
.gfx-mission-card {
  width: min(480px, 100%);
  background: linear-gradient(160deg, #1e1b4b 0%, #0f172a 55%, #134e4a 100%);
  border: 2px solid rgba(250, 204, 21, 0.45);
  border-radius: 20px;
  padding: 24px 22px 20px;
  color: #f8fafc;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.gfx-mission-tag {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fde68a;
}
.gfx-mission-card h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: #a5f3fc;
}
.gfx-mission-card p {
  margin: 0 0 16px;
  line-height: 1.5;
  font-size: 1rem;
  opacity: 0.95;
}
.gfx-mission-go {
  background: #facc15 !important;
  color: #0b1020 !important;
  border-color: #fde68a !important;
  font-weight: 900 !important;
  width: 100%;
  justify-content: center;
}

/* Accessible streak badge + SR live region */
#gfx-streak-access {
  position: fixed;
  top: 70px;
  left: 12px;
  z-index: 9998;
  background: rgba(15, 23, 42, 0.92);
  color: #facc15;
  border: 2px solid #f59e0b;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 900;
  font-size: 14px;
  font-family: "Nunito", system-ui, sans-serif;
}
#game-combo-hud.gfx-combo-calm {
  background: #0f172a;
  border-color: #f59e0b;
  box-shadow: none;
}
.gfx-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Retro BIOS Boot Diagnostic Screen */
#gfx-bios-screen {
  position: fixed;
  inset: 0;
  background: #000;
  color: #38bdf8;
  font-family: monospace;
  font-size: 14px;
  padding: 30px;
  z-index: 100001;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1.6;
}
.bios-line {
  white-space: pre-wrap;
  width: 100%;
}
.bios-green {
  color: #10b981;
}
.bios-orange {
  color: #f59e0b;
}
.bios-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: #38bdf8;
  animation: bios-blink 0.8s infinite;
}
@keyframes bios-blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .gfx-spark,
  .gfx-pop,
  .gfx-ripple,
  .gfx-shake,
  .gfx-scanlines,
  #gfx-bios-screen,
  .gfx-floating-score,
  .gfx-shockwave,
  #gfx-combo-meter,
  #gfx-arcade-controls {
    animation: none !important;
    display: none !important;
  }
  #game-combo-hud,
  #gfx-coach-toast,
  #gfx-pause-overlay .gfx-pause-card,
  #gfx-mission-brief .gfx-mission-card {
    transition: none !important;
    animation: none !important;
  }
  [data-parallax] [data-parallax-layer],
  .ghero .deco {
    transform: none !important;
  }
  body.crt-active canvas,
  body.crt-active #wrap,
  body.crt-active .page-shell {
    animation: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
  body.crt-active::after {
    display: none !important;
  }
}

/* ---- Arcade Passport & Badge Modal ---- */
#game-passport-dialog {
  position: fixed;
  inset: 0;
  z-index: 100005;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#game-passport-dialog.show {
  display: flex;
}
.passport-card {
  background: #0f172a;
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 20px;
  width: 100%;
  max-width: 580px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 24px;
  color: #f8fafc;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
}
.passport-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}
.passport-header h3 {
  font-size: 1.3rem;
  color: #c084fc;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.passport-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.passport-stat-box {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.passport-stat-box .num {
  font-size: 1.4rem;
  font-weight: 900;
  color: #38bdf8;
}
.passport-stat-box .label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
}
.passport-trophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.passport-badge {
  background: rgba(30, 41, 59, 0.5);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  transition: all 0.2s;
}
.passport-badge.unlocked {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
  border: 1px solid #c084fc;
}
.passport-badge .icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.passport-badge .title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #e2e8f0;
}

/* ---- Math Scratchpad Drawer ---- */
#game-scratchpad-dialog {
  position: fixed;
  inset: 0;
  z-index: 100004;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#game-scratchpad-dialog.show {
  display: flex;
}
.scratchpad-card {
  background: #0f172a;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scratchpad-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.scratchpad-swatches {
  display: flex;
  gap: 6px;
}
.scratch-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
}
.scratch-swatch.active {
  border-color: #fff;
  transform: scale(1.15);
}
.scratch-canvas {
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  touch-action: none;
  cursor: crosshair;
  width: 100%;
  height: 320px;
}
.scratch-formulas {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(30, 41, 59, 0.6);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #38bdf8;
  font-weight: 700;
}
