@charset "UTF-8";
.rainbow-text,
.rainbow-header {
  width: fit-content;
  background: repeating-linear-gradient(90deg, red 0%, orange 14.2857142857%, yellow 28.5714285714%, rgb(0, 255, 76) 42.8571428571%, blue 57.1428571429%, rebeccapurple 71.4285714286%, rgb(245, 72, 170) 85.7142857143%, red 100%);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  animation: rainbowFlow 20s linear infinite alternate;
  position: relative;
  font-weight: bold;
}

.rainbow-text::after,
.header::after::after {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 20px;
  background: repeating-linear-gradient(90deg, red 0%, orange 14.2857142857%, yellow 28.5714285714%, rgb(0, 255, 76) 42.8571428571%, blue 57.1428571429%, rebeccapurple 71.4285714286%, rgb(245, 72, 170) 85.7142857143%, red 100%);
  background-size: 400% 100%;
  position: absolute;
  bottom: 2px;
  left: 0;
  animation: rainbowFlow 20s linear infinite alternate;
  animation-delay: 0.1s;
}

/* Golden glow with a tight, subtle ebbing animation */
.golden {
  color: #ffd966;
  text-shadow: 0 0 4px rgba(255, 214, 102, 0.9), 0 0 8px rgba(255, 165, 0, 0.6);
  animation: goldenEbb 2s infinite ease-in-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes goldenEbb {
  0% {
    text-shadow: 0 0 6px rgb(255, 214, 102), 0 0 12px rgba(255, 165, 0, 0.75);
    filter: brightness(1.05);
  }
  50% {
    text-shadow: 0 0 2px rgba(255, 214, 102, 0.35), 0 0 4px rgba(255, 165, 0, 0.25);
    filter: brightness(0.92);
  }
  100% {
    text-shadow: 0 0 6px rgb(255, 214, 102), 0 0 12px rgba(255, 165, 0, 0.75);
    filter: brightness(1);
  }
}
@font-face {
  font-family: "Finger Paint";
  src: url("../assets/fonts/FingerPaint.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitcount Prop Single";
  src: url("../assets/fonts/BitcountPropSingle.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../assets/fonts/BebasNeue.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dancing Script";
  src: url("../assets/fonts/DancingScript.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Averia Gruesa Libre";
  src: url("../assets/fonts/AveriaGruesaLibre.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Macondo";
  src: url("../assets/fonts/Macondo.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}
header {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  background-image: radial-gradient(ellipse 80% 65% at top, rgba(255, 255, 255, 0.1921568627), rgba(208, 208, 208, 0.0392156863));
  position: relative;
}
header .toast {
  position: absolute;
  width: fit-content;
  max-width: 50%;
  height: 20px;
  border: 2px solid darkslateblue;
  border-top: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-image: linear-gradient(to bottom in oklch longer hue, whitesmoke, darkslategray);
  color: black;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  text-align: center;
  z-index: 1001;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
header .toast * {
  margin: 0;
  padding: 0;
  line-height: 1;
}
header .toast .toast-header {
  text-decoration: underline;
  margin-bottom: 0.25rem;
}
header .toast .toast-content {
  font-size: 0.9rem;
}
header .toast .toast-desc {
  font-size: 0.6rem;
  margin-top: 0.5rem;
  color: lightblue;
}
header .toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0%);
}
@keyframes toastSlide {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-100%);
  }
  12.5% {
    /* 0.5s of 4s */
    opacity: 1;
    transform: translateX(-50%) translateY(0%);
  }
  87.5% {
    /* hold position */
    opacity: 1;
    transform: translateX(-50%) translateY(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-100%);
  }
}
header #desktop-or-web-display {
  position: absolute;
  top: 1px;
  left: 1px;
  font-size: 10px;
  color: darkslategray;
  font-style: italic;
}
header h1,
header .image-header {
  background-image: url("../assets/images/neonleopard.jpg");
  background-size: cover;
  background-position: center;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 30px;
  padding: 0;
  margin: 1rem;
  line-height: 1;
}
header h1:hover,
header .image-header:hover {
  cursor: pointer;
}
header div#install-pwa-btn:hover {
  cursor: pointer;
}
header .header-icons {
  display: flex;
  gap: 1rem;
}
header .header-icons #settings-icon,
header .header-icons #stats-icon,
header .header-icons #achievements-icon {
  cursor: pointer;
  width: 40px;
  height: 40px;
}
header .header-icons #settings-icon svg,
header .header-icons #stats-icon svg,
header .header-icons #achievements-icon svg {
  width: 100%;
  height: 100%;
  transition: fill 0.3s ease;
}
header .header-icons #settings-icon svg:hover,
header .header-icons #stats-icon svg:hover,
header .header-icons #achievements-icon svg:hover {
  fill: rgb(135, 226, 248);
  stroke: rgb(135, 226, 248);
}
header .header-icons #settings-icon svg:hover g path,
header .header-icons #stats-icon svg:hover g path,
header .header-icons #achievements-icon svg:hover g path {
  fill: rgb(135, 226, 248);
}

