:root {
  --bg: #07080f;
  --text: #ecf1ff;
  --muted: #a3acc2;
  --accent: #44e3a8;
  --accent-2: #ff8a38;
  --card: rgba(14, 19, 34, 0.76);
  --stroke: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 8% -10%, #1e294f 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #3b1d2f 0%, transparent 60%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, .brand { font-family: "Chakra Petch", sans-serif; letter-spacing: 0.02em; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(7, 8, 15, 0.68);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}
.brand img { width: 32px; height: 32px; object-fit: contain; }

.topnav { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.topnav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.58rem 0.82rem;
  border-radius: 0.5rem;
  min-height: 44px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.topnav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }

main { width: min(1150px, 92vw); margin: 0 auto; padding: 2rem 0 4rem; }
section[id] { scroll-margin-top: 5.8rem; }

.hero { padding: clamp(2rem, 6vw, 5rem) 0 2rem; }
.eyebrow { color: var(--accent); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.14em; margin: 0 0 0.6rem; }
h1 { font-size: clamp(1.8rem, 6vw, 4.4rem); line-height: 1.05; margin: 0 0 1rem; }
.lead { color: var(--muted); max-width: 68ch; margin-bottom: 0.45rem; }

.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.9rem 1rem;
  border-radius: 0.7rem;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 200ms ease;
  border: 1px solid transparent;
  min-height: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), #1ac2e0); color: #03160f; font-weight: 700; }
.btn-secondary { color: var(--text); border-color: var(--stroke); background: rgba(255, 255, 255, 0.04); }

.panel {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}
.panel-head p { color: var(--muted); }

.grid { margin-top: 1rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.9rem; }

.game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--stroke);
  border-radius: 0.9rem;
  padding: 0.7rem;
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
  will-change: transform;
}
.game-media {
  width: 100%;
  position: relative;
}
.game-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0.6rem;
  display: block;
}
.game-card h3 {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem;
  font-size: 1rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.2));
  border-radius: 0.6rem;
}
.game-cta {
  margin-top: 0.65rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 132px;
  min-height: 44px;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 600;
  text-transform: lowercase;
}
.game-card:active .game-cta {
  background: rgba(68, 227, 168, 0.3);
}
.game-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(68, 227, 168, 0.6);
  box-shadow: 0 15px 30px rgba(68, 227, 168, 0.18);
}
.game-card:active { transform: translateY(-2px) scale(1.005); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 1rem; }

.inline-link { color: var(--accent-2); text-decoration: none; }
.inline-link:hover { text-decoration: underline; }

.footer {
  width: min(1150px, 92vw);
  margin: 0 auto 2rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--stroke);
  padding-top: 1rem;
}
.footer a { color: var(--text); text-decoration: none; }
.footer p { margin: 0; font-size: 0.78rem; }

