:root {
  --paper: #00020a;
  --surface: #071021;
  --surface-sunken: #020713;
  --ink: #edf6ff;
  --ink-muted: #aebbd2;
  --ink-faint: #71819d;
  --line: rgba(126, 178, 255, 0.24);
  --line-strong: rgba(164, 205, 255, 0.36);
  --brand: #63d8ff;
  --brand-strong: #7cf5ff;
  --brand-soft: rgba(76, 140, 255, 0.18);
  --brand-contrast: #020713;
  --tile-amber: #E08A2B;
  --tile-teal: #2F8F83;
  --tile-indigo: #4B4FA6;
  --tile-coral: #D95C4A;
  --tile-plum: #7E4A72;
  --font-serif: Fraunces, Georgia, "Times New Roman", serif;
  --font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .28), 0 0 20px rgba(99, 216, 255, .12);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, .34), 0 0 34px rgba(99, 216, 255, .14);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(82, 130, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 82% 2%, rgba(214, 64, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #00020a 0%, #050816 46%, #000106 100%);
  color: var(--ink);
  font-family: var(--font-sans);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(8, 16, 34, 0.88);
  color: var(--ink);
  cursor: pointer;
  font: 700 0.95rem/1 var(--font-sans);
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease);
}

button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: var(--brand);
}

button[aria-pressed="true"] {
  background: #67ffb7;
  border-color: #2f8f83;
  color: #08110f;
  box-shadow: 0 0 0 2px rgba(103, 255, 183, 0.18), 0 10px 24px rgba(47, 143, 131, 0.2);
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.shell {
  width: min(1200px, calc(100vw - clamp(16px, 4vw, 48px)));
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 12px;
}

.brandbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(4, 8, 22, 0.78);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(130, 190, 255, 0.08);
  backdrop-filter: blur(12px);
}

.wordmark {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark span {
  color: var(--brand);
}

.product-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #b9c7de;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1;
}

.chip {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 4px;
  background: var(--tile-indigo);
  box-shadow: inset 0 0 0 1px rgba(26, 23, 18, 0.16);
}

.brandbar p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.875rem;
  line-height: 1.2;
  white-space: nowrap;
}

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

.hud div {
  min-width: 0;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.label {
  display: block;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: lowercase;
}

.hud strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stage-wrap {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(133, 191, 255, 0.32);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 42%, rgba(68, 126, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 78% 20%, rgba(214, 64, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #00020a, #020511 72%, #000106);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.62), 0 0 80px rgba(62, 183, 255, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.stage-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(120, 190, 255, 0.22),
    inset 0 -100px 160px rgba(44, 245, 255, 0.08),
    inset 0 0 80px rgba(214, 64, 255, 0.10);
  z-index: 1;
}

canvas {
  display: block;
  width: 100%;
  height: min(70vh, 720px);
  min-height: 430px;
  background: #00020a;
  touch-action: none;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(2, 5, 17, 0.74), rgba(1, 3, 10, 0.56)),
    radial-gradient(circle at 50% 28%, rgba(88, 155, 255, 0.16), transparent 22rem);
}

.overlay.hidden {
  display: none;
}

.overlay-tile {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(75, 79, 166, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 24%, rgba(224, 138, 43, 0.95), transparent 28%),
    radial-gradient(circle at 72% 34%, rgba(47, 143, 131, 0.86), transparent 30%),
    radial-gradient(circle at 42% 76%, rgba(126, 74, 114, 0.78), transparent 32%),
    #E2E3F2;
  box-shadow: var(--shadow-md);
}

.overlay h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 6.2rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.overlay p {
  max-width: 660px;
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
}

.overlay button {
  min-width: 150px;
  padding: 0 24px;
  border: 0;
  background: var(--brand-strong);
  color: var(--brand-contrast);
  box-shadow: var(--shadow-sm);
  text-transform: lowercase;
}

.keys {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 760px;
}

.keys span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1;
}

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

.controls button {
  background: rgba(8, 16, 34, 0.88);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: lowercase;
  border-color: color-mix(in srgb, var(--brand) 48%, var(--line-strong));
  background: rgba(72, 118, 255, 0.18);
  color: #dff7ff;
}

.touch-only {
  display: none;
}

.move-slider {
  display: none;
  padding: 0 2px;
}

.slider-track {
  position: relative;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-sunken);
  box-shadow: inset 0 1px 3px rgba(26, 23, 18, .08);
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

.slider-track::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line-strong);
  transform: translateX(-50%);
}

.slider-fill {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 35%, transparent);
  pointer-events: none;
}

.slider-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  background: var(--brand-strong);
  box-shadow: var(--shadow-md);
  pointer-events: none;
  transition: box-shadow 120ms var(--ease);
}

