:root {
  --copyright-color: white;
}

:root.light {
  --copyright-color: black;
}

* {
  box-sizing: border-box;
}

canvas {
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
}

div.copyright {
  color: var(--copyright-color);
  z-index: 999;
  text-align: center;
  width: 90%;
  font-size: 12px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

div.copyright a {
  color: var(--copyright-color);
}

.icon {
  vertical-align: middle;
  background: currentColor;
  width: 25px;
  height: 25px;
  display: inline-block;
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}

.icon.play {
  mask-image: url("play.5e380e85.svg");
}

.icon.shuffle {
  mask-image: url("shuffle.ae708aec.svg");
}

.icon.megaphone {
  mask-image: url("megaphone.7e17ce4a.svg");
}

.icon.record {
  mask-image: url("record.4adf1f81.svg");
}

.icon.map {
  mask-image: url("map.9561646e.svg");
}

.icon.trophy {
  mask-image: url("trophy.861e3950.svg");
}

.icon.bomb {
  mask-image: url("bomb.5fe30a0c.svg");
}

.icon.sun {
  mask-image: url("sun.eafc49bf.svg");
}

.icon.moon {
  mask-image: url("moon.7ef3d295.svg");
}

#settings {
  z-index: 999;
  visibility: visible;
  opacity: 1;
  background: #666;
  border-radius: 10px;
  min-width: 50%;
  padding: 10px;
  transition: visibility, opacity 1s linear;
  display: flex;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
}

#settings.hide {
  opacity: 0;
  visibility: hidden;
}

#settings h3 {
  color: #fefefe;
  margin: 0;
  padding: 0;
  font-size: 12pt;
}

#settings textarea {
  background: #999;
  border: none;
  width: 100%;
  min-height: 5rem;
  font-size: 14pt;
}

#settings button, #settings .btn {
  color: #fefefe;
  background: #222;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  display: inline-block;
  position: relative;
}

#settings button:active:after, #settings .btn:active:after {
  content: "";
  background: #00000080;
  position: absolute;
  inset: 0;
}

#settings button#btnShop, #settings .btn#btnShop {
  height: 35px;
}

#settings button#btnShop img, #settings .btn#btnShop img {
  width: 25px;
  height: 25px;
}

#settings button.new:before, #settings .btn.new:before {
  color: #fff;
  content: "NEW";
  z-index: 1;
  background: #a00;
  border-radius: 6px;
  padding: 2px 4px;
  font-size: 9px;
  position: absolute;
  top: -4px;
  right: -10px;
}

#settings div.theme {
  color: #fff;
  flex-grow: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

#settings div.left {
  flex-grow: 1;
  flex-shrink: 1;
  order: 1;
}

#settings div.left .actions {
  justify-content: stretch;
  align-items: center;
  gap: 2px;
  display: flex;
}

#settings div.left .actions div.sep {
  flex-grow: 1;
}

#settings .btn-toggle-settings {
  display: none;
}

#settings div.right {
  flex-grow: 0;
  flex-shrink: 0;
  order: 2;
}

#settings div.right div.row {
  align-items: center;
  height: 35px;
  display: flex;
}

#settings div.right div.row label {
  color: #fff;
  flex-grow: 0;
  flex-shrink: 0;
  width: 150px;
  padding-left: 1rem;
}

#settings div.right div.row .toggle-item {
  width: 50%;
}

#settings select {
  background: #999;
  border-radius: 5px;
  width: 100%;
  height: 25px;
}

#settings input[type="checkbox"] {
  vertical-align: middle;
  width: 50px;
  height: 25px;
  padding-right: 63px;
  display: inline-block;
  position: relative;
}

#settings input[type="checkbox"]:before {
  content: "";
  background: #999;
  border-radius: 25px;
  width: 50px;
  height: 25px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

#settings input[type="checkbox"]:after {
  content: "";
  background: #ccc;
  border-radius: 25px;
  width: 25px;
  height: 25px;
  transition: transform .2s;
  position: absolute;
  top: 0;
  left: 0;
}

#settings input[type="checkbox"]:checked:after {
  background: #fff;
  transform: translateX(100%);
}

#settings input[type="checkbox"]:checked:before {
  content: "";
  background: #00baff;
}

#settings .btn-group {
  justify-content: stretch;
  display: flex;
}

