/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #4b0082, #8a2be2);
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.container {
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  width: 90%;
  max-width: 500px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Button */
#fortune-btn {
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: #ff6347;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#fortune-btn:hover {
  background: #ff4500;
  transform: scale(1.05);
}

/* Fortune box */
.fortune-box {
  margin-top: 30px;
  padding: 20px;
  border: 2px solid #fff;
  border-radius: 10px;
  font-size: 1.2rem;
  font-style: italic;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
