body {
  font-family: 'Fredoka', Comic Sans MS, cursive, sans-serif;
  background: linear-gradient(135deg, #FFF7AE 0%, #FFE5EC 60%, #B5EAD7 100%);
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5vh; /* Reduced from 5vh */
}

.site-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD600; /* Brighter yolk yellow */
  margin-bottom: 0.1em; /* Less space */
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.2rem;
  color: #7ED6C1; /* Softer teal */
  margin-bottom: 1.2em; /* Less space */
}

.egg-btn {
  font-size: 6rem;
  background: #FFF7AE;
  border: 4px solid #FFD600;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(255, 214, 0, 0.10);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  outline: none;
  margin-bottom: 1.2em; /* Less space */
}

.egg-btn:active {
  transform: scale(0.95) rotate(-8deg);
  box-shadow: 0 2px 8px rgba(255, 214, 0, 0.10);
}
.egg-btn:focus {
  box-shadow: 0 0 0 4px #B5EAD7;
}

.fortune-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFE5EC; /* Lighter, warmer pink */
  color: #333;
  font-size: 1.4rem;
  border-radius: 1.2em;
  box-shadow: 0 2px 8px rgba(181, 234, 215, 0.10);
  padding: 1.2em 1.5em; /* Less padding */
  margin-top: 0.5em; /* Less space */
  min-width: 220px;
  max-width: 90vw;
  word-break: break-word;
  animation: popIn 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  80% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

footer {
  margin-top: auto;
  padding: 1.5em 0 0.5em 0;
  text-align: center;
  color: #B5EAD7;
  font-size: 1rem;
}
footer a {
  color: #F7B801;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .egg-btn {
    font-size: 4rem;
  }
  .fortune-box {
    font-size: 1.05rem;
    padding: 0.8em 0.7em;
  }
  .site-title {
    font-size: 1.7rem;
  }
}