#settings .btn-group > * {
  box-sizing: border-box;
  color: #fefefe;
  background: #999;
  border: none;
  border-radius: 0;
  flex-grow: 0;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 33%;
  height: 25px;
  padding: 0;
  display: flex;
  overflow: hidden;
}

#settings .btn-group > :first-child {
  border-radius: 10px 0 0 10px;
}

#settings .btn-group > :last-child {
  border-radius: 0 10px 10px 0;
}

#settings .btn-group > .active:before {
  content: "";
  vertical-align: middle;
  background: #fff;
  width: 15px;
  height: 15px;
  display: inline-block;
  mask-image: url("check.c558835f.svg");
  mask-repeat: no-repeat;
}

#settings .btn-group > .active {
  background: #333;
}

#settings .btn-group input[type="number"] {
  box-sizing: border-box;
  text-align: center;
}

#notice {
  z-index: 1001;
  color: #333;
  background: #ffffffe6;
  border-radius: 30px;
  flex-direction: column;
  width: 500px;
  max-width: 90%;
  padding: 10px;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

#notice h1 {
  background-color: #fd0;
  border-bottom: 1px solid #333;
  align-items: center;
  margin: -10px -10px 0;
  padding: 10px 5px 10px .5em;
  display: flex;
}

#notice h1:before {
  content: "";
  background-image: url("megaphone.7e17ce4a.svg");
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-right: .2em;
  display: inline-block;
}

#notice div.notice-body {
  padding: 0 .5em;
}

#notice div.notice-action {
  justify-content: end;
  display: flex;
}

#notice div.notice-action button {
  color: #fefefe;
  background: #222;
  border: none;
  border-radius: 20px;
  width: 50%;
  height: 50px;
  padding: 5px 10px;
  position: relative;
  overflow: hidden;
}

#notice div.notice-action button:active:after {
  content: "";
  background: #00000080;
  position: absolute;
  inset: 0;
}

@media screen and (width <= 750px) {
  #settings {
    opacity: 1;
    visibility: visible;
    width: calc(100% - 2rem);
    min-width: 0;
    max-width: 100%;
    transition: visibility, opacity 1s linear;
    display: block;
    bottom: 60px;
    overflow: hidden;
  }

  #settings.hide {
    opacity: 0;
    visibility: hidden;
  }

  #settings .btn-toggle-settings {
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    margin-bottom: 6px;
    font-size: 11pt;
    display: flex;
  }

  #settings .btn-toggle-settings .toggle-arrow {
    font-style: normal;
  }

  #settings .collapsible-rows.collapsed {
    display: none;
  }

  #settings textarea {
    min-height: 2.5rem;
    font-size: 11pt;
  }

  #settings div.right div.row {
    border-bottom: 1px solid #555;
    height: auto;
    padding: .5rem 0;
    display: block;
  }

  #settings div.right div.row label {
    width: 100%;
    margin-bottom: .5rem;
    padding-left: 0;
    display: block;
  }

  #settings div.right div.row.row-toggles {
    flex-wrap: wrap;
    display: flex;
  }

  #settings div.right div.row.row-toggles .toggle-item {
    flex-direction: column;
    align-items: start;
    width: 50%;
    display: flex;
  }

  #settings div.right div.row.row-toggles label {
    order: 0;
    margin-bottom: .3rem;
  }

  #settings div.right div.row.row-toggles input[type="checkbox"] {
    order: 1;
  }

  #settings div.right div.row.row-theme {
    display: none;
  }

  #settings div.right div.row .icon {
    width: 15px;
    height: 15px;
  }

  #notice {
    box-sizing: border-box;
    z-index: 1001;
    color: #333;
    background: #ffffffe6;
    border-radius: 4px;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 5px 10px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
  }

  #notice div.notice-body {
    flex-grow: 1;
  }
}

div.toast {
  z-index: 1000;
  background: #ccc;
  border-radius: 4px;
  padding: 8px;
  animation: .2s linear fade-in, .2s linear 1s reverse fade-in;
  position: fixed;
  bottom: 10px;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%);
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translate(-50%, 100%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%);
  }
}

