/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
  color: #fff;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

#advice {
  font-size: 1.4rem;
  margin: 20px 0;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  line-height: 1.5;
  animation: fadeIn 0.6s ease-in-out;
}

button {
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

button:active {
  transform: scale(0.95);
}



@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