@keyframes clickPopupFade {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -400%) scale(1.4);
    opacity: 0.1;
  }
}
@keyframes rainbowFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 400% 0%;
  }
}
@keyframes rainbowCatMask {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}
@keyframes goldenSpawn {
  from {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
@keyframes goldenWobble {
  0% {
    transform: rotate(-6deg);
  }
  100% {
    transform: rotate(6deg);
  }
}
@keyframes clickFlash {
  0% {
    color: gray;
    fill: gray;
  }
  30% {
    color: lightblue;
    fill: lightblue;
  }
  100% {
    color: lightblue;
    fill: lightblue;
  }
}
#left-side #stats {
  border-top: 1px solid rgb(31, 53, 53);
  text-align: center;
  padding: 0.5rem 1rem;
  padding-bottom: 1rem;
  z-index: 5;
  background-image: radial-gradient(ellipse 80% 65% at top, rgba(255, 255, 255, 0.1921568627), rgba(208, 208, 208, 0.0392156863));
  position: relative;
}
#left-side #stats p {
  margin: 0;
  font-size: 0.8rem;
}
#left-side #stats .counter-display {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
}
#left-side #stats .counter-display #counter {
  word-break: break-all;
}
#left-side #stats .counter-display-mewnits {
  line-height: 1;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
#left-side #stats .click-rate-display {
  line-height: 0.5rem;
}
#left-side #stats #pause-resume {
  all: unset;
  position: absolute;
  bottom: 0;
  right: 0;
  width: fit-content;
  height: fit-content;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
#left-side .clicker-area {
  cursor: pointer;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background-image: url("../assets/images/living-rooms/0.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  padding-bottom: 1rem;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.3);
}
#left-side .clicker-area:active #clicker {
  scale: 1.05;
}
#left-side .clicker-area .clicker-area-nav {
  min-height: 1rem;
  width: 80%;
  position: absolute;
  top: 5px;
  border-radius: 20px;
  background-color: black;
  opacity: 0.8;
  display: flex;
  justify-content: space-evenly;
  overflow: hidden;
  z-index: 10;
}
#left-side .clicker-area .clicker-area-nav div {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#left-side .clicker-area .clicker-area-nav #clicking-nav-item {
  border-right: 1px solid darkgray;
}
#left-side .clicker-area .clicker-area-nav #biscuits-nav-item {
  border-left: 1px solid darkgray;
}
#left-side .clicker-area #bonus-display {
  text-align: center;
  position: absolute;
  margin: 0.5rem 1rem;
  top: 3.25rem;
  font-size: 20px;
  font-weight: bold;
  display: none;
}
#left-side .clicker-area .clicker-icons {
  position: absolute;
  left: 0;
  top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  z-index: 8;
  box-sizing: border-box;
}
#left-side .clicker-area .clicker-icons #use-boosts-icon {
  padding: 0.1rem 0.5rem;
  height: 19px;
  width: fit-content;
  background-color: black;
  opacity: 0.8;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}
#left-side .clicker-area .clicker-details {
  width: 80%;
  position: absolute;
  bottom: 2px;
  border-radius: 20px;
  background-color: black;
  opacity: 0.5;
  display: flex;
  justify-content: space-evenly;
}
#left-side .clicker-area .clicker-details::after {
  content: "";
  border-radius: inherit;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse 80% 65% at top, rgba(255, 255, 255, 0.1921568627), rgba(208, 208, 208, 0.0392156863));
}
#left-side .clicker-area .clicker-details #owned-cats,
#left-side .clicker-area .clicker-details .living-rooms,
#left-side .clicker-area .clicker-details .golden-paws-clicked {
  color: lightgray;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  gap: 0.2rem;
}
#left-side .clicker-area .clicker-details #owned-cats svg,
#left-side .clicker-area .clicker-details .living-rooms svg,
#left-side .clicker-area .clicker-details .golden-paws-clicked svg {
  width: 12px;
  height: 12px;
}
#left-side .clicker-area .clicker-details #owned-cats .golden-paw-icon,
#left-side .clicker-area .clicker-details .living-rooms .golden-paw-icon,
#left-side .clicker-area .clicker-details .golden-paws-clicked .golden-paw-icon {
  scale: 1.5;
}
#left-side .clicker-area .clicker-details #owned-cats #owned-cats-number,
#left-side .clicker-area .clicker-details #owned-cats #living-rooms-number,
#left-side .clicker-area .clicker-details #owned-cats #golden-paws-clicked-number,
#left-side .clicker-area .clicker-details .living-rooms #owned-cats-number,
#left-side .clicker-area .clicker-details .living-rooms #living-rooms-number,
#left-side .clicker-area .clicker-details .living-rooms #golden-paws-clicked-number,
#left-side .clicker-area .clicker-details .golden-paws-clicked #owned-cats-number,
#left-side .clicker-area .clicker-details .golden-paws-clicked #living-rooms-number,
#left-side .clicker-area .clicker-details .golden-paws-clicked #golden-paws-clicked-number {
  padding-top: 1px;
  font-size: 13px;
}
#left-side .clicker-area #clicker {
  position: relative;
  width: 60%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.001);
  transition: all 0.1s ease;
}
#left-side .clicker-area #clicker img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  pointer-events: none;
  transition: all 0.1s ease;
}
#left-side .clicker-area #clicker .cat-mask {
  position: absolute;
  inset: 0;
  background-color: transparent;
  background-image: none;
  background: none;
  opacity: 0;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