.link_donation {
  color: #fff;
  text-shadow: -2px 0 #000, 0 2px #000, 2px 0 #000, 0 -2px #000;
  background: repeating-linear-gradient(45deg, #fa0, #fa0 20px, #222 20px 40px);
  border-radius: .5em;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1em;
  padding: 1em;
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: none;
  display: flex;
}

.shop-button {
  color: #fff;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  padding: .2em .4em .4em;
  font-size: 32px;
  font-weight: bold;
  line-height: 48px;
  text-decoration: none;
  display: flex;
}

.shop-button img {
  width: 48px;
  height: 48px;
  margin-bottom: -4px;
  margin-right: .2em;
}

.shop-button {
  background-color: #07f;
  border: 2px solid #000;
  border-radius: 10px;
}

@keyframes rbd-orbit {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rbd-jitter {
  0% {
    transform: translate(0) scale(1) rotate(0);
  }

  18% {
    transform: translate(11px, -7px) scale(.86) rotate(34deg);
  }

  37% {
    transform: translate(-9px, 13px) scale(1.12) rotate(-58deg);
  }

  53% {
    transform: translate(14px, 6px) scale(.92) rotate(78deg);
  }

  71% {
    transform: translate(-12px, -10px) scale(1.08) rotate(-110deg);
  }

  88% {
    transform: translate(7px, 12px) scale(.95) rotate(140deg);
  }

  100% {
    transform: translate(-5px, -4px) scale(1.04) rotate(-30deg);
  }
}

@keyframes rbd-pop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-30deg);
  }

  60% {
    opacity: 1;
    transform: scale(1.18) rotate(8deg);
  }

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

.actions-secondary {
  margin-top: 8px;
}

.actions-secondary button {
  color: #fff;
  letter-spacing: .05em;
  cursor: pointer;
  background: linear-gradient(135deg, #3b1060 0%, #6d28d9 100%);
  border: 1px solid #c484fc99;
  border-radius: 8px;
  flex: 1;
  padding: 10px;
  font-weight: bold;
  transition: transform .1s, box-shadow .2s;
  box-shadow: 0 0 12px #9333ea66;
}

.actions-secondary button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px #c484fcb3;
}

.actions-secondary button:active {
  transform: translateY(0);
}