.slider-track.active .slider-thumb {
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--brand) 22%, transparent), var(--shadow-md);
}

@media (pointer: coarse) {
  .touch-only {
    display: inline;
  }

  .move-slider {
    display: block;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100vw - 12px, 1200px);
    padding: 6px 0;
    gap: 6px;
  }

  .brandbar {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 6px;
  }

  .brandbar p {
    white-space: normal;
  }

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

  .hud div {
    padding: 9px 10px;
  }

  canvas {
    height: 66vh;
    min-height: 360px;
  }

  .overlay {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
  }
}

.ad-slot {
  min-height: 120px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-sunken) 72%, transparent);
  box-shadow: var(--shadow-sm);
}

.ad-slot p {
  margin: 0;
  padding: 8px 12px 0;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.ad-slot .adsbygoogle {
  min-height: 90px;
}

.game-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 2px 4px;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.game-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.game-footer a,
.game-footer button {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink-muted);
  font: inherit;
  text-decoration: none;
}

.game-footer a:hover,
.game-footer button:hover {
  color: var(--ink);
  transform: none;
  box-shadow: none;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 680px;
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(26, 23, 18, .16), 0 4px 10px rgba(26, 23, 18, .08);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  flex: 1;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.cookie-banner a {
  color: var(--brand-strong);
}

.cookie-banner div {
  display: flex;
  gap: 8px;
}

.cookie-banner button {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.cookie-banner button:last-child {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
  color: var(--brand-contrast);
}

@media (max-width: 700px) {
  .game-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .game-footer nav {
    justify-content: flex-start;
  }

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

  .cookie-banner div {
    justify-content: flex-end;
  }
}

/* Compact arcade layout overrides */
.shell {
  width: min(980px, calc(100vw - clamp(12px, 3vw, 32px)));
  min-height: 100vh;
  padding: 10px 0;
  gap: 8px;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.brandbar {
  min-height: 46px;
  padding: 7px 10px;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
}

.wordmark {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.product-lockup {
  font-size: 0.74rem;
}

.brandbar p {
  max-width: 400px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.hud {
  gap: 6px;
}

.hud div {
  min-width: 0;
  padding: 8px 10px;
}

.label {
  font-size: 0.68rem;
}

.hud strong {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.stage-wrap {
  border-width: 1px;
}

canvas {
  height: min(56vh, 560px);
  min-height: 320px;
}

.overlay {
  gap: 10px;
  padding: 16px;
}

.overlay-tile {
  width: 44px;
  height: 44px;
}

.overlay h1 {
  font-size: clamp(2.2rem, 7vw, 4.4rem);
}

.controls {
  gap: 6px;
}

.controls span {
  padding: 6px 8px;
  font-size: 0.68rem;
}

.ad-slot {
  min-height: 82px;
  padding: 8px 10px;
}

.ad-slot .adsbygoogle {
  min-height: 64px;
}

.ad-label {
  margin-bottom: 4px;
  font-size: 0.62rem;
}

.game-footer {
  padding: 6px 2px 2px;
  font-size: 0.75rem;
}

.cookie-banner {
  padding: 10px;
}

@media (max-width: 720px) {
  .shell {
    width: min(100vw - 10px, 980px);
    padding: 6px 0;
    gap: 5px;
  }

  .brandbar {
    min-height: 42px;
  }

  .brandbar p {
    display: none;
  }

  .hud div {
    padding: 7px 8px;
  }

  canvas {
    height: 54vh;
    min-height: 300px;
  }

  .ad-slot {
    min-height: 76px;
    padding: 6px 8px;
  }

  .ad-slot .adsbygoogle {
    min-height: 58px;
  }
}

@media (max-height: 760px) {
  .shell {
    padding-top: 6px;
    padding-bottom: 6px;
    gap: 5px;
  }

  .brandbar {
    min-height: 40px;
  }

  .ad-slot {
    min-height: 70px;
  }

  .ad-slot .adsbygoogle {
    min-height: 52px;
  }

  canvas {
    height: min(50vh, 500px);
    min-height: 280px;
  }
}

.game-guide {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: var(--shadow-sm);
  color: var(--ink-muted);
  line-height: 1.65;
}

.game-guide h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0;
}

.game-guide p {
  margin: 0;
}

.game-guide table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.game-guide th,
.game-guide td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.game-guide th {
  color: var(--ink);
  background: color-mix(in srgb, var(--surface-sunken) 78%, transparent);
}

.game-guide details {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface-sunken) 70%, transparent);
}

.game-guide summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.game-guide details p {
  margin-top: 8px;
}

.ad-slot-bottom {
  margin-top: 22px;
}

@media (max-width: 720px) {
  .game-guide {
    margin-top: 18px;
    padding: 16px;
  }

  .game-guide table,
  .game-guide thead,
  .game-guide tbody,
  .game-guide tr,
  .game-guide th,
  .game-guide td {
    display: block;
  }

  .game-guide th {
    display: none;
  }

  .game-guide td {
    border-top: 0;
  }

  .game-guide td:first-child {
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-weight: 700;
  }
}

/* Responsive fit pass: keep playable canvas and controls in the first viewport on phones/tablets. */
.game-footer button {
  min-height: 34px;
  padding: 0 8px;
}

@media (max-height: 480px) and (orientation: landscape) {
  .shell {
    width: min(100vw - 10px, 980px);
    min-height: 100svh;
    padding: 4px 0 calc(4px + env(safe-area-inset-bottom));
    gap: 4px;
  }

  .brandbar {
    min-height: 34px;
    padding: 5px 8px;
    border-radius: var(--radius-md);
  }

  .brandbar p {
    display: none;
  }

  .hud {
    gap: 4px;
  }

  .hud div {
    padding: 5px 7px;
  }

  .label {
    font-size: 0.62rem;
  }

  .hud strong {
    font-size: 0.95rem;
  }

  canvas {
    height: clamp(170px, calc(100svh - 150px), 270px);
    min-height: 0;
  }

  .controls,
  .move-slider {
    gap: 5px;
  }

  .controls button {
    min-height: 38px;
    font-size: 0.78rem;
  }

  .slider-track {
    height: 38px;
  }

  .slider-thumb {
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
  }
}

@media (max-width: 420px) and (orientation: portrait) {
  .shell {
    min-height: 100svh;
  }

  canvas {
    height: clamp(240px, calc(100svh - 285px), 430px);
    min-height: 0;
  }

  .controls button {
    min-height: 42px;
    font-size: 0.8rem;
  }
}

/* Responsive fit pass follow-up: tighter landscape cap for short phones. */
@media (max-height: 480px) and (orientation: landscape) {
  canvas {
    height: clamp(160px, calc(100svh - 180px), 250px);
  }
}

.related-games {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-sunken) 72%, transparent);
  box-shadow: var(--shadow-sm);
}

.related-games h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0;
}

