body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-color: #fff3e6;
    padding: 20px;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
  }
  
  .basket {
    background-color: #c2f0c2;
    padding: 15px;
    border-radius: 10px;
    width: 200px;
  }
  
  .apple-area {
    min-height: 80px;
    font-size: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
  }
  
  .count {
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 5px;
  }
  
  .apple {
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .apple:hover {
    transform: scale(1.2);
  }
  
  .apple.clicked {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
  }
  
  .plus-sign {
    font-size: 3rem;
    font-weight: bold;
  }
  
  .feedback {
    margin-top: 30px;
    font-size: 1.3rem;
    font-weight: bold;
  }

  .new-game-btn {
    background-color: #ffcc80;
    border: none;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-family: 'Comic Sans MS', cursive;
    border-radius: 12px;
    cursor: pointer;
    margin: 20px auto;
    display: block;
    box-shadow: 2px 2px 5px #999;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .new-game-btn:hover {
    background-color: #ffb74d;
    transform: scale(1.05);
  }
      /* Rich Back to Home Button */
.back-button {
  display: inline-block;
  margin-top: 90px;
  margin-bottom: 20px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.back-button:hover {
  background: linear-gradient(135deg, #45a049, #4CAF50);
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.back-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}