body {
    background-color: #fdf6f0;
    font-family: 'Georgia', serif;
    color: #3b2c35;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .garden {
    text-align: center;
    background-color: #ffffffd6;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(210, 180, 222, 0.3);
    max-width: 600px;
  }
  
  h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  #message {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a4153;
  }
  
  button {
    background-color: #d8a1c4;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #c286af;
  }
  
  #bloom-area {
    margin-top: 30px;
    font-size: 2rem;
  }
  #bloom-area {
    position: relative;
    width: 100%;
    height: 60vh;
    margin-top: 30px;
    overflow: hidden;
  }
  
  .bloom {
    position: absolute;
    font-size: 2rem;
    animation: fadeInFloat 4s ease-in forwards;
  }

  @keyframes fadeInFloat {
    0% {
      opacity: 0;
      transform: scale(0.5) translateY(0);
    }
    50% {
      opacity: 1;
      transform: scale(1.05) translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(-30px);
    }
  }
  
  .welcome-message {
    text-align: center;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    color: #5a4153;
    margin-bottom: 30px;
    padding: 10px;
  }
  
  .bloom-count {
    margin-top: 16px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5a6b;
  }