.bg-orb { position: fixed; border-radius: 50%; filter: blur(50px); opacity: 0.24; pointer-events: none; z-index: -1; }
.orb-a { width: 310px; height: 310px; background: #44e3a8; left: -80px; top: 30vh; animation: driftA 8s ease-in-out infinite alternate; }
.orb-b { width: 320px; height: 320px; background: #ff8a38; right: -120px; top: 15vh; animation: driftB 10s ease-in-out infinite alternate; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 500ms ease, transform 650ms ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@keyframes driftA { from { transform: translateY(0); } to { transform: translateY(-28px); } }
@keyframes driftB { from { transform: translateY(0); } to { transform: translateY(34px); } }

@media (max-width: 1100px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 860px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .topbar { align-items: flex-start; flex-direction: column; gap: 0.65rem; }
  .topnav { width: 100%; }
  .topnav a { background: rgba(255, 255, 255, 0.06); flex: 1 1 calc(50% - 0.35rem); justify-content: center; }
  .hero { padding-top: 1.35rem; }
  .panel { padding: 1rem; }
  .grid { grid-template-columns: 1fr; }
  .game-card h3 { font-size: 0.95rem; }
  .footer {
    flex-direction: column;
    gap: 0.45rem;
    text-align: center;
    align-items: center;
    padding-top: 0.85rem;
  }
  .footer p {
    font-size: clamp(0.64rem, 2.9vw, 0.76rem);
    line-height: 1.35;
    padding: 0 0.4rem;
  }
  .back-to-top {
    right: 0.45rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    width: 56px;
    height: 56px;
    font-size: 1.45rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bg-orb, .reveal, .game-card, .btn { animation: none !important; transition: none !important; }
}


.back-to-top {
  position: fixed;
  right: 0.45rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  width: 52px;
  height: 52px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(10, 14, 25, 0.92);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 90;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}
.js .back-to-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.js .back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: rgba(68, 227, 168, 0.2);
}
@media (max-width: 640px) {
  .back-to-top {
    right: 0.45rem;
    bottom: 0.45rem;
  }
}

.detail-hero {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid var(--stroke);
  margin-bottom: 0.45rem;
}
.store-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
}
.store-btn img {
  height: auto;
  width: auto;
  max-width: 100%;
  display: block;
  border-radius: 0.5rem;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.video-card {
  border: 1px solid var(--stroke);
  border-radius: 0.8rem;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}
@media (max-width: 860px) {
  .video-grid { grid-template-columns: 1fr; }
}

.lead.compact {
  margin: 0.35rem 0 0.9rem;
  max-width: none;
  font-size: 0.95rem;
}

.store-row-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}
.store-row-grid .store-btn {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.store-row-grid .store-btn img {
  width: auto;
  max-width: 100%;
  max-height: 48px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.store-row-grid .store-btn img[src$="store-google-play.png"] {
  max-height: 58px;
}
.store-row-grid .store-btn img[src$="store-app-store.svg"],
.store-row-grid .store-btn img[src$="store-mac-app-store.svg"] {
  max-height: 40px;
}

input[type="email"], input[type="text"], input[type="search"], .subscribe-input {
  min-height: 42px;
  height: 42px;
  padding: 0.45rem 0.7rem;
  font-size: 0.95rem;
}

.gallery-shell {
  position: relative;
}
.gallery-track {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.3rem 2.6rem;
}
.gallery-track::-webkit-scrollbar {
  height: 8px;
}
.gallery-track img {
  flex: 0 0 86%;
  max-width: 86%;
  scroll-snap-align: center;
  border-radius: 0.8rem;
  border: 1px solid var(--stroke);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(9, 12, 22, 0.88);
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  z-index: 5;
}
.gallery-prev { left: 0.35rem; }
.gallery-next { right: 0.35rem; }

@media (max-width: 860px) {
  .store-row-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .store-row-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .store-row-grid .store-btn {
    min-height: 58px;
    padding: 0.35rem;
  }
  .gallery-track {
    padding: 0.25rem 2.1rem;
    gap: 0.55rem;
  }
  .gallery-track img {
    flex-basis: 92%;
    max-width: 92%;
  }
}


.section-title-compact {
  font-size: 75%;
  line-height: 1.15;
}

.gallery-shell {
  overflow: hidden;
}

.gallery-track {
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scroll-padding-inline: 2.6rem;
}
.gallery-track.is-pointer-down {
  cursor: grabbing;
}

@media (max-width: 640px) {
  .section-title-compact {
    font-size: 75%;
  }
  .gallery-track {
    scroll-padding-inline: 2.1rem;
  }
}


.play-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
.play-bg-a {
  background: radial-gradient(circle at 20% 20%, rgba(68,227,168,0.18), transparent 35%);
  animation: bgShiftA 9s ease-in-out infinite alternate;
}
.play-bg-b {
  background: radial-gradient(circle at 80% 12%, rgba(255,138,56,0.16), transparent 32%);
  animation: bgShiftB 11s ease-in-out infinite alternate;
}
@keyframes bgShiftA { from { transform: translate3d(0,0,0); } to { transform: translate3d(0,-18px,0); } }
@keyframes bgShiftB { from { transform: translate3d(0,0,0); } to { transform: translate3d(0,16px,0); } }

.sparkle-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  animation: twinkle ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 0.95; transform: scale(1.2); }
}

.yt-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.8rem;
  overflow: hidden;
  background: #0a101d;
}
.yt-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-cover {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  position: relative;
  padding: 0;
}
.yt-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yt-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(5,10,18,0.65);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  border: 1px solid rgba(255,255,255,0.35);
}

.mission-row {
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}
.mission-card {
  border: 1px solid var(--stroke);
  border-radius: 0.8rem;
  padding: 0.75rem;
  background: linear-gradient(160deg, rgba(68,227,168,0.12), rgba(255,138,56,0.08));
}
.mission-card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}
.mission-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .mission-row { grid-template-columns: 1fr; }
  .yt-play-icon { width: 58px; height: 58px; font-size: 1.45rem; }
}