#left-side .clicker-area #clicker .cat-mask.rainbow {
  background: repeating-linear-gradient(90deg, red 0%, orange 14.2857142857%, yellow 28.5714285714%, rgb(0, 255, 76) 42.8571428571%, blue 57.1428571429%, rebeccapurple 71.4285714286%, rgb(245, 72, 170) 85.7142857143%, red 100%);
  background-size: 400% 100%;
  animation: rainbowFlow 10s linear infinite;
  opacity: 0.3;
}
#left-side .clicker-area .click-popup {
  position: absolute;
  font-size: 25px;
  font-weight: bold;
  color: white;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation: clickPopupFade 1.5s ease-out forwards;
  text-shadow: 0 0 8px rgb(255, 255, 255);
}
#left-side .clicker-area .golden-pawprint {
  position: absolute;
  opacity: 1;
  scale: 1;
  transition: all 1s ease;
  animation: goldenSpawn 1s ease-out, goldenWobble 0.5s ease-in-out infinite alternate;
  transform-origin: center;
}
#left-side .clicker-area .biscuits-area {
  height: 100%;
  width: 100%;
  backdrop-filter: blur(5px);
  z-index: 8;
  position: absolute;
  top: 0;
  padding-top: 30px;
  overflow: hidden;
  box-sizing: border-box;
}
#left-side .clicker-area .biscuits-area .biscuits-content {
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-display {
  margin: 0;
  padding: 0;
  text-align: center;
  word-wrap: break-word;
  padding: 5px 0;
  background-color: black;
  background-image: radial-gradient(ellipse 80% 65% at top, rgba(255, 255, 255, 0.1921568627), rgba(208, 208, 208, 0.0392156863));
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-display * {
  line-height: 1;
  margin: 0;
  padding: 0;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-display p {
  font-size: 11px;
  margin-top: 0.5rem;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: url("../assets/images/pillow.jpg");
  background-size: 100% 100%;
  object-fit: contain;
  background-repeat: no-repeat;
  overflow: hidden;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle #biscuits-bonus-display {
  position: absolute;
  top: 4rem;
  margin: 0.5rem;
  padding: 3px;
  display: none;
  text-align: center;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 55%;
  position: absolute;
  bottom: 0;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .right-arm-container,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .left-arm-container {
  position: relative;
  width: 50%;
  height: 100%;
  display: flex;
  transition: all 0.1s ease-in-out;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .right-arm-container .right-arm,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .right-arm-container .left-arm,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .right-arm-container .right-arm-mask,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .right-arm-container .left-arm-mask,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .left-arm-container .right-arm,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .left-arm-container .left-arm,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .left-arm-container .right-arm-mask,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .left-arm-container .left-arm-mask {
  position: absolute;
  inset: 0;
  display: flex;
  transition: all 0.1s ease-in-out;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .right-arm-container .left-arm-mask,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .left-arm-container .left-arm-mask {
  position: absolute;
  height: 100%;
  background-color: transparent;
  background-image: none;
  background: none;
  opacity: 0;
  mask-image: url("../assets/images/left.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../assets/images/left.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .right-arm-container .right-arm-mask,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .left-arm-container .right-arm-mask {
  position: absolute;
  height: 100%;
  background-color: transparent;
  background-image: none;
  background: none;
  opacity: 0;
  mask-image: url("../assets/images/right.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../assets/images/right.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .right-arm-container .right-arm-mask.rainbow,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .right-arm-container .left-arm-mask.rainbow,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .left-arm-container .right-arm-mask.rainbow,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .left-arm-container .left-arm-mask.rainbow {
  background: repeating-linear-gradient(90deg, red 0%, orange 14.2857142857%, yellow 28.5714285714%, rgb(0, 255, 76) 42.8571428571%, blue 57.1428571429%, rebeccapurple 71.4285714286%, rgb(245, 72, 170) 85.7142857143%, red 100%);
  background-size: 400% 100%;
  animation: rainbowFlow 10s linear infinite;
  opacity: 0.3;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .left-arm-container {
  justify-content: flex-end;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .arms-container .right-arm-container {
  justify-content: flex-start;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .biscuits-icons {
  margin: 0.25rem;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .biscuits-icons #boosts-icon,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .biscuits-icons #levels-icon {
  padding: 0.1rem 0.5rem;
  height: 19px;
  width: fit-content;
  background-color: black;
  opacity: 0.7;
  border-radius: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.3rem;
}
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .biscuits-icons #boosts-icon svg,
#left-side .clicker-area .biscuits-area .biscuits-content .biscuits-middle .biscuits-icons #levels-icon svg {
  margin: 0;
  padding: 0;
}
#left-side .clicker-area .biscuits-area .biscuits-content .paws {
  width: 100%;
  display: flex;
}
#left-side .clicker-area .biscuits-area .biscuits-content .paws .left-paw,
#left-side .clicker-area .biscuits-area .biscuits-content .paws .right-paw {
  display: flex;
  justify-content: center;
  position: relative;
  width: 50%;
  max-height: 100px;
  border: 3px solid bisque;
  background-color: saddlebrown;
}
#left-side .clicker-area .biscuits-area .biscuits-content .paws .left-paw img,
#left-side .clicker-area .biscuits-area .biscuits-content .paws .right-paw img {
  transition: all 0.04s ease-in-out;
  width: fit-content;
}
#left-side .clicker-area .biscuits-area .biscuits-content .paws .left-paw:active,
#left-side .clicker-area .biscuits-area .biscuits-content .paws .right-paw:active {
  background-color: brown;
}
#left-side .clicker-area .biscuits-area .biscuits-content .paws .left-paw:active img,
#left-side .clicker-area .biscuits-area .biscuits-content .paws .right-paw:active img {
  scale: 1.25;
}
#left-side .clicker-area .biscuits-area .biscuits-content .paws .left-paw span,
#left-side .clicker-area .biscuits-area .biscuits-content .paws .right-paw span {
  position: absolute;
  bottom: 2px;
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: lightgray;
}
#left-side .clicker-area .biscuits-area .biscuits-content .paws .left-paw span kbd,
#left-side .clicker-area .biscuits-area .biscuits-content .paws .right-paw span kbd {
  border-radius: 2px;
  padding: 1px 4px;
  border: 1px solid black;
  color: black;
  background-color: lightgray;
  position: relative;
}
#left-side .clicker-area .biscuits-area .biscuits-content .paws .left-paw span kbd::after,
#left-side .clicker-area .biscuits-area .biscuits-content .paws .right-paw span kbd::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse 80% 65% at top, rgba(255, 255, 255, 0.1921568627), rgba(208, 208, 208, 0.0392156863));
}
#left-side .clicker-area .biscuits-area .biscuits-content .paws .left-paw img {
  transform: rotateZ(-20deg);
}
#left-side .clicker-area .biscuits-area .biscuits-content .paws .right-paw img {
  transform: rotateZ(20deg);
}

