.hero {
  padding: 120px 0 60px;
  text-align: center;
  color: #ffe29b;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(17, 52, 46, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.games-section {
  background: rgba(255, 226, 155, 0.95);
  margin: 0 auto 40px;
  max-width: 1200px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(17, 52, 46, 0.2);
  overflow: hidden;
}

.games-header {
  background: linear-gradient(135deg, #11342e, #0f6a02);
  color: white;
  padding: 40px;
  text-align: center;
}

.games-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.games-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.games-body {
  padding: 60px 40px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.game-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(17, 52, 46, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #11342e, #0f6a02);
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(17, 52, 46, 0.15);
  border-color: #0f6a02;
}

.game-poster {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #11342e, #0f6a02);
  border-radius: 20px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffe29b;
  box-shadow: 0 8px 25px rgba(17, 52, 46, 0.3);
  transition: transform 0.3s ease;
}

.game-card:hover .game-poster {
  transform: scale(1.1);
}

.game-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #11342e;
  font-weight: 700;
}

.game-description {
  color: #11342e;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 1rem;
}

.game-features {
  list-style: none;
  margin-bottom: 25px;
  padding: 0;
}

.game-features li {
  color: #11342e;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.game-features li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 0;
}

.game-cta {
  background: linear-gradient(135deg, #b9930e, #0f6a02);
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(185, 147, 14, 0.3);
}

.game-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(185, 147, 14, 0.4);
}

.back-button {
  display: inline-block;
  background: linear-gradient(135deg, #0f6a02, #11342e);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(15, 106, 2, 0.3);
}

.coming-soon {
  background: rgba(255, 191, 204, 0.1);
  padding: 60px 0;
  text-align: center;
  color: #ffe29b;
  margin-top: 40px;
}

.coming-soon h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.coming-soon p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.disclaimer {
  background: rgba(255, 191, 204, 0.1);
  padding: 40px 0;
  text-align: center;
  color: #ffe29b;
  border-top: 1px solid rgba(255, 226, 155, 0.2);
}

.disclaimer p {
  font-size: 14px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.footer {
  background: rgba(17, 52, 46, 0.9);
  color: #ffe29b;
  padding: 40px 0 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffbfcc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffe29b;
}

.footer-badge {
  margin: 20px 0;
}

.footer-copyright {
  font-size: 12px;
  color: #b9930e;
  border-top: 1px solid #0f6a02;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .games-section {
    margin: 0 20px 40px;
  }

  .games-body {
    padding: 40px 20px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 360px) {
  .header-content {
    padding: 15px 15px;
  }

  .games-section {
    margin: 0 15px 40px;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    padding: 25px 20px;
  }
}
