body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-color: #fff3e6;
    padding: 20px;
  }
  
  .tree-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .tree {
    background-color: #c2f0c2;
    border-radius: 10px;
    padding: 10px;
    margin: 0 10px;
    width: 120px;
  }
  
  .apples {
    font-size: 2rem;
  }
  
  .count {
    margin-top: 10px;
    font-weight: bold;
    font-size: 2rem;
  }
  
  .plus-sign {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 10px;
  }
  
  .question {
    font-size: 1.5rem;
    margin: 20px 0;
  }
  
  .options {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .option-btn {
    font-size: 1.5rem;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #ffd699;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .option-btn:hover {
    background-color: #ffcc80;
  }
  
  .feedback {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
      /* 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);
}