#right-side {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* 🔒 Prevent text/image selection or dragging inside upgrades */
}
#right-side .upgrade,
#right-side .upgrade *,
#right-side .sub-upgrade,
#right-side .sub-upgrade * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
#right-side .upgrade img,
#right-side .sub-upgrade img {
  pointer-events: none;
  -webkit-user-drag: none;
}
#right-side h5,
#right-side .image-text {
  background-image: url("../assets/images/neonleopard.jpg");
  background-size: cover;
  background-position: center;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  padding: 0.2rem;
  padding-left: 0.4rem;
  margin: 0;
  width: 100%;
  font-style: italic;
  position: relative;
  box-sizing: border-box;
  border-top: 1px solid rgb(31, 53, 53);
  border-bottom: 1px solid rgb(31, 53, 53);
  height: 3rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
#right-side h5 #available-sub-upgrades-display,
#right-side h5 #available-upgrades-display,
#right-side .image-text #available-sub-upgrades-display,
#right-side .image-text #available-upgrades-display {
  height: 15px;
  width: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: border 50ms ease-in-out;
}
#right-side h5 #available-sub-upgrades-display.positive,
#right-side h5 #available-upgrades-display.positive,
#right-side .image-text #available-sub-upgrades-display.positive,
#right-side .image-text #available-upgrades-display.positive {
  border: 2px solid rgba(255, 255, 255, 0.7);
}
#right-side h5 button,
#right-side .image-text button {
  font-size: 9px;
  font-weight: bold;
  pointer-events: auto;
  cursor: pointer;
  padding: 1px;
}
#right-side h5::before,
#right-side .image-text::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: radial-gradient(ellipse 80% 65% at top, rgba(255, 255, 255, 0.1921568627), rgba(208, 208, 208, 0.0392156863));
}
#right-side .sub-upgrades {
  padding: 8px;
  overflow: auto;
  max-height: 100px;
  transition: height 0.1s linear;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-content: start;
}
#right-side .sub-upgrades::-webkit-scrollbar {
  width: 8px;
}
#right-side .sub-upgrades::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}
#right-side .sub-upgrades .sub-upgrade {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: 200px;
  border: 2px solid transparent;
  border-radius: 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.15s ease;
  font-size: 10px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 0 3px 10px transparent;
  overflow: clip;
}
#right-side .sub-upgrades .sub-upgrade strong {
  font-size: 12px;
  text-decoration: underline;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 0.5rem;
  padding-bottom: 0.75rem;
  box-sizing: border-box;
  width: 100%;
  word-break: break-word;
}
#right-side .sub-upgrades .sub-upgrade div {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
#right-side .sub-upgrades .sub-upgrade div p {
  word-break: break-word;
  margin: 0;
  padding: 0.5rem;
}
#right-side .sub-upgrades .sub-upgrade:hover {
  border-color: #666;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
