* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #111, #333);
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.container {
  width: 100%;
  max-width: 500px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease;
}

button {
  padding: 14px 28px;
  font-size: 1.2rem;
  background-color: #ff0077;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 20px;
  width: 100%;
}

button:hover {
  background-color: #ff3399;
}

#message, #endMessage p {
  font-size: 1.5rem;
  margin-top: 30px;
  animation: fadeIn 1s ease forwards;
}

#photoContainer {
  margin-top: 30px;
}

#photo {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transition: opacity 1s ease;
}

#finalText {
  font-size: 2rem;
  margin-top: 40px;
  animation: fadeIn 2s ease forwards;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
