@import "https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Outfit:wght@500;600;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

:root {
  --cream: #fbf3df;
  --warm: #f4c861;
  --orange: #e8843c;
  --brown: #6b4326;
  --red: #e0533a;
  --ink: #3a2a1c;
  --font: "Fredoka", "Outfit", system-ui, sans-serif;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: radial-gradient(circle at 50% 0, #ffe9b8, #f3c869 60%, #e3a94a);
  overflow: hidden;
}

.screen {
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.mute {
  top: 10px;
  z-index: 60;
  border: 2px solid var(--ink);
  background: var(--cream);
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.05rem;
  position: fixed;
  inset-inline-end: 10px;
  box-shadow: 0 3px #0000004d;
}

.menu, .over, .shop {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 460px;
  min-height: 100dvh;
  padding: 24px 18px;
  display: flex;
}

.splash {
  border-radius: 18px;
  width: min(86vw, 380px);
  box-shadow: 0 14px 34px #50280a66;
}

.big-btn {
  font-family: var(--font);
  color: var(--ink);
  border: 3px solid var(--ink);
  cursor: pointer;
  background: var(--warm);
  box-shadow: 0 5px 0 var(--ink);
  border-radius: 16px;
  padding: 13px 38px;
  font-size: 1.25rem;
  font-weight: 700;
  transition: transform 80ms, box-shadow 80ms;
}

.big-btn:active {
  box-shadow: 0 1px 0 var(--ink);
  transform: translateY(4px);
}

.big-btn.play {
  background: #8fd36a;
}

.big-btn.alt {
  background: var(--cream);
}

.big-btn.ghost {
  background: none;
  box-shadow: 0 4px #00000040;
}

.coins-line {
  color: var(--brown);
  font-size: 1rem;
  font-weight: 600;
}

.coins-line.big {
  font-size: 1.3rem;
}

.credit {
  color: var(--brown);
  opacity: .7;
  margin-top: 4px;
  font-size: .85rem;
}

.play {
  touch-action: none;
  cursor: pointer;
  background: #cfe3a8 url("/coop-bg.png") center / cover no-repeat;
  width: 100%;
  max-width: 460px;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hud {
  z-index: 20;
  color: var(--ink);
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 8px;
  left: 8px;
  right: 56px;
}

.hud span {
  border: 2px solid var(--ink);
  background: #fbf3dfd9;
  border-radius: 999px;
  padding: 4px 10px;
}

.hud .lives {
  letter-spacing: -2px;
}

.combo {
  z-index: 20;
  color: var(--red);
  border: 2px solid var(--ink);
  background: #fbf3dfe6;
  border-radius: 999px;
  padding: 3px 14px;
  font-weight: 700;
  animation: .3s pop;
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes pop {
  from {
    transform: translateX(-50%)scale(.6);
  }

  to {
    transform: translateX(-50%)scale(1);
  }
}

.hen {
  z-index: 4;
  filter: drop-shadow(0 3px 3px #0000004d);
  width: 15%;
  animation: 1.6s ease-in-out infinite bob;
  position: absolute;
  top: 1.5%;
  transform: translateX(-50%);
}

.hen:nth-child(odd) {
  animation-delay: .4s;
}

@keyframes bob {
  0%, 100% {
    transform: translateX(-50%)translateY(0);
  }

  50% {
    transform: translateX(-50%)translateY(-3px);
  }
}

.egg {
  z-index: 6;
  filter: drop-shadow(0 0 2px #0000008c) drop-shadow(0 3px 4px #00000073);
  width: 12%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.egg.gold {
  filter: drop-shadow(0 0 10px #ffc83c) drop-shadow(0 3px 4px #00000073);
}

.egg.rotten {
  filter: drop-shadow(0 0 9px #78d25af2) drop-shadow(0 3px 4px #00000073);
}

.cat {
  z-index: 10;
  filter: drop-shadow(0 5px 6px #0006);
  pointer-events: none;
  max-width: 165px;
  transition: width .25s;
  position: absolute;
  bottom: 3%;
  transform: translateX(-50%);
}

.cat.boarded {
  bottom: 1.5%;
}

.splat {
  aspect-ratio: 1;
  z-index: 5;
  background: radial-gradient(circle, #ffeb78e6, #f0c85066 60%, #0000 72%);
  border-radius: 50%;
  width: 11%;
  animation: .5s ease-out forwards splat;
  position: absolute;
  bottom: 5%;
  transform: translateX(-50%);
}

.splat.r {
  background: radial-gradient(circle, #96d25ae6, #0000 70%);
}

@keyframes splat {
  0% {
    opacity: 1;
    transform: translateX(-50%)scale(.3);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%)scale(1.4);
  }
}

.over h1 {
  text-align: center;
  font-size: 2rem;
}

.over .big-score {
  color: var(--orange);
  font-size: 3rem;
  font-weight: 700;
}

.shop h1 {
  font-size: 2rem;
}

.items {
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin: 6px 0 4px;
  display: flex;
}

.item {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 16px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  display: flex;
  box-shadow: 0 4px #00000040;
}

.item .ic {
  font-size: 2rem;
}

.item .info {
  flex-direction: column;
  flex: 1;
  gap: 1px;
  display: flex;
}

.item .info b {
  font-size: 1.05rem;
}

.item .info span {
  color: var(--brown);
  font-size: .82rem;
}

.item .info .lvl {
  letter-spacing: 2px;
  color: var(--orange);
}

.buy {
  font-family: var(--font);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  cursor: pointer;
  background: var(--warm);
  box-shadow: 0 3px 0 var(--ink);
  white-space: nowrap;
  border-radius: 12px;
  padding: 9px 14px;
  font-size: .95rem;
  font-weight: 700;
}

.buy:disabled {
  opacity: .5;
  box-shadow: none;
  cursor: default;
}

.buy:not(:disabled):active {
  box-shadow: 0 0 0 var(--ink);
  transform: translateY(3px);
}

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