.related-games nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.related-games a {
  display: grid;
  gap: 5px;
  min-width: 0;
  min-height: 72px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--ink-muted);
  text-decoration: none;
}

.related-games a:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

.related-games strong,
.related-games span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.related-games strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.15;
}

.related-games span {
  font-size: 0.78rem;
  line-height: 1.35;
}

@media (max-width: 820px) {
  .related-games nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .related-games {
    padding: 14px;
  }

  .related-games nav {
    grid-template-columns: 1fr;
  }

  .related-games a {
    min-height: 0;
  }
}


.powerup-table td:nth-child(2) {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  white-space: nowrap;
}

.powerup-table td:first-child {
  color: var(--ink);
  font-weight: 700;
}

/* NeonAttack expanded HUD: eight counters without crowding the playable viewport. */
.hud {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 720px) {
  .hud {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .hud div {
    padding: 6px 6px;
  }

  .label {
    font-size: 0.56rem;
  }

  .hud strong {
    margin-top: 3px;
    font-size: clamp(0.72rem, 3.1vw, 0.96rem);
  }
}

@media (max-width: 420px) and (orientation: portrait) {
  canvas {
    height: clamp(220px, calc(100svh - 330px), 400px);
  }
}

@media (max-height: 480px) and (orientation: landscape) {
  .hud {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .hud div {
    padding: 4px 5px;
  }

  .label {
    font-size: 0.5rem;
  }

  .hud strong {
    font-size: 0.72rem;
  }

  canvas {
    height: clamp(150px, calc(100svh - 176px), 250px);
  }
}


.hud-value {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.hud-icon,
.inline-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.35em;
  height: 1.35em;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--brand-strong);
  font-family: var(--font-mono);
  font-size: 0.68em;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 12px color-mix(in srgb, currentColor 24%, transparent);
}

.inline-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 7px;
  font-size: 0.72rem;
  vertical-align: -0.2rem;
}

.icon-score { color: #ffd166; }
.icon-wave { color: #63d8ff; }
.icon-combo { color: #ffab40; }
.icon-rapid { color: #24e6ff; }
.icon-beam { color: #67ffb7; }
.icon-repair { color: #ffcf5a; border-radius: 6px; }
.icon-charge { color: #ff3fd4; box-shadow: inset 0 0 0 3px color-mix(in srgb, currentColor 22%, transparent), 0 0 12px color-mix(in srgb, currentColor 24%, transparent); }
.icon-shield { color: #67ffb7; border-radius: 7px 7px 12px 12px; }

@media (max-width: 720px) {
  .hud-value {
    gap: 4px;
  }

  .hud-icon {
    width: 1.18em;
    height: 1.18em;
    font-size: 0.62em;
  }
}