.gallery-track img { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 180;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 16, 0.88);
  backdrop-filter: blur(2px);
}
.lightbox-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.lightbox-image {
  max-width: min(1200px, 94vw);
  max-height: 84vh;
  border-radius: 0.9rem;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  transform: scale(0.95);
  opacity: 0;
  animation: lbIn 220ms ease forwards;
}
.lightbox-image.pulse-in {
  animation: lbPulse 180ms ease forwards;
}
@keyframes lbIn {
  to { transform: scale(1); opacity: 1; }
}
@keyframes lbPulse {
  0% { transform: scale(0.97); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}
.lightbox-close {
 position: fixed;
 top: max(0.8rem, env(safe-area-inset-top));
 right: max(0.8rem, env(safe-area-inset-right));
 width: 48px;
 height: 48px;
 border-radius: 999px;
 border: 1px solid rgba(255,255,255,0.5);
 background: rgba(2, 5, 12, 0.94);
 color: #fff;
 font-size: 1.75rem;
 line-height: 1;
 z-index: 25;
 box-shadow: 0 10px 26px rgba(0,0,0,0.45);
 display: grid;
 place-items: center;
}
.lightbox-close:hover,
.lightbox-close:focus-visible {
 background: rgba(68, 227, 168, 0.22);
 border-color: rgba(68, 227, 168, 0.8);
 outline: none;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(9, 12, 20, 0.88);
  color: #fff;
  font-size: 1.45rem;
  z-index: 4;
}
.lightbox-prev { left: 0.6rem; }
.lightbox-next { right: 0.45rem; }

@media (max-width: 640px) {
  .lightbox-content { padding: 0.5rem; }
  .lightbox-image { max-width: 97vw; max-height: 82vh; }
  .lightbox-nav { width: 40px; height: 40px; }
 .lightbox-close { width: 46px; height: 46px; font-size: 1.65rem; }
}

.topnav-single {
  margin-left: auto;
}
.topnav-single a {
  background: rgba(68, 227, 168, 0.14);
  border: 1px solid rgba(68, 227, 168, 0.35);
}
.subscribe-panel { margin-top: 1rem; }
.subscribe-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  margin: 0.4rem 0 0.8rem;
  width: 100%;
  max-width: 100%;
}
.subscribe-form input {
  min-width: 0;
  width: 100%;
  max-width: none;
  height: 44px;
  min-height: 44px;
  border-radius: 0.5rem;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.55rem 0.75rem;
  outline: none;
  box-shadow: none;
}
.subscribe-form input:focus {
  border-color: rgba(68, 227, 168, 0.7);
  box-shadow: 0 0 0 2px rgba(68, 227, 168, 0.15);
}
.subscribe-form button {
  width: 50%;
  max-width: 50%;
  white-space: nowrap;
}
.contact-open { min-width: 140px; }

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 170;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.contact-modal.open { opacity: 1; pointer-events: auto; }
.contact-backdrop { position: absolute; inset: 0; background: rgba(4, 8, 16, 0.82); }
.contact-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(92vw, 420px);
  border-radius: 0.9rem;
  border: 1px solid var(--stroke);
  background: rgba(12, 16, 28, 0.95);
  padding: 1rem;
  box-shadow: var(--shadow);
  animation: contactIn 180ms ease forwards;
}
@keyframes contactIn { to { transform: translate(-50%, -50%) scale(1); } }
@media (max-width: 640px) {
  .topnav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .topnav::-webkit-scrollbar { display: none; }
  .topnav a { white-space: nowrap; min-height: 44px; }
  .topnav-single { width: 100%; justify-content: flex-end; }
  .topbar.topbar-single-line {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
  .topbar.topbar-single-line .brand { min-width: 0; }
  .topbar.topbar-single-line .brand span {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .topbar.topbar-single-line .topnav-single {
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
  }
  .subscribe-form {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .subscribe-form input {
    width: 100%;
    max-width: none;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
    outline: none;
  }
  .subscribe-form input:focus,
  .subscribe-form input:focus-visible {
    box-shadow: none;
    outline: none;
    border-color: rgba(68, 227, 168, 0.55);
  }
  .subscribe-form button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .subscribe-form {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .subscribe-form button {
    justify-self: start;
  }
}

.dino-pop {
  opacity: 0.34;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

/* Egg pop strip above footer */
.egg-zone {
  width: min(1150px, 92vw);
  margin: 1.2rem auto 0.8rem;
  padding: 0.9rem 0.9rem 1.1rem;
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}
.egg-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 35;
}
.egg-zone h3 {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
}
.egg-slots {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}
.egg-slot {
  aspect-ratio: 0.74 / 1;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 46% 46% 44% 44% / 56% 56% 40% 40%;
  background: rgba(255, 255, 255, 0.03);
  transition: background 150ms ease, border-color 150ms ease, box-shadow 160ms ease;
}
.egg-slot.filled {
  border-color: rgba(68, 227, 168, 0.72);
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.45), rgba(68, 227, 168, 0.36) 36%, rgba(68, 227, 168, 0.24) 68%, rgba(68, 227, 168, 0.08));
  box-shadow: 0 0 16px rgba(68, 227, 168, 0.22);
}
.egg-float {
  position: fixed;
  width: 38px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 46% 46% 44% 44% / 56% 56% 40% 40%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  opacity: 0.34;
  pointer-events: auto;
  z-index: 36;
  transition: transform 120ms ease, opacity 120ms ease, box-shadow 130ms ease;
}
.egg-float:hover {
  opacity: 0.55;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}
.egg-float.pop {
  animation: eggPop 280ms ease forwards;
  pointer-events: none;
}
@keyframes eggPop {
  0% { transform: scale(1); opacity: 0.55; }
  45% { transform: scale(1.18); opacity: 0.8; }
  100% { transform: scale(0.2); opacity: 0; }
}
@media (max-width: 640px) {
  .egg-zone { padding: 0.75rem; }
  .egg-slots { gap: 0.25rem; }
  .egg-float { width: 34px; height: 45px; }
}
