/* =========================================================
   FELDISERHOF – EASTER GAME (CLEANED & FIXED)
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
main > section:last-of-type {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  background: none !important;
}

:root {
  --eg-cream: #fcfaf8;
  --eg-warm: #f4eee6;
  --eg-wood: #7a5c43;
  --eg-wood-dark: #5a4330;
  --eg-forest: #6a7b5e;
  --eg-forest-dark: #4b5a41;
  --eg-gold: #d4af37;
  --eg-gold-light: #fceda6;
  --eg-text: #2c2621;
  --eg-line: rgba(44, 38, 33, 0.08);

  --eg-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
  --eg-shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.15);
  --eg-shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.02);

  --eg-panel-width: 520px;
  --eg-launcher-size: clamp(56px, 15vw, 68px);
}

/* =========================================================
   GLOBAL HELPERS
   ========================================================= */

body.easter-game-open {
  overflow: hidden !important;
  touch-action: none;
  overscroll-behavior-y: contain;
  height: 100vh;
  width: 100vw;
  position: fixed;
}

.hidden {
  display: none !important;
}

/* =========================================================
   WIDGET / LAUNCHER
   ========================================================= */

.easter-game-widget {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.easter-game-launcher-label {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(252, 250, 248, 0.96);
  color: var(--eg-text);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--eg-shadow-sm);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  animation: easterGameBob 3s ease-in-out infinite;
  pointer-events: none;
}

.easter-game-launcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  line-height: 1;
}

.easter-game-launcher:focus,
.easter-game-launcher:focus-visible,
.easter-game-launcher:active {
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.easter-game-launcher-bunny {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 1em;
  padding: 0;
  margin: 0;
  font-size: var(--eg-launcher-size);
  line-height: 1;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  text-shadow: none !important;
  filter: none !important;
  overflow: visible;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.easter-game-launcher-bunny img,
.easter-game-launcher-bunny svg {
  display: block;
  width: 100%;
  height: auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* =========================================================
   MODAL & BACKDROP
   ========================================================= */

.easter-game-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 100dvh;
}

.easter-game-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 12, 0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* =========================================================
   GAME PANEL
   ========================================================= */

.easter-game-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--eg-panel-width);
  height: 96dvh;
  max-height: 900px;
  display: flex;
  flex-direction: column;
  background: var(--eg-cream);
  border-radius: 24px;
  box-shadow: var(--eg-shadow-lg);
  overflow: hidden;
  font-family: system-ui, -apple-system, sans-serif;
  animation: easterGamePopIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform: translateZ(0);
}

/* =========================================================
   HEADER
   ========================================================= */

.easter-game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 20px;
  background: #fff;
  border-bottom: 1px solid var(--eg-line);
  flex-shrink: 0;
}

.easter-game-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--eg-text);
}

.easter-game-subtitle {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--eg-wood);
}

.easter-game-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.easter-game-icon-btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--eg-line);
  border-radius: 50%;
  background: var(--eg-warm);
  color: var(--eg-text);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* =========================================================
   HUD
   ========================================================= */

.easter-game-hud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px 15px;
  flex-shrink: 0;
}

.easter-game-hud-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60px;
  padding: 6px 2px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--eg-line);
  border-radius: 12px;
  box-shadow: var(--eg-shadow-sm);
}

.easter-game-hud-label {
  margin-bottom: 2px;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #888;
}

.easter-game-hud-value {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--eg-text);
}

/* =========================================================
   GAME AREA
   ========================================================= */

.easter-game-area-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0; /* Játék faltól falig ér */
}

.easter-game-area {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 280px;
  overflow: hidden;
  background: linear-gradient(180deg, #d2dfce 0%, #b5c7ad 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08); /* Csak felül van határoló vonal */
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  transform: translateZ(0);
}

/* =========================================================
   SCENERY
   ========================================================= */

.easter-game-sun {
  position: absolute;
  top: 8%;
  right: 8%;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fdf5d3;
  box-shadow: 0 0 35px rgba(253, 245, 211, 0.8);
}

.easter-game-mountains {
  position: absolute;
  bottom: 55px;
  width: 100%;
  height: 120px;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 24%, rgba(138, 154, 129, 0.4) 25%, rgba(138, 154, 129, 0.4) 50%, transparent 51%) 0 20px / 160px 100px repeat-x,
    linear-gradient(135deg, transparent 26%, rgba(158, 174, 149, 0.3) 27%, rgba(158, 174, 149, 0.3) 52%, transparent 53%) 60px 0 / 200px 120px repeat-x;
}
.easter-game-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  pointer-events: none;
  animation: easterGameCloud linear infinite;
  will-change: transform;
}

