:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #111318;
  color: #f6f2e8;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(245, 183, 88, 0.26), transparent 30%),
    radial-gradient(circle at 78% 72%, rgba(73, 186, 165, 0.22), transparent 31%),
    linear-gradient(135deg, #15171d 0%, #232737 48%, #17191f 100%);
}

button {
  font: inherit;
}

.shell {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  border: 0;
  background: #171a21;
  box-shadow: none;
}

.screen {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 46px);
}

.hidden {
  display: none !important;
}

.menu-screen {
  background:
    linear-gradient(rgba(17, 19, 24, 0.42), rgba(17, 19, 24, 0.76)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 84px);
}

.login-screen {
  background:
    linear-gradient(rgba(17, 19, 24, 0.45), rgba(17, 19, 24, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 84px);
}

.login-panel {
  width: min(520px, 92vw);
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.auth-panel {
  width: min(420px, 92vw);
  display: grid;
  gap: 14px;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(20, 22, 28, 0.9);
}

.auth-panel label {
  display: grid;
  gap: 7px;
  color: #d5d1c7;
  font-weight: 800;
}

.auth-panel input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  background: #111318;
  color: #f6f2e8;
  font: inherit;
}

.auth-panel .primary-button {
  min-height: 50px;
}

.auth-message {
  min-height: 24px;
  margin: 0;
  color: #66dac4 !important;
}

.magma-title {
  position: relative;
  display: inline-block;
  padding: 24px 34px;
}

.login-panel h1 {
  margin-bottom: 0;
  color: #fff2d8;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  text-shadow:
    3px 0 0 rgba(255, 76, 96, 0.5),
    -3px 0 0 rgba(74, 216, 205, 0.48),
    0 0 28px rgba(255, 211, 92, 0.42),
    0 9px 24px rgba(0, 0, 0, 0.36);
}

.glitch-particle {
  position: absolute;
  width: 34px;
  height: 6px;
  background: #66dac4;
  box-shadow: 0 0 14px rgba(102, 218, 196, 0.55);
  transform: skewX(-14deg);
  animation: glitch-flicker 1.6s steps(2, end) infinite;
}

.particle-one {
  left: 2%;
  top: 14%;
}

.particle-two {
  right: 4%;
  top: 24%;
  width: 22px;
  background: #ff5b5b;
  animation-delay: 0.2s;
}

.particle-three {
  left: 13%;
  bottom: 14%;
  width: 26px;
  background: #ffd35c;
  animation-delay: 0.35s;
}

.particle-four {
  right: 18%;
  bottom: 8%;
  width: 38px;
  background: #66dac4;
  animation-delay: 0.55s;
}

.particle-five {
  left: 48%;
  top: 4%;
  width: 18px;
  background: #ff5b5b;
  animation-delay: 0.8s;
}

.particle-six {
  right: 42%;
  bottom: 0;
  width: 20px;
  background: #ffd35c;
  animation-delay: 1s;
}

@keyframes glitch-flicker {
  0%,
  72%,
  100% {
    opacity: 0.9;
    translate: 0 0;
  }

  76% {
    opacity: 0.2;
    translate: -8px 2px;
  }

  82% {
    opacity: 1;
    translate: 7px -1px;
  }
}

.login-panel p {
  color: #d5d1c7;
  font-size: 1.12rem;
}

.google-button {
  min-height: 44px;
}

.start-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.login-form {
  width: 220px;
  display: grid;
  gap: 10px;
}

.login-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  background: #111318;
  color: #f6f2e8;
  font: inherit;
}

.login-form .primary-button {
  min-height: 56px;
}

.login-panel .secondary-button {
  width: 220px;
  min-height: 64px;
  padding: 0 18px;
  font-size: 1.25rem;
}

.login-message {
  min-height: 24px;
  color: #ffd35c !important;
}

.user-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 8px 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #111318;
  font-weight: 800;
}

.user-badge img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.menu-title {
  width: min(760px, 92vw);
  text-align: center;
}

