@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@700&family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

h1 {
  font-family: 'Comic Neue', cursive;
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.subtitle {
  opacity: 0.8;
  margin-bottom: 20px;
}

.card {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.highlight {
  color: #00ffcc;
  font-weight: 600;
}

button {
  background: #00ffcc;
  color: #000;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 204, 0.4);
}

#quote {
  margin-top: 15px;
  font-style: italic;
  min-height: 24px;
}

footer {
  margin-top: 25px;
  font-size: 0.8rem;
  opacity: 0.7;
}