#right-side .draggable {
  touch-action: none;
  user-select: none;
  cursor: row-resize;
  position: relative;
  height: 3rem;
  box-sizing: border-box;
}
#right-side .draggable button {
  pointer-events: auto;
  cursor: pointer;
}
#right-side .draggable::after {
  color: white;
  font-style: normal;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  content: "↕️";
  position: absolute;
  height: 100%;
  width: fit-content;
  top: 0;
  right: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
#right-side .upgrades {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  border-left: none;
  border-right: none;
}
#right-side .upgrades .upgrade {
  cursor: pointer;
  width: 100%;
  min-height: 120px;
  height: fit-content;
  border-bottom: 1px solid gray;
  font-size: 12px;
  flex: 0 0 auto;
  transition: all 0.2s ease;
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  background-image: radial-gradient(ellipse 80% 65% at top, rgba(255, 255, 255, 0.1921568627), rgba(208, 208, 208, 0.0392156863));
  will-change: transform;
}
#right-side .upgrades .upgrade.in {
  transform: translateX(0%);
}
#right-side .upgrades .upgrade.out {
  transform: translateX(60%);
}
#right-side .upgrades .upgrade img {
  min-height: 80px;
  height: 80px;
  max-height: 80px;
  min-width: 80px;
  width: 80px;
  max-width: 80px;
  padding-top: 9px;
}
#right-side .upgrades .upgrade .upgrade-info {
  width: 50%;
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  padding-top: 5px;
}
#right-side .upgrades .upgrade .upgrade-info strong {
  margin-top: 0.2rem;
  text-decoration: underline;
  font-size: 0.9rem;
  line-height: 1.2;
}
#right-side .upgrades .upgrade .upgrade-info div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 1.25rem;
}
#right-side .upgrades .upgrade .upgrade-info div p {
  margin: 0;
  line-height: 1;
  overflow-wrap: anywhere;
}
#right-side .upgrades .upgrade .upgrade-info div p:last-child {
  font-size: 0.6rem;
}
#right-side .upgrades .upgrade .upgrade-info div .upgrade-cost {
  color: rgb(255, 180, 180);
}
#right-side .upgrades .upgrade .upgrade-info div .upgrade-boost {
  color: rgb(180, 255, 180);
}
#right-side .upgrades .upgrade .upgrade-info div .upgrade-output {
  color: rgb(180, 180, 255);
}
#right-side .upgrades .upgrade .owned-number {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 7px;
  line-height: 1;
  font-style: italic;
}
#right-side .upgrades .upgrade.hidden * {
  display: none;
}
#right-side .upgrades .upgrade.hidden::after {
  content: "???";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}
#right-side .upgrades::-webkit-scrollbar {
  width: 8px;
}
#right-side .upgrades::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}
#right-side .sub-upgrade:hover,
#right-side .upgrade:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.buy-cheap-button,
.buy-many-button {
  border-radius: 2px;
  color: black;
  position: relative;
}
.buy-cheap-button::after,
.buy-many-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(ellipse 80% 65% at top, rgba(255, 255, 255, 0.1921568627), rgba(208, 208, 208, 0.0392156863));
}
.buy-cheap-button,
.buy-many-button {
  transition: all 0.1s ease;
  text-wrap: nowrap;
}

