/* General Styles */
.container {
  color: #333;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arcade-container {
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 5rem;
  text-shadow: 0 2px 4px rgba(255, 105, 180, 0.6);
  animation: fadeIn 1s ease-in-out;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.game-card {
  background: transparent;
  -webkit-backdrop-filter: brightness(80%);
  backdrop-filter: brightness(80%);
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid #ff4f58;
  box-shadow: 0 0px 32px rgba(255, 30, 120, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0px 32px rgba(255, 30, 120, 0.8);
}

.game-card h2 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
}

.game-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.play-button {
  display: inline-block;
  background: #ff4c4c;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0px 5px 20px rgba(255, 105, 180, 0.3);
}

.play-button:hover {
  background: #ff6b6b;
  transform: scale(1.05);
  box-shadow: 0 0 15px #ff5656;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
