:root {
  --main-color: #2A3F4F;
  /* Deep Slate for headings */
  --accent-color: #FFABC9;
  /* Soft Pink for buttons/highlights */
  --bg-color: #F0F4FF;
  /* Light Blue for main background */
  --secondary-bg-color: #B2F7B2;
  /* Mint Green for secondary sections */
  --text-color: #4A2B6F;
  /* Deep Purple for text */
  --highlight-color: #FFD54F;
  /* Golden Yellow for accents */
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Bubblegum+Sans&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.6;
}

.game-main {
  margin-top: 90px;
}

/* Header Styles */
.game-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.game-header__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-header__logo .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--main-color);
  font-family: 'Bubblegum Sans', cursive;
  font-size: 1.8rem;
}

.game-header__logo i {
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.game-header__logo .logo:hover i {
  transform: rotate(360deg);
}

.game-header__nav {
  display: flex;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav__link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: var(--accent-color);
}

.game-header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.game-header__contact {
  color: var(--main-color);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.game-header__contact:hover {
  color: var(--accent-color);
}

.game-header__menu {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu__line {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--main-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.game-header__menu.active .menu__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.game-header__menu.active .menu__line:nth-child(2) {
  opacity: 0;
}

.game-header__menu.active .menu__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Banner Styles */
.egg-hunt-banner {
  background: var(--accent-color);
  color: white;
  text-align: center;
  padding: 10px 20px;
}

.egg-hunt-banner__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.egg-hunt-banner__button {
  background: var(--main-color);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}

.egg-hunt-banner__button:hover {
  background: var(--highlight-color);
  transform: scale(1.05);
}

/* Hero Section */
.easter-hero {
  min-height: 80vh;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-color) 60%, var(--secondary-bg-color) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none" stroke="%23FFABC9" stroke-width="0.5" opacity="0.1"><circle cx="10" cy="10" r="5"/><circle cx="90" cy="90" r="5"/><circle cx="50" cy="50" r="5"/></svg>') repeat;
  background-size: cover, 50px 50px;
}

.easter-hero__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.easter-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.easter-hero__title {
  margin-bottom: 20px;
  color: var(--main-color);
  font-family: 'Bubblegum Sans', cursive;
  font-size: 3.8rem;
  line-height: 1.2;
}

.easter-hero__title i {
  color: var(--highlight-color);
  margin-right: 15px;
}

.easter-hero__description {
  margin-bottom: 30px;
  font-size: 1.2rem;
  opacity: 0.85;
}

.easter-hero__stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.hero-stat {
  text-align: center;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-stat i {
  color: var(--accent-color);
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-stat__number {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 2rem;
  color: var(--main-color);
}

.hero-stat__label {
  font-size: 0.9rem;
  opacity: 0.7;
}

.easter-hero__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.easter-hero__button:hover {
  background: var(--highlight-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 171, 201, 0.3);
}

.easter-hero__galery {
  position: relative;
  width: 90%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.level-slideshow {

  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.level-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.level-slide.active {
  display: block;
  opacity: 1;
}

.level-slide__image {
  width: 100%;
  height: auto;
}

.level-slide__image img {
  width: 90%;
  height: auto;
}

.level-slide__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
}

.level-slide__overlay h3 {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.level-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.level-control {
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 1rem;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.level-control.active,
.level-control:hover {
  opacity: 1;
  transform: scale(1.3);
}

/* Game Modes Section */
.game-modes {
  padding: 80px 0;
  background: var(--bg-color);
}

.game-modes__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.game-modes__header {
  text-align: center;
  margin-bottom: 60px;
}

.game-modes__title {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 15px;
}

.game-modes__title i {
  color: var(--highlight-color);
  margin-right: 10px;
}

.game-modes__subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.8;
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.mode-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mode-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.mode-card__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mode-card:hover .mode-card__image img {
  transform: scale(1.1);
}

.mode-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(74, 43, 111, 0.8), rgba(255, 171, 201, 0.8));
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mode-card:hover .mode-card__overlay {
  opacity: 1;
}

.mode-card__overlay i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.mode-card__overlay h3 {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 1.4rem;
}

.mode-card__count {
  background: rgba(255, 255, 255, 0.3);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Top Levels Section */
.top-levels {
  padding: 80px 0;
  background: var(--secondary-bg-color);
}

.top-levels__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-levels__header {
  text-align: center;
  margin-bottom: 60px;
}

.top-levels__title {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 15px;
}

.top-levels__title i {
  color: var(--highlight-color);
  margin-right: 10px;
}

.top-levels__subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.8;
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.level-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.level-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.level-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.level-card__badge.hot {
  background: #FF4500;
}

.level-card__badge.new {
  background: #32CD32;
}

.level-card__image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.level-card:hover .level-card__image img {
  transform: scale(1.1);
}

.level-card__info {
  padding: 20px;
}

.level-card__title {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 1.3rem;
  color: var(--main-color);
  margin-bottom: 10px;
}

.level-card__creator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 15px;
}

.level-card__details {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.level-card__difficulty,
.level-card__type {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.level-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.level-card__score {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 1.4rem;
  color: var(--accent-color);
}

.level-card__play {
  background: var(--main-color);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.level-card__play:hover {
  background: var(--accent-color);
  transform: translateY(-2px) scale(1.05);
}

/* Player Reviews Section */
.player-reviews {
  padding: 80px 0;
  background: var(--bg-color);
}

.player-reviews__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.player-reviews__header {
  text-align: center;
  margin-bottom: 60px;
}

.player-reviews__title {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 15px;
}

.player-reviews__title i {
  color: var(--highlight-color);
  margin-right: 10px;
}

.player-reviews__subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
}

.review-slider {
  position: relative;
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 100%;
  padding: 0 10px;
}

.review-card.active {
  opacity: 1;
}

.review-card__content {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.review-card__quote i {
  color: var(--accent-color);
  font-size: 2rem;
  margin-bottom: 15px;
}

.review-card__quote p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.review-card__rating i {
  color: var(--highlight-color);
  font-size: 1.2rem;
  margin: 0 3px;
}

.review-card__author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.review-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__info h4 {
  font-family: 'Bubblegum Sans', cursive;
  color: var(--main-color);
}

.review-card__info p {
  font-size: 0.85rem;
  opacity: 0.7;
}

.review-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.review-nav {
  background: var(--secondary-bg-color);
  color: var(--main-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-nav:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.review-dots {
  display: flex;
  gap: 10px;
}

.review-dot {
  width: 10px;
  height: 10px;
  background: var(--secondary-bg-color);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
}

/* Game Tips Section */
.game-tips {
  padding: 80px 0;
  background: var(--secondary-bg-color);
}

.game-tips__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.game-tips__header {
  text-align: center;
  margin-bottom: 60px;
}

.game-tips__title {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 15px;
}

.game-tips__title i {
  color: var(--highlight-color);
  margin-right: 10px;
}

.game-tips__subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.8;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.tip-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tip-card.featured {
  grid-column: span 2;
}

.tip-card__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tip-card:hover .tip-card__image img {
  transform: scale(1.1);
}

.tip-card__category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tip-card__content {
  padding: 20px;
}

.tip-card__meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 10px;
}

.tip-card__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tip-card__title {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 1.4rem;
  color: var(--main-color);
  margin-bottom: 10px;
}

.tip-card__excerpt {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 15px;
}

.tip-card__link {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.tip-card__link:hover {
  color: var(--main-color);
  gap: 12px;
}

/* Join Game Section */
.join-game {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--main-color) 0%, var(--secondary-bg-color) 100%);
  color: white;
}

.join-game__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.join-game__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.join-game__title {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 3rem;
  margin-bottom: 20px;
}

.join-game__title i {
  color: var(--highlight-color);
  margin-right: 10px;
}

.join-game__description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.join-game__features {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.game-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.game-feature i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

.join-game__actions {
  display: flex;
  gap: 15px;
}

.join-game__button {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.join-game__button.primary {
  background: var(--accent-color);
  color: white;
}

.join-game__button.primary:hover {
  background: var(--highlight-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 171, 201, 0.3);
}

.join-game__button.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.join-game__button.secondary:hover {
  background: white;
  color: var(--main-color);
  transform: translateY(-3px) scale(1.05);
}

.join-game__visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
.game-footer {
  background: var(--main-color);
  color: white;
  padding: 60px 0 20px;
  position: relative;
}

.game-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10" fill="%232A3F4F"><path d="M0 10 Q25 0 50 10 T100 10 V0 H0 Z"/></svg>') repeat-x;
  background-size: 100px 50px;
}

.game-footer__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.game-footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.game-footer__brand .game-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: 'Bubblegum Sans', cursive;
  font-size: 1.8rem;
  text-decoration: none;
  margin-bottom: 15px;
}

.game-footer__brand i {
  color: var(--accent-color);
}

.game-footer__description {
  font-size: 0.95rem;
  opacity: 0.8;
}

.game-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.game-footer__column h3 {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.game-footer__list {
  list-style: none;
}

.game-footer__link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.game-footer__link:hover {
  opacity: 1;
}

.game-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.game-footer__copyright {
  font-size: 0.85rem;
  opacity: 0.7;
}

.game-footer__legal {
  display: flex;
  gap: 15px;
}

.legal__link {
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.legal__link:hover {
  opacity: 1;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
  transform: scale(1.2);
}

/* Animations */
@keyframes bounceIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  60% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

.mode-card,
.level-card,
.tip-card {
  opacity: 0;
  animation: bounceIn 0.5s ease forwards;
}

.mode-card:nth-child(2) {
  animation-delay: 0.1s;
}

.mode-card:nth-child(3) {
  animation-delay: 0.2s;
}

.mode-card:nth-child(4) {
  animation-delay: 0.3s;
}

.mode-card:nth-child(5) {
  animation-delay: 0.4s;
}

.mode-card:nth-child(6) {
  animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 1024px) {

  .easter-hero__content,
  .join-game__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .easter-hero__stats,
  .join-game__features {
    justify-content: center;
  }

  .easter-hero__title,
  .game-modes__title,
  .top-levels__title,
  .player-reviews__title,
  .game-tips__title,
  .join-game__title {
    font-size: 2.5rem;
  }

  .tip-card.featured {
    grid-column: span 1;
  }

  .game-footer__top {
    grid-template-columns: 1fr;
  }

  .game-footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .game-main {
    margin-top: 70px;
  }

  .easter-hero,
  .game-modes,
  .top-levels,
  .player-reviews,
  .game-tips,
  .join-game {
    padding: 60px 0;
  }

  .easter-hero__title,
  .game-modes__title,
  .top-levels__title,
  .player-reviews__title,
  .game-tips__title,
  .join-game__title {
    font-size: 2rem;
  }

  .game-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-color);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .game-header__nav.active {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    gap: 15px;
  }

  .game-header__menu {
    display: block;
  }

  .level-card__footer,
  .join-game__actions,
  .join-game__features {
    flex-direction: column;
    gap: 15px;
  }

  .review-card__author {
    flex-direction: column;
    text-align: center;
  }

  .game-footer__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .easter-hero__title,
  .game-modes__title,
  .top-levels__title,
  .player-reviews__title,
  .game-tips__title,
  .join-game__title {
    font-size: 1.8rem;
  }

  .easter-hero__description,
  .game-modes__subtitle,
  .top-levels__subtitle,
  .player-reviews__subtitle,
  .game-tips__subtitle,
  .join-game__description {
    font-size: 1rem;
  }

  .easter-hero__button,
  .join-game__button,
  .level-card__play {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .review-nav {
    width: 35px;
    height: 35px;
  }
  .easter-hero__stats  {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .egg-hunt-banner__wrapper {
    flex-direction: column;
    gap: 20px
  }
}