/* General Styles */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f8ff; /* Light blue background */
    color: #333;
  }
  
  header {
    background-color: #ff6f61; /* Bright coral */
    padding: 20px;
    text-align: center;
  }
  
  header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #fff; /* White text */
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #fff; /* White text */
    font-size: 1.2rem;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #ffcc00; /* Yellow background */
    transition: background-color 0.3s ease;
  }
  
  nav ul li a:hover {
    background-color: #ffd966; /* Lighter yellow on hover */
  }
  
  .hero {
    text-align: center;
    padding: 50px;
    background-color: #ffeb99; /* Soft yellow */
  }
  
  .hero h2 {
    font-size: 2rem;
    color: #ff6f61; /* Coral text */
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #333;
  }
  
  .hero button {
    padding: 10px 20px;
    background-color: #ff6f61; /* Coral button */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .hero button:hover {
    background-color: #e65a50; /* Darker coral on hover */
  }
  
  .content-section {
    padding: 40px;
    text-align: center;
    background-color: #fdfd96; /* Light yellow */
  }
  
  .content-section:nth-child(even) {
    background-color: #d0f0c0; /* Light green for alternating sections */
  }
  
  .content-section h2 {
    font-size: 2rem;
    color: #333;
  }
  
  .cards, .games-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .card, .game-card {
    background-color: #fff;
    border: 2px solid #ffcc00; /* Yellow border */
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover, .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .card h3, .game-card {
    color: #ff6f61; /* Coral text */
  }
  
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  form label {
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
  }
  
  form input, form textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #ffcc00; /* Yellow border */
    border-radius: 5px;
  }
  
  form button {
    background-color: #ff6f61; /* Coral button */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  form button:hover {
    background-color: #e65a50; /* Darker coral on hover */
  }
  
  footer {
    background-color: #ff6f61; /* Coral background */
    text-align: center;
    padding: 10px;
    color: white;
    margin-top: 20px;
  }
  
  footer p {
    margin: 0;
  }