.buy-many-button {
  border: 2px solid rgba(255, 166, 0, 0.92);
  background-color: rgb(254, 188, 64);
}

.buy-cheap-button {
  border: 2px solid limegreen;
  background-color: rgb(81, 255, 81);
}

.buy-cheap-button:disabled,
.buy-many-button:disabled {
  color: darkslategrey;
  border-color: gray;
  background-color: darkgray;
}

.dialog-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.dialog-overlay.active {
  display: flex;
  padding: 0;
}

.dialog-content {
  background-color: #2a2a2a;
  padding: 1rem;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  min-height: 10%;
  max-height: 70%;
  color: lightgray;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  overflow-anchor: none;
  z-index: 9000;
}
.dialog-content::-webkit-scrollbar {
  width: 8px;
}
.dialog-content::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}
.dialog-content h2,
.dialog-content h3,
.dialog-content p {
  margin: 0;
  padding: 0;
}
.dialog-content h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-decoration: underline;
}
.dialog-content h3 {
  margin-top: 0.5rem;
}
.dialog-content button {
  margin-top: 1rem;
}
.dialog-content button:hover {
  cursor: pointer;
}
.dialog-content .dialog-body {
  width: 100%;
}
.dialog-content .dialog-body h2 {
  width: 100%;
  text-align: center;
}
.dialog-content .dialog-body .bonus-header {
  display: flex;
  align-items: center;
}
.dialog-content .dialog-body .bonus-header .bonus-header-details {
  margin: 0;
  padding: 0;
  margin-left: 0.7rem;
  max-width: 75%;
  text-decoration: none;
  font-style: italic;
  color: rgb(145, 145, 145);
  font-size: 12px;
  transform: translate(0px, 5px);
}
.dialog-content .dialog-body #boosts-container,
.dialog-content .dialog-body #use-boosts-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dialog-content .dialog-body #boosts-container .boost-item,
.dialog-content .dialog-body #use-boosts-container .boost-item {
  border: 2px solid rgb(170, 166, 166);
  border-radius: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0.5rem;
  min-height: 52px;
}
.dialog-content .dialog-body #boosts-container .boost-item .boost-text-container,
.dialog-content .dialog-body #boosts-container .boost-item .buy-boost-button,
.dialog-content .dialog-body #use-boosts-container .boost-item .boost-text-container,
.dialog-content .dialog-body #use-boosts-container .boost-item .buy-boost-button {
  max-width: 50%;
}
.dialog-content .dialog-body #boosts-container .boost-item .boost-icon-and-text,
.dialog-content .dialog-body #use-boosts-container .boost-item .boost-icon-and-text {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.dialog-content .dialog-body #boosts-container .boost-item .boost-icon-and-text .boost-text-container,
.dialog-content .dialog-body #use-boosts-container .boost-item .boost-icon-and-text .boost-text-container {
  max-width: 140px;
}
.dialog-content .dialog-body #boosts-container .boost-item .boost-icon-and-text .boost-text-container .boost-name,
.dialog-content .dialog-body #use-boosts-container .boost-item .boost-icon-and-text .boost-text-container .boost-name {
  font-weight: bold;
  width: fit-content;
  text-decoration: underline;
}
.dialog-content .dialog-body #boosts-container .boost-item .boost-icon-and-text .boost-text-container .boost-desc,
.dialog-content .dialog-body #use-boosts-container .boost-item .boost-icon-and-text .boost-text-container .boost-desc {
  font-style: italic;
  font-size: 12px;
  color: gray;
}
.dialog-content .dialog-body #boosts-container .boost-item .owned-boosts,
.dialog-content .dialog-body #use-boosts-container .boost-item .owned-boosts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.dialog-content .dialog-body #boosts-container .boost-item .buy-boost-button,
.dialog-content .dialog-body #boosts-container .boost-item .use-boost-button,
.dialog-content .dialog-body #use-boosts-container .boost-item .buy-boost-button,
.dialog-content .dialog-body #use-boosts-container .boost-item .use-boost-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.dialog-content .dialog-body .all-levels {
  width: 100%;
  border: 1px solid slateblue;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dialog-content .dialog-body .all-levels .category {
  width: 100%;
  border: 1px solid rgba(50, 255, 126, 0.8);
  padding: 0.75rem 0;
}
.dialog-content .dialog-body .all-levels .category h3 {
  margin-top: 0;
  padding-left: 1rem;
}
.dialog-content .dialog-body .all-levels .category h4 {
  text-align: center;
  margin: 0;
  padding: 0;
}
.dialog-content .dialog-body .all-levels .category .level {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid violet;
  padding: 0.25rem 0;
}
.dialog-content .dialog-body .all-levels .category .level p {
  margin: 0;
  padding: 0;
}
.dialog-content .dialog-body .all-levels .category .level div {
  border-radius: 30px;
  border: 1px solid black;
  height: 15px;
  width: 90%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.dialog-content .dialog-body .all-levels .category .level div .chunk {
  font-size: 10px;
  border-radius: 0px;
  min-width: 20px;
  width: 10%;
  height: 100%;
  border: 1px solid gray;
  background-color: black;
  color: white;
}
.dialog-content .dialog-body .all-levels .category .level div .chunk:first-child {
  border-left: none;
}
.dialog-content .dialog-body .all-levels .category .level div .chunk:last-child {
  border-right: none;
}
.dialog-content .dialog-body .all-levels .category .level button {
  margin-top: 0.2rem;
}
.dialog-content .dialog-body .all-settings {
  display: flex;
  flex-direction: column;
}
.dialog-content .dialog-body .all-settings div {
  border: 1px solid gray;
  padding: 0.2rem;
  color: lightgray;
}
.dialog-content .dialog-body .all-settings * {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dialog-content .dialog-body .all-settings * * {
  margin: 0;
  padding: 0;
}
.dialog-content .dialog-body .stats-section h3 {
  text-decoration: underline;
}
.dialog-content .dialog-body .stats-section p {
  width: fit-content;
  color: rgba(0, 179, 255, 0.8);
  list-style: circle;
  margin-left: 1rem;
  position: relative;
}
.dialog-content .dialog-body .stats-section p span {
  color: whitesmoke;
  z-index: 3;
}
.dialog-content .dialog-body .stats-section p span .details {
  color: rgba(211, 211, 211, 0.639);
}
.dialog-content .dialog-body .stats-section p::before {
  content: "•";
  color: rgba(0, 179, 255, 0.8);
  position: absolute;
  left: -10px;
}
.dialog-content .dialog-body .stats-section p.no-before {
  margin-left: 3px;
  text-decoration: none;
}
.dialog-content .dialog-body .stats-section p.no-before::before {
  content: none;
}
.dialog-content .dialog-body .stats-section ul {
  padding-inline-start: 20px;
  margin: 0;
}
.dialog-content .dialog-body .stats-section ul p {
  color: lightskyblue;
}
.dialog-content .dialog-body .stats-section ul p span {
  color: whitesmoke;
}
.dialog-content .dialog-body .stats-section ul p span .details {
  color: rgba(211, 211, 211, 0.639);
}
.dialog-content .dialog-body .stats-section ul p::before {
  color: lightskyblue;
}
.dialog-content .dialog-body .stats-section .stats-card {
  border: 2px solid rgba(128, 128, 128, 0.502);
  border-radius: 20px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.dialog-content .dialog-body .stats-section .stats-card h3 {
  margin: 0;
  margin-bottom: 0.2rem;
}
.dialog-content .dialog-body .stats-section .clicks-header {
  margin-top: 0;
  color: lightblue;
  position: relative;
  width: fit-content;
  animation: clickFlash 1s infinite;
}
.dialog-content .dialog-body .stats-section .clicks-header:hover {
  cursor: pointer;
}
.dialog-content .dialog-body .stats-section .clicks-header svg {
  transform: translateY(4px) translateX(-7px);
}
.dialog-content .dialog-body .stats-section .clicks-header svg * {
  fill: lightblue;
  position: absolute;
  animation: clickFlash 1s infinite;
}
.dialog-content .dialog-body .stats-section .biscuits-header {
  text-decoration: none;
  max-height: 23px;
}
.dialog-content .dialog-body .stats-section .biscuits-header .bis {
  color: maroon;
  text-decoration: underline;
  animation: press 2s infinite;
  font-size: inherit;
}
.dialog-content .dialog-body .stats-section .biscuits-header .cuits {
  color: tan;
  text-decoration: underline;
  animation: press 2s infinite;
  animation-delay: 1s;
  font-size: inherit;
}
@keyframes press {
  0% {
    color: maroon;
    font-size: inherit;
  }
  50% {
    color: tan;
    font-size: 1.3rem;
  }
  100% {
    color: maroon;
    font-size: inherit;
  }
}
.dialog-content .dialog-body .stats-section .money-header,
.dialog-content .dialog-body .stats-section .no-before {
  width: fit-content;
  position: relative;
  /* vertical money gradient */
  background: linear-gradient(180deg, #1fae53 0%, #32ff7e 50%, #1fae53 100%);
  /* must be taller to allow vertical movement */
  background-size: 100% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* glow */
  text-shadow: 0 0 6px rgba(33, 196, 93, 0.5);
  animation: moneyShine 2.2s ease-in-out infinite;
}
.dialog-content .dialog-body .stats-section {
  /* vertical movement top → bottom → top */
}
@keyframes moneyShine {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.dialog-content .dialog-body .stats-section #yarn-detail-button {
  height: fit-content;
  width: fit-content;
  border: 2px solid gray;
  border-radius: 50%;
  margin: 0 2px;
  aspect-ratio: 1;
  font-size: 0.7rem;
  background-color: rgba(0, 0, 0, 0.196);
  position: relative;
}
.dialog-content .dialog-body .stats-section #yarn-detail-button:hover {
  cursor: pointer;
}
.dialog-content .dialog-body .stats-section #yarn-detail-button:hover::after {
  content: "(totalAchievements + totalSubUpgrades) / (earnedAchievements + ownedSubUpgrades)";
  height: fit-content;
  width: 220px;
  position: absolute;
  top: -225%;
  left: 50%;
  background-color: rgb(6, 6, 6);
  color: rgb(244, 244, 244);
  padding: 0.3rem 0.3rem;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-style: italic;
}

.earned-achievements {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.earned-achievements .earned-achievement {
  width: 43%;
  min-height: 80px;
  padding: 5px;
  border: 2px solid rgb(170, 166, 166);
  border-radius: 20px;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}
.earned-achievements .earned-achievement .earned-achievement-details {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
}
.earned-achievements .earned-achievement .earned-achievement-details p strong {
  text-decoration: underline;
  margin-bottom: 10px;
}
.earned-achievements .earned-achievement .earned-achievement-details p.ach-desc {
  margin-top: 5px;
  color: lightblue;
  font-style: italic;
  font-size: 0.7rem;
  opacity: 0.8;
}

.owned-ratio,
.earned-ratio {
  text-align: center;
  margin: 0;
  margin-bottom: 0.5rem;
}
.owned-ratio h3,
.earned-ratio h3 {
  font-style: italic;
  line-height: 1;
  margin: 0;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.owned-subupgrades {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-evenly;
}
.owned-subupgrades .owned-subupgrade {
  display: flex;
  flex-direction: column;
  border: 2px solid gray;
  border-radius: 20px;
  width: 48%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.owned-subupgrades .owned-subupgrade strong {
  text-decoration: underline;
  line-height: 1;
  background-color: gray;
  color: lightgray;
  padding: 5px 5px 5px 10px;
}
.owned-subupgrades .owned-subupgrade ul {
  margin: 0;
  padding: 0.5rem 0.4rem 0.75rem 1.3rem;
  font-size: 11px;
}
.owned-subupgrades .owned-subupgrade #id {
  position: absolute;
  bottom: 0;
  right: 9px;
  color: lightgray;
  font-size: 10px;
  font-style: italic;
}

input[type=range] {
  width: 150px;
}

#close-use-boosts-dialog,
#close-boosts-dialog,
#close-levels-dialog,
#close-achievements-dialog,
#close-stats-dialog,
#close-settings-dialog {
  all: unset;
  font-family: monospace;
  font-weight: bold;
  font-size: 25px;
  border: 3px solid maroon;
  background-image: radial-gradient(ellipse 70% 70% at top, rgb(249, 173, 173), red);
  border-radius: 50%;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
#close-use-boosts-dialog:hover,
#close-boosts-dialog:hover,
#close-levels-dialog:hover,
#close-achievements-dialog:hover,
#close-stats-dialog:hover,
#close-settings-dialog:hover {
  cursor: pointer;
}

.close-container {
  height: 5px;
  position: sticky;
  top: 0;
  width: 98%;
  display: flex;
  justify-content: flex-end;
  z-index: 4;
}

footer {
  flex: 0 0 auto;
  text-align: center;
  font-size: 0.8rem;
  color: lightgray;
  padding: 0 1rem;
  background-image: radial-gradient(ellipse 80% 65% at top, rgba(255, 255, 255, 0.1921568627), rgba(208, 208, 208, 0.0392156863));
  display: flex;
  justify-content: space-between;
}
footer a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}
footer a svg {
  width: 15px;
  height: 15px;
}
footer a svg * {
  fill: gray;
}

.loading-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

html,
body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  box-sizing: border-box;
  background-color: black;
  color: white;
  font-family: "Finger Paint", cursive;
  display: flex;
  flex-direction: column;
}
html main,
body main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
  min-height: 0;
}
html main #left-side,
html main #right-side,
body main #left-side,
body main #right-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/*# sourceMappingURL=style.css.map */