.kicker {
  margin: 0 0 10px;
  color: #66dac4;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  color: #fff9ec;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.menu-title p:last-child,
.panel p {
  color: #d5d1c7;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
}

.menu-actions {
  position: absolute;
  bottom: clamp(28px, 7vh, 74px);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-actions .primary-button,
.menu-actions .secondary-button {
  width: 220px;
  min-height: 64px;
  padding: 0 18px;
  font-size: 1.25rem;
}

.primary-button,
.secondary-button,
.icon-button,
.icon-only,
.pause-button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  color: #111318;
  font-weight: 800;
}

.primary-button {
  padding: 0 34px;
  background: #ffd35c;
}

.secondary-button,
.icon-button,
.icon-only,
.pause-button {
  background: rgba(255, 255, 255, 0.9);
}

.pause-button {
  padding: 0 14px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

.icon-only {
  width: 44px;
  display: grid;
  place-items: center;
}

.menu-corner {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
}

.abilities-corner {
  position: absolute;
  top: 18px;
  left: 178px;
  z-index: 5;
}

.teams-corner {
  position: absolute;
  top: 72px;
  left: 18px;
  z-index: 5;
}

.friends-corner {
  position: absolute;
  top: 126px;
  left: 18px;
  z-index: 5;
}

.leaderboard-corner {
  position: absolute;
  top: 180px;
  left: 18px;
  z-index: 5;
}

.login-corner {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
}

.settings-corner {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 6;
}

.admin-menu-button {
  position: absolute;
  top: 126px;
  right: 18px;
  z-index: 6;
}

.user-badge:not(.hidden) + .settings-corner {
  right: 18px;
  top: 72px;
}

.people-icon,
.back-icon,
.menu-icon,
.gear-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.people-icon::before,
.people-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #111318;
}

.people-icon::before {
  width: 8px;
  height: 8px;
  left: 2px;
  top: 2px;
  box-shadow: 8px 2px 0 #111318;
}

.people-icon::after {
  width: 18px;
  height: 8px;
  left: 1px;
  bottom: 2px;
}

.back-icon::before {
  content: "";
  position: absolute;
  inset: 4px 2px 4px 5px;
  border-left: 4px solid #111318;
  border-bottom: 4px solid #111318;
  transform: rotate(45deg);
}

.menu-icon {
  background: linear-gradient(#111318 0 0) 2px 4px / 16px 3px no-repeat,
    linear-gradient(#111318 0 0) 2px 9px / 16px 3px no-repeat,
    linear-gradient(#111318 0 0) 2px 14px / 16px 3px no-repeat;
}

.gear-icon {
  border: 4px solid #111318;
  border-radius: 50%;
}

.gear-icon::before,
.gear-icon::after {
  content: "";
  position: absolute;
  background: #111318;
  border-radius: 2px;
}

.gear-icon::before {
  width: 4px;
  height: 24px;
  left: 4px;
  top: -6px;
}

.gear-icon::after {
  width: 24px;
  height: 4px;
  left: -6px;
  top: 4px;
}

.settings-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: rgba(11, 12, 15, 0.78);
}

.settings-panel {
  width: min(420px, 92vw);
  max-height: min(760px, 86vh);
  overflow-y: auto;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #1b1f28;
}

.setting-row {
  display: grid;
  gap: 10px;
  color: #d5d1c7;
  font-weight: 800;
}

.setting-row input {
  width: 100%;
}

.settings-panel input:not([type="range"]) {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 10px;
  background: #111318;
  color: #f6f2e8;
  font: inherit;
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: #d5d1c7;
  font-weight: 800;
}

.admin-panel {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-tool-group {
  display: grid;
  gap: 10px;
}

.admin-panel input {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 10px;
  background: #111318;
  color: #f6f2e8;
  font: inherit;
}

.admin-output {
  min-height: 42px;
  max-height: 140px;
  overflow: auto;
  white-space: pre-wrap;
  color: #d5d1c7;
  font-size: 0.9rem;
}

.admin-confirm {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 211, 92, 0.38);
  border-radius: 8px;
  background: rgba(255, 211, 92, 0.08);
}

.admin-confirm p {
  margin: 0;
  color: #ffd35c;
  font-weight: 800;
}

.panel {
  width: min(760px, 94vw);
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(20, 22, 28, 0.86);
}

.panel h3 {
  margin: 18px 0 10px;
}

.friend-search {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 10px;
}

.friend-search input {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  background: #111318;
  color: #f6f2e8;
  font: inherit;
}

.friend-list {
  display: grid;
  gap: 8px;
}

.friend-list p {
  margin: 0;
}

.leaderboard-list {
  display: grid;
  gap: 10px;
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 92px 92px;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #f6f2e8;
  font-weight: 800;
}

.leaderboard-row span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leaderboard-row small {
  color: #aaa69d;
  font-weight: 800;
  text-align: right;
}

.friend-row {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #222631;
}

.friend-row button {
  min-height: 34px;
  padding: 0 12px;
}

.team-actions,
.team-lobby {
  display: grid;
  gap: 12px;
}

.team-code {
  display: block;
  padding: 12px;
  border-radius: 8px;
  background: #111318;
  color: #ffd35c;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0;
}

.online {
  color: #66dac4;
}

.offline {
  color: #aaa69d;
}

.side-currency {
  position: absolute;
  left: 18px;
  top: 86px;
  z-index: 4;
  min-width: 118px;
  max-width: min(260px, calc(100vw - 36px));
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border: 2px solid rgba(255, 211, 92, 0.55);
  border-radius: 8px;
  background: #222631;
  color: #f6f2e8;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.side-currency span {
  color: #c7c1b6;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.side-currency strong {
  color: #ffd35c;
  font-size: clamp(1rem, 1.8rem, 1.8rem);
  line-height: 1;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

#characterScreen {
  overflow: hidden;
}

#characterScreen .panel {
  margin: 70px auto 0;
}

#characterScreen .character-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 12px;
  scroll-snap-type: x proximity;
}

#characterScreen .character-card {
  flex: 0 0 260px;
  width: 260px;
  scroll-snap-align: start;
}

.character-toolbar {
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: 1fr 104px;
  gap: 10px;
  margin: 0 auto 12px;
}

.character-toolbar input {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  background: #171b24;
  color: #f6f2e8;
  font: inherit;
  font-weight: 800;
}

.character-strip {
  width: min(360px, 100%);
  display: flex;
  margin: 0 auto 14px;
  padding: 10px 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-gutter: stable;
}

.character-scroll-line {
  flex: 0 0 auto;
  width: 720px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd35c, #66dac4, #ffd35c);
}

.character-card {
  min-height: 160px;
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #222631;
  color: #f6f2e8;
}

.character-card.selected {
  border-color: #ffd35c;
}

.admin-character-card {
  border-color: rgba(102, 218, 196, 0.45);
}

.character-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.character-title h3 {
  margin: 0 0 4px;
}

.character-title p {
  color: #ffd35c;
  font-weight: 900;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.16);
}

.smiley-avatar {
  position: relative;
}

.smiley-avatar::before,
.smiley-avatar::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #171318;
}

.smiley-avatar::before {
  left: 18px;
}

.smiley-avatar::after {
  right: 18px;
}

.smiley-avatar span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 15px;
  height: 22px;
  border-bottom: 4px solid #171318;
  border-radius: 50%;
}

.medic-avatar {
  overflow: visible;
}

.medic-avatar span::before {
  content: "";
  position: absolute;
  left: -14px;
  top: -31px;
  width: 46px;
  height: 18px;
  border: 2px solid #171318;
  border-radius: 8px 8px 5px 5px;
  background: #f7fbff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.16);
}

.medic-avatar span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -28px;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  background:
    linear-gradient(#f02f3f 0 0) center / 4px 14px no-repeat,
    linear-gradient(#f02f3f 0 0) center / 14px 4px no-repeat;
}

.doge-avatar {
  position: relative;
  overflow: visible;
  border-radius: 50%;
  background: #f6d978 !important;
  box-shadow: none;
}

.doge-avatar::before,
.doge-avatar::after {
  content: "";
  position: absolute;
  top: -12px;
  width: 26px;
  height: 28px;
  background: #c88a37;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  z-index: 0;
}

.doge-avatar::before {
  left: -8px;
  transform: rotate(-42deg);
}

.doge-avatar::after {
  right: -8px;
  transform: rotate(42deg);
}

.doge-avatar span {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.doge-avatar span::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 21px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #171318;
  box-shadow: 22px 0 0 #171318;
}

.doge-avatar span::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 35px;
  width: 10px;
  height: 6px;
  border-radius: 50%;
  background: #171318;
}

.empty-note {
  grid-column: 1 / -1;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #222631;
  color: #c7c1b6;
  font-weight: 900;
}

.character-card p {
  margin: 0;
  color: #c7c1b6;
  line-height: 1.35;
}

.ability-list {
  margin-top: 10px !important;
  color: #66dac4 !important;
  font-weight: 900;
}

.character-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.character-actions button {
  min-height: 36px;
  padding: 0 12px;
}

.character-actions .selected-button {
  background: #4b4f58;
  color: #f6f2e8;
}

.character-details {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-height: min(290px, 42vh);
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-gutter: stable;
}

.character-level {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #171b24;
}

.character-level span {
  color: #c7c1b6;
  font-weight: 800;
}

.character-level strong {
  color: #ffd35c;
  font-size: 1.5rem;
}

.xp-bar {
  height: 14px;
  margin: 10px 0 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #111318;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.xp-bar span {
  display: block;
  height: 100%;
  background: #ffd35c;
}

.claim-button {
  min-height: 34px;
  margin: 6px 0 10px;
  padding: 0 12px;
}

.claimed {
  color: #66dac4;
}

.game-screen {
  grid-template-rows: auto 1fr;
  gap: 14px;
  background: #101217;
}

.hud {
  width: min(960px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hud .stat {
  flex: 0 0 82px;
  min-width: 0;
  overflow: hidden;
}

.hud .score-stat,
.hud .best-stat {
  flex-basis: 104px;
  width: 104px;
}

.hud .best-wave-stat {
  flex-basis: 96px;
  width: 96px;
}

.hud .wave-stat,
.hud .time-stat {
  flex-basis: 72px;
  width: 72px;
}

.hud .move-stat {
  flex: 0 0 108px;
  width: 108px;
  min-width: 108px;
  max-width: 108px;
  height: 48px;
  padding: 5px 8px;
}

.hud #stoneHud,
.hud #speedHud,
.hud #cloneHud,
.hud #ultimateHud,
.hud #windDashHud,
.hud #lavaTrapHud {
  flex: 0 0 108px !important;
  width: 108px !important;
  min-width: 108px !important;
  max-width: 108px !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 5px 8px !important;
}

.hud #gunHud {
  flex: 0 0 74px;
  width: 74px;
  min-width: 74px;
  max-width: 74px;
}

.hud #laserHud {
  flex: 0 0 82px;
  width: 82px;
  min-width: 82px;
  max-width: 82px;
}

.stat {
  min-height: 44px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #1d212b;
}

.stat span {
  display: block;
  color: #aaa69d;
  font-size: 0.76rem;
  font-weight: 700;
}

.stat strong {
  font-size: 1.15rem;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.hearts {
  flex: 0 0 86px;
  width: 86px;
  min-width: 86px;
  max-width: 86px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5b5b;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
}

canvas {
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #171b24;
  touch-action: none;
}

.game-over,
.pause-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  text-align: center;
  background: rgba(11, 12, 15, 0.82);
}

@media (max-width: 620px) {
  .shell {
    width: 100vw;
    height: 100vh;
    border: 0;
  }

  .screen {
    padding: 18px;
  }

  .menu-corner {
    top: 12px;
    left: 12px;
  }

  .abilities-corner {
    top: 12px;
    left: 154px;
  }

  .side-currency {
    position: static;
    width: min(100%, 220px);
    margin: 76px auto 12px;
  }

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

  .friend-search {
    grid-template-columns: 1fr;
  }

  .hud {
    align-content: start;
  }

  .stat {
    padding-inline: 8px;
  }
}