.rbd-overlay {
  z-index: 9999;
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: #02040ce0;
  justify-content: center;
  align-items: center;
  font-family: Oxanium, sans-serif;
  animation: .35s ease-out both rbd-overlay-in;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes rbd-overlay-in {
  from {
    opacity: 0;
    -webkit-backdrop-filter: blur() saturate();
  }

  to {
    opacity: 1;
  }
}

.rbd-stack {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  display: flex;
  position: relative;
}

.rbd-title {
  letter-spacing: .18em;
  color: #c484fcd9;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}

.rbd-orb {
  background: radial-gradient(circle at 50% 40%, #3c147859 0%, #080418d9 70%);
  border: 2px solid #c484fc66;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: min(360px, 90vw);
  height: min(360px, 90vw);
  display: flex;
  position: relative;
  box-shadow: 0 0 36px #9333ea73, inset 0 0 60px #7c3aed2e;
}

.rbd-ball-orbit {
  width: 0;
  height: 0;
  animation: rbd-orbit var(--orbit-dur, 1s) cubic-bezier(.45, .05, .55, .95) infinite;
  animation-direction: var(--orbit-dir, normal);
  animation-delay: var(--orbit-delay, 0s);
  position: absolute;
}

.rbd-ball-mix {
  width: var(--ball-size, 36px);
  height: var(--ball-size, 36px);
  left: calc(var(--ball-size, 36px) / -2);
  top: calc(var(--ball-radius, 100px) * -1 - var(--ball-size, 36px) / 2);
  background: radial-gradient(circle at 30% 28%, #fff 0%, #e9d5ff 28%, hsl(var(--ball-hue, 270), 80%, 65%) 65%, hsl(var(--ball-hue-dark, 265), 75%, 38%) 100%);
  animation: rbd-jitter var(--jitter-dur, 1s) ease-in-out infinite;
  animation-delay: var(--jitter-delay, 0s);
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 14px #c484fc8c, inset 0 -4px 10px #00000059;
}

.rbd-reveal-row {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 0 24px;
  display: flex;
  position: relative;
}

.rbd-ball-reveal {
  font-variant-numeric: tabular-nums;
  color: #3b1060;
  text-shadow: 0 1px #fff6;
  background: radial-gradient(circle at 30% 28%, #fff 0%, #fde68a 30%, #f59e0b 70%, #b45309 100%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  font-size: 22px;
  font-weight: 900;
  animation: .45s cubic-bezier(.34, 1.56, .64, 1) both rbd-pop;
  display: flex;
  box-shadow: 0 0 22px #f59e0bb3, inset 0 -6px 12px #0000004d;
}

.rbd-footer {
  font-variant-numeric: tabular-nums;
  color: #c484fc99;
  font-size: 12px;
}

@keyframes rbd-card-pop {
  0% {
    opacity: 0;
    transform: scale(.6) rotate(-4deg);
  }

  70% {
    opacity: 1;
    transform: scale(1.05) rotate(1deg);
  }

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

.rbd-input-card {
  z-index: 1;
  color: #fff;
  background: radial-gradient(circle at 20% 15%, #fde68a1a, #0000 45%), radial-gradient(circle at 80% 85%, #f4a8c814, #0000 50%), linear-gradient(140deg, #3d2366 0%, #1e1248 100%);
  border: 4px solid #c084fc;
  border-radius: 32px;
  flex-direction: column;
  gap: 20px;
  min-width: min(340px, 92vw);
  padding: 34px 36px 28px;
  animation: .45s cubic-bezier(.34, 1.56, .64, 1) both rbd-card-pop;
  display: flex;
  position: relative;
  box-shadow: 0 0 0 8px #7c3aed38, 0 18px 50px #0a051e8c, inset 0 2px #ffffff2e;
}

.rbd-input-card h2 {
  letter-spacing: .04em;
  text-align: center;
  color: #fde047;
  text-shadow: -2px -2px #b45309, 2px -2px #b45309, -2px 2px #b45309, 2px 2px #b45309, 0 4px #00000040;
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.rbd-input-card label {
  text-align: center;
  color: #e9d5ff;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.rbd-input-card input[type="number"] {
  color: #4c1d95;
  text-align: center;
  font-variant-numeric: tabular-nums;
  background: #fefce8;
  border: 3px solid #c084fc;
  border-radius: 999px;
  outline: none;
  padding: 14px 22px;
  font-size: 22px;
  font-weight: 900;
  transition: border-color .15s, box-shadow .15s;
  box-shadow: inset 0 3px 6px #7c3aed2e;
}

.rbd-input-card input[type="number"]:focus {
  border-color: #f59e0b;
  box-shadow: inset 0 3px 6px #f59e0b38, 0 0 0 4px #fcd34d59;
}

.rbd-input-card .rbd-actions {
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
  display: flex;
}

.rbd-input-card .rbd-actions button {
  letter-spacing: .03em;
  cursor: pointer;
  border: 3px solid #0000;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 900;
  transition: transform 80ms, box-shadow .15s;
}

.rbd-input-card .rbd-actions button.primary {
  color: #4c1d95;
  text-shadow: 0 1px #fff6;
  background: linear-gradient(#fde047 0%, #f59e0b 100%);
  border-color: #b45309;
  box-shadow: 0 4px #b45309, 0 0 18px #fcd34d73;
}

.rbd-input-card .rbd-actions button:not(.primary) {
  color: #fff;
  background: linear-gradient(#c084fc 0%, #7c3aed 100%);
  border-color: #4c1d95;
  box-shadow: 0 4px #4c1d95;
}

.rbd-input-card .rbd-actions button:hover {
  transform: translateY(-2px);
}

.rbd-input-card .rbd-actions button:hover.primary {
  box-shadow: 0 6px #b45309, 0 0 26px #fcd34da6;
}

.rbd-input-card .rbd-actions button:hover:not(.primary) {
  box-shadow: 0 6px #4c1d95;
}

.rbd-input-card .rbd-actions button:active {
  transform: translateY(2px);
}

.rbd-input-card .rbd-actions button:active.primary {
  box-shadow: 0 2px #b45309;
}

.rbd-input-card .rbd-actions button:active:not(.primary) {
  box-shadow: 0 2px #4c1d95;
}

#settings.monster-theme {
  background: radial-gradient(circle at 15% 10%, #fde68a12, #0000 45%), radial-gradient(circle at 85% 85%, #f4a8c80f, #0000 50%), linear-gradient(140deg, #2d1b4e 0%, #1a0f3a 100%);
  border: 4px solid #c084fc;
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 0 0 6px #7c3aed2e, 0 14px 44px #0a051e8c, inset 0 2px #ffffff26;
}

#settings.monster-theme h3 {
  letter-spacing: .04em;
  color: #fde047;
  text-shadow: -1.5px -1.5px #b45309, 1.5px -1.5px #b45309, -1.5px 1.5px #b45309, 1.5px 1.5px #b45309, 0 3px #0003;
  margin-bottom: 8px;
  font-size: 14pt;
  font-weight: 900;
}

#settings.monster-theme textarea {
  color: #4c1d95;
  background: #fefce8;
  border: 3px solid #c084fc;
  border-radius: 18px;
  padding: 12px 16px;
  font-weight: 700;
  transition: border-color .15s, box-shadow .15s;
  box-shadow: inset 0 2px 4px #7c3aed1f;
}

#settings.monster-theme textarea:focus {
  border-color: #f59e0b;
  outline: none;
  box-shadow: inset 0 2px 4px #f59e0b2e, 0 0 0 3px #fcd34d4d;
}

#settings.monster-theme div.left .actions {
  gap: 8px;
  margin-top: 4px;
}

#settings.monster-theme div.left .actions > button {
  color: #fff;
  letter-spacing: .03em;
  background: linear-gradient(#c084fc 0%, #7c3aed 100%);
  border: 2px solid #4c1d95;
  border-radius: 999px;
  flex: 1;
  padding: 8px 14px;
  font-weight: 800;
  transition: transform 80ms, box-shadow .15s;
  box-shadow: 0 3px #4c1d95;
}

#settings.monster-theme div.left .actions > button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px #4c1d95;
}

#settings.monster-theme div.left .actions > button:active {
  transform: translateY(1px);
  box-shadow: 0 1px #4c1d95;
}

#settings.monster-theme div.left .actions > button#btnStart {
  color: #4c1d95;
  text-shadow: 0 1px #fff6;
  background: linear-gradient(#fde047 0%, #f59e0b 100%);
  border-color: #b45309;
  box-shadow: 0 3px #b45309;
}

#settings.monster-theme div.left .actions > button#btnStart:hover {
  box-shadow: 0 5px #b45309;
}

#settings.monster-theme div.left .actions > button#btnStart:active {
  box-shadow: 0 1px #b45309;
}

#settings.monster-theme .actions-secondary button {
  color: #4c1d95;
  text-shadow: 0 1px #fff6;
  letter-spacing: .04em;
  background: linear-gradient(#fde047 0%, #f59e0b 100%);
  border: 2px solid #b45309;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  transition: transform 80ms, box-shadow .15s;
  box-shadow: 0 4px #b45309, 0 0 18px #fcd34d59;
}

#settings.monster-theme .actions-secondary button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px #b45309, 0 0 26px #fcd34d99;
}

#settings.monster-theme .actions-secondary button:active {
  transform: translateY(1px);
  box-shadow: 0 2px #b45309;
}

