/* General Styling */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  background: radial-gradient(circle, #282c34, #1c1e26);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: white;
}

/* Main Container */
.main-container {
  text-align: center;
  animation: fadeIn 2s ease-in-out;
  padding: 20px; /* Added padding for better mobile spacing */
}

.title {
  font-size: 3.5rem;
  margin-bottom: 40px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7), 0 0 30px #ff6f61;
  animation: pulse 2s infinite;
}

/* Welcome Button */
.welcome-btn {
  font-size: 1.8rem;
  padding: 20px 40px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff6f61, #ff9a44, #f0e34a);
  color: white;
  cursor: pointer;
  text-transform: uppercase;
  animation: glow 2s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-btn:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 0 20px #ff6f61, 0 0 40px #ff9a44;
}

/* Animations */
@keyframes glow {
  0% { box-shadow: 0 0 10px #ff6f61, 0 0 30px #ff9a44; }
  50% { box-shadow: 0 0 25px #ff6f61, 0 0 50px #f0e34a; }
  100% { box-shadow: 0 0 10px #ff6f61, 0 0 30px #ff9a44; }
}

@keyframes pulse {
  0%, 100% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.7), 0 0 30px #ff6f61; }
  50% { text-shadow: 0 0 25px rgba(255, 255, 255, 1), 0 0 50px #ff9a44; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Header Styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(to right, #1e90ff, #ff6f61);
}

.header h1 {
  font-size: 2rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.nav-btn {
  font-size: 1rem;
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(90deg, #4caf50, #81c784);
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.nav-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(90deg, #66bb6a, #a5d6a7);
}

.highlight {
  background: linear-gradient(90deg, #ff6f61, #ff9a44);
  color: #fff;
  font-weight: bold;
}

/* Main Content */
.main-content {
  text-align: center;
  margin-top: 50px;
}

.main-content h2 {
  font-size: 2rem;
  color: #f0e34a;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #ff6f61;
}

/* Game Buttons */
.game-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.game-btn {
  font-size: 1.2rem;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: buttonGlow 3s infinite;
}

/* Unique Gradients for Each Button */
.game1 { background: linear-gradient(90deg, #ff6f61, #f0e34a); }
.game2 { background: linear-gradient(90deg, #4caf50, #8bc34a); }
.game3 { background: linear-gradient(90deg, #1e90ff, #00bcd4); }
.game4 { background: linear-gradient(90deg, #9c27b0, #673ab7); }
.game5 { background: linear-gradient(90deg, #e91e63, #f06292); }
.game6 { background: linear-gradient(90deg, #3f51b5, #5c6bc0); }
.game7 { background: linear-gradient(90deg, #ff5722, #ff8a65); }
.game8 { background: linear-gradient(90deg, #00bcd4, #4dd0e1); }
.game9 { background: linear-gradient(90deg, #ffc107, #ffeb3b); }
.game10 { background: linear-gradient(90deg, #03a9f4, #29b6f6); }
.game11 { background: linear-gradient(90deg, #8bc34a, #aed581); }
.game12 { background: linear-gradient(90deg, #9e9e9e, #bdbdbd); }
.game13 { background: linear-gradient(90deg, #795548, #8d6e63); }
.game14 { background: linear-gradient(90deg, #ff6f61, #f0e34a); }
.game15 { background: linear-gradient(90deg, #4caf50, #8bc34a); }

/* Button Hover Effect */
.game-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Glow Animation */
@keyframes buttonGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.7); }
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
}

.social-icons img {
  width: 48px;
  height: 48px;
  cursor: pointer;
}

/* Feedback Form */
#feedback-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

#feedback-form label {
  font-size: 1rem;
  font-weight: bold;
}

#feedback-form textarea,
#feedback-form select {
  width: 90%;
  max-width: 500px;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#feedback-form .submit-btn {
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#feedback-form .submit-btn:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
      height: auto; /* Allow body height to adjust on mobile */
      padding: 20px; /* Add padding for mobile */
      flex-direction: column; /* Stack items vertically */
  }
  .title {
      font-size: 2.5rem; /* Smaller font size for mobile */
  }
  .welcome-btn {
      font-size: 1.2rem; /* Smaller font size for mobile */
      padding: 15px 30px; /* Smaller padding for mobile */
  }
  .header h1 {
      font-size: 1.5rem; /* Smaller font size for mobile */
  }
  .nav-btn {
      font-size: 0.8rem; /* Smaller font size for mobile */
      padding: 8px 16
  }
}