body {
  font-family: -apple-system, sans-serif;
  background: #1e1e2e;
  color: #cdd6f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 2rem;
  gap: 2rem;
  box-sizing: border-box;
}

h1 {
  margin: 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
}

.card {
  width: 100%;
  max-width: 700px;
  background: #313244;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.quote {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  font-style: italic;
}

.meta {
  font-size: 0.85rem;
  color: #6c7086;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn {
  background: #89b4fa;
  color: #1e1e2e;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: #74a8f8;
}