body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #89f7fe, #66a6ff, #ff9966, #ff5e62);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  text-align: center;
  padding: 30px 20px;
  color: white;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 15px;
}

.cta {
  padding: 14px 30px;
  font-size: 18px;
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.cta:hover {
  background: linear-gradient(135deg, #ff9966, #ff5e62);
  transform: scale(1.05);
}

.container {
  background: white;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-align: center;
  max-width: 600px;
  margin: 30px auto;
  animation: fadeIn 1s ease-in-out;
}

.quote-box {
  background: #f9f9f9;
  padding: 25px;
  border-left: 6px solid #85b3f5;
  border-right: 6px solid #85b3f5;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.quote-box:hover {
  transform: scale(1.02);
}

#quote {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
  font-style: italic;
}

.generate {
  padding: 12px 25px;
  font-size: 16px;
  background: linear-gradient(135deg, #ff9966, #ff5e62);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.generate:hover {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

footer {
  margin-top: auto;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  background: rgba(255,255,255,0.2);
  color: white;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