.easter-game-cloud::before,
.easter-game-cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: inherit;
}

.easter-game-cloud::before {
  width: 50%;
  height: 100%;
  top: -40%;
  left: 15%;
}

.easter-game-cloud::after {
  width: 40%;
  height: 80%;
  top: -20%;
  right: 15%;
}

.cloud-one {
  width: 70px;
  height: 22px;
  top: 15%;
  animation-duration: 25s;
}

.cloud-two {
  width: 90px;
  height: 28px;
  top: 25%;
  animation-duration: 35s;
  animation-delay: -10s;
}

.cloud-three {
  width: 66px;
  height: 22px;
  top: 10%;
  animation-duration: 30s;
  animation-delay: -18s;
}

.easter-game-flowers {
  position: absolute;
  left: 0;
  bottom: 64px;
  width: 100%;
  height: 20px;
  opacity: 0.38;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 50%, #ffd4dc 0 4px, transparent 5px),
    radial-gradient(circle at 18% 30%, #fff1a8 0 4px, transparent 5px),
    radial-gradient(circle at 28% 60%, #ffd4dc 0 4px, transparent 5px),
    radial-gradient(circle at 42% 40%, #fff1a8 0 4px, transparent 5px),
    radial-gradient(circle at 56% 60%, #ffd4dc 0 4px, transparent 5px),
    radial-gradient(circle at 70% 35%, #fff1a8 0 4px, transparent 5px),
    radial-gradient(circle at 82% 55%, #ffd4dc 0 4px, transparent 5px),
    radial-gradient(circle at 92% 30%, #fff1a8 0 4px, transparent 5px);
}

.easter-game-grass {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 65px;
  background: linear-gradient(180deg, var(--eg-forest), var(--eg-forest-dark));
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}

/* =========================================================
   ENTITIES
   ========================================================= */

.easter-game-basket-player {
  position: absolute;
  bottom: 12px;
  width: 85px;
  height: 60px;
  transform: translateX(-50%);
  z-index: 10;
  will-change: transform;
}

.easter-game-basket-handle {
  position: absolute;
  left: 50%;
  top: 0;
  width: 55px;
  height: 30px;
  transform: translateX(-50%);
  border: 4px solid var(--eg-wood);
  border-bottom: none;
  border-radius: 25px 25px 0 0;
}

.easter-game-basket-body {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 38px;
  background: var(--eg-wood-dark);
  border-top: 5px solid var(--eg-wood);
  border-radius: 6px 6px 16px 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.easter-game-egg {
  position: absolute;
  width: 28px;
  height: 38px;
  border-radius: 50% 50% 46% 46%;
  z-index: 5;
  will-change: transform;
}

.easter-game-egg.normal {
  background: linear-gradient(135deg, #fdfbf7, #e6d5c3);
  border: 1px solid #d4c1ac;
}

.easter-game-egg.golden {
  background: linear-gradient(135deg, var(--eg-gold-light), var(--eg-gold));
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.easter-game-egg.broken {
  background: linear-gradient(135deg, #b8a696, #8c7866);
  border: 1px dashed #5a4b40;
}

.easter-game-floating-text {
  position: absolute;
  z-index: 20;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  animation: easterGameFloatText 0.8s ease-out forwards;
}

/* =========================================================
   OVERLAY SCREENS
   ========================================================= */

.easter-game-start-screen,
.easter-game-end-screen {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 12px;
  background: rgba(252, 250, 248, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow-y: auto;
}

.easter-game-screen-card {
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--eg-line);
  border-radius: 20px;
  box-shadow: var(--eg-shadow-lg);
  flex-shrink: 0;
}

.easter-game-screen-card::-webkit-scrollbar,
.easter-game-leaderboard-list::-webkit-scrollbar {
  width: 6px;
}

.easter-game-screen-card::-webkit-scrollbar-thumb {
  background-color: var(--eg-gold);
  border-radius: 10px;
}

.easter-game-screen-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--eg-text);
  flex-shrink: 0;
}

.easter-game-screen-card p {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.4;
  color: #666;
  flex-shrink: 0;
}

.easter-game-screen-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: var(--eg-wood);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

/* =========================================================
   START SCREEN
   ========================================================= */

.easter-game-start-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.easter-game-start-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.easter-game-start-title {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1.1;
  color: var(--eg-wood-dark);
}

.easter-game-start-lead {
  margin: 0;
  font-size: 0.98rem;
  color: var(--eg-forest-dark);
}

/* A GUTSCHEIN GOMB STÍLUSAI */
.easter-game-start-highlight {
  width: 100%;
  display: block;
  padding: 10px 14px;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.4;
  color: #8a6a00;
  background: #fff8e1;
  border: 1px solid #f0d68a;
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.easter-game-start-highlight:hover {
  background: #ffebb5;
  transform: translateY(-1px);
}

.easter-game-info-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid var(--eg-line);
  border-radius: 20px;
  background: var(--eg-warm);
  color: var(--eg-text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.easter-game-info-panel {
  display: none;
  width: 100%;
}

.easter-game-info-panel:not(.hidden) {
  display: block;
}

.easter-game-info-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.93rem;
  color: var(--eg-wood-dark);
  background: #f7f1e7;
  border: 1px solid var(--eg-line);
  border-radius: 16px;
}

.easter-game-info-box p {
  margin: 0;
}

.easter-game-info-deadline {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* =========================================================
   SCORE / LEADERBOARD & JAVÍTOTT FORM
   ========================================================= */

.easter-game-best-text {
  font-weight: 700;
  color: var(--eg-forest-dark);
}

.easter-game-score-form {
  margin-bottom: 12px;
  padding: 12px;
  background: var(--eg-warm);
  border: 1px solid var(--eg-line);
  border-radius: 12px;
  flex-shrink: 0;
}

/* --- INNEN KEZDŐDIK AZ ÚJ/JAVÍTOTT FORM CSS RÉSZ --- */

.easter-game-score-form-intro {
  margin-bottom: 8px !important;
  font-weight: 600;
}

.easter-game-form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.easter-game-form-field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.easter-game-form-field label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--eg-wood);
  margin-bottom: 4px;
  margin-left: 4px;
}

.easter-game-form-field input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--eg-line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s;
}

.easter-game-form-field input:focus {
  outline: none;
  border-color: var(--eg-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Kitöltéskor megjelenő böngésző stílusok felülírása */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* --- EDDIG TART AZ ÚJ/JAVÍTOTT FORM CSS RÉSZ --- */

.easter-game-leaderboard-header {
  margin: 0 0 10px;
  padding-bottom: 6px;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--eg-text);
  border-bottom: 2px solid var(--eg-warm);
  flex-shrink: 0;
}

.easter-game-leaderboard-list {
  margin-bottom: 10px;
  max-height: 120px;
  overflow-y: auto;
  padding: 10px;
  text-align: left;
  font-size: 0.95rem;
  background: #fff;
  border: 1px solid var(--eg-line);
  border-radius: 12px;
  box-shadow: var(--eg-shadow-inset);
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--eg-gold) transparent;
}

.easter-game-leaderboard-list::-webkit-scrollbar-thumb {
  background-color: var(--eg-gold);
  border-radius: 10px;
}

.easter-game-leaderboard-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--eg-warm);
}

.easter-game-leaderboard-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .easter-game-modal {
    align-items: flex-end;
    padding: 0;
  }

  .easter-game-panel {
    height: 98dvh;
    max-height: none;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    animation: easterGameSlideUp 0.4s cubic-bezier(0.32, 0.72, 0, 1) forwards;
  }

  .easter-game-panel::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    z-index: 100;
  }

  .easter-game-header {
    padding: 12px 15px 8px;
  }

  .easter-game-title {
    font-size: 1rem;
  }

  .easter-game-subtitle {
    font-size: 0.58rem;
  }

  .easter-game-icon-btn {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .easter-game-hud {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 5px 10px;
  }

  .easter-game-hud-card {
    min-height: 50px;
    padding: 4px 2px;
    border-radius: 10px;
    box-shadow: none;
  }

  .easter-game-hud-label {
    margin-bottom: 1px;
    font-size: 0.54rem;
  }

  .easter-game-hud-value {
    font-size: 1.1rem;
  }

  .easter-game-area {
    min-height: 38vh;
  }

  .easter-game-sun {
    width: 40px;
    height: 40px;
  }

  .easter-game-grass {
    height: 62px;
  }

  .easter-game-flowers {
    bottom: 61px;
  }

  .easter-game-basket-player {
    bottom: 25px;
    width: 75px;
    height: 54px;
  }

  .easter-game-basket-handle {
    width: 48px;
    height: 26px;
  }

  .easter-game-basket-body {
    height: 34px;
  }

  .easter-game-egg {
    width: 26px;
    height: 36px;
  }

  .easter-game-launcher-label {
    padding: 7px 12px;
    font-size: 11px;
  }

  .easter-game-launcher-bunny {
    font-size: 56px;
  }

  .easter-game-screen-card {
    max-height: 90dvh;
    margin-bottom: max(14px, env(safe-area-inset-bottom));
    padding: 16px;
  }

  .easter-game-screen-card h3 {
    font-size: 1.28rem;
  }

  .easter-game-screen-card p {
    font-size: 0.93rem;
    margin-bottom: 12px;
  }

  .easter-game-start-title {
    font-size: 1.5rem;
  }

  .easter-game-start-lead {
    font-size: 0.9rem;
  }

  .easter-game-start-highlight {
    font-size: 0.86rem;
    padding: 9px 12px;
  }

  .easter-game-info-box {
    font-size: 0.88rem;
    padding: 12px 14px;
  }
}

/* =========================================================
   EXTRA SMALL
   ========================================================= */

@media (max-width: 400px) {
  .easter-game-header {
    padding: 11px 12px 8px;
  }

  .easter-game-title {
    font-size: 0.94rem;
  }

  .easter-game-subtitle {
    font-size: 0.54rem;
  }

  .easter-game-hud {
    gap: 3px;
    padding: 4px 8px;
  }

  .easter-game-hud-card {
    min-height: 46px;
  }

  .easter-game-hud-label {
    font-size: 0.5rem;
  }

  .easter-game-hud-value {
    font-size: 1rem;
  }

  .easter-game-area {
    min-height: 34vh;
  }

  .easter-game-basket-player {
    width: 68px;
    height: 50px;
  }

  .easter-game-basket-handle {
    width: 44px;
    height: 24px;
    border-width: 4px;
  }

  .easter-game-basket-body {
    height: 31px;
    border-top-width: 4px;
    border-radius: 4px 4px 14px 14px;
  }

  .easter-game-launcher-bunny {
    font-size: 48px;
  }

  .easter-game-screen-card {
    padding: 14px 12px;
  }

  .easter-game-start-title {
    font-size: 1.32rem;
  }

  .easter-game-leaderboard-list {
    max-height: 90px;
  }
}

/* =========================================================
   LANDSCAPE MOBILE
   ========================================================= */

@media (max-width: 850px) and (orientation: landscape) {
  .easter-game-modal {
    padding: 0;
  }

  .easter-game-panel {
    height: 100dvh;
    max-height: none;
    border-radius: 0;
  }

  .easter-game-panel::before {
    display: none;
  }

  .easter-game-header {
    padding: 8px 14px;
  }

  .easter-game-hud {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 4px 10px;
  }

  .easter-game-hud-card {
    min-height: 44px;
    padding: 3px 2px;
  }

  .easter-game-hud-label {
    font-size: 0.5rem;
  }

  .easter-game-hud-value {
    font-size: 0.98rem;
  }

  .easter-game-area {
    min-height: 0;
  }

  .easter-game-screen-card {
    max-height: 90dvh;
    padding: 12px;
  }

  .easter-game-start-title {
    font-size: 1.28rem;
  }

  .easter-game-start-lead,
  .easter-game-start-highlight,
  .easter-game-info-box {
    font-size: 0.84rem;
  }

  .easter-game-score-form {
    margin-bottom: 10px;
    padding: 10px;
  }

  .easter-game-leaderboard-list {
    max-height: 78px;
  }
}

/* =========================================================
   HOVER STATES
   ========================================================= */

@media (hover: hover) {
  .easter-game-launcher:hover .easter-game-launcher-bunny {
    transform: scale(1.1) translateY(-4px);
  }

  .easter-game-icon-btn:hover {
    background: #e0d8cd;
    transform: scale(1.05);
  }

  .easter-game-screen-btn:hover {
    background: var(--eg-forest);
    transform: translateY(-1px);
  }

  .easter-game-info-toggle:hover {
    background: #e9e1d6;
    color: var(--eg-wood-dark);
    transform: scale(1.05);
  }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes easterGamePopIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes easterGameSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes easterGameCloud {
  from {
    transform: translateX(-100px);
  }
  to {
    transform: translateX(120vw);
  }
}

@keyframes easterGameFloatText {
  to {
    transform: translate(-50%, -50px);
    opacity: 0;
  }
}

@keyframes easterGameBob {
  50% {
    transform: translate(-50%, -5px);
  }
}