body {
  font-family: 'Nunito', sans-serif;
  background-image: url('../images/background.jpeg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  min-height: 100vh;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

.container {
  width: 90%;
  max-width: 500px;
  padding: 2.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

h1 {
  color: #4a235a;
  font-weight: 900;
  font-size: 2.2rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5); /* Soft glow */
  margin-top: 0;
}

/* --- Button Container --- */
.buttons {
  display: flex;
  flex-direction: column; /* Stacks buttons vertically */
  gap: 15px; /* Adds space between buttons */
  margin-top: 2rem;
}

/* --- Cutesy Button Styling --- */
button {
  font-family: 'Nunito', sans-serif; /* Use the same font */
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 24px;
  border: none;
  border-radius: 50px; /* Super rounded "pill" shape */
  cursor: pointer;
  
  /* Fun background and text color */
  background-color: #ffb6c1; /* Light Pink */
  color: #8b4513; /* Saddle Brown */
  
  /* Cute shadow and transition */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Hover effect */
button:not(:disabled):hover {
  transform: translateY(-4px); /* Lifts the button up */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: #ffc2cd; /* Slightly lighter pink */
}

/* Active (click) effect */
button:not(:disabled):active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Disabled button style */
#bunotBtn:disabled {
  background-color: #e0e0e0; /* Grayed out */
  color: #9e9e9e;
  cursor: not-allowed;
  box-shadow: none;
}

/* --- Status Message --- */
#status {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
}