#settings.monster-theme select {
  color: #4c1d95;
  background: #fefce8;
  border: 2px solid #c084fc;
  border-radius: 12px;
  height: 32px;
  padding: 0 10px;
  font-weight: 700;
}

#settings.monster-theme div.right div.row label {
  color: #e9d5ff;
  font-weight: 700;
}

#settings.monster-theme input[type="checkbox"]:before {
  background: #4c1d95;
}

#settings.monster-theme input[type="checkbox"]:after {
  background: #e9d5ff;
}

#settings.monster-theme input[type="checkbox"]:checked:before {
  background: #fde047;
}

#settings.monster-theme input[type="checkbox"]:checked:after {
  background: #fff;
}

#settings.monster-theme .btn-group {
  background: #4c1d9566;
  border: 2px solid #c084fc;
  border-radius: 999px;
  overflow: hidden;
}

#settings.monster-theme .btn-group > * {
  color: #e9d5ff;
  background: none;
  border: none;
  height: 28px;
  font-weight: 700;
}

#settings.monster-theme .btn-group > .active {
  color: #4c1d95;
  background: linear-gradient(#fde047 0%, #f59e0b 100%);
}

#settings.monster-theme .btn-group input[type="number"] {
  color: #4c1d95;
  text-align: center;
  background: #fefce8;
  font-weight: 800;
}

#settings.monster-theme .row-theme .theme {
  color: #fde047;
}
/*# sourceMappingURL=index.72fc1a99.css.map */
