* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.title {
  font-size: 38px;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 35px;
}

.card {
  background: white;
  padding: 40px 35px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0px 10px 40px rgba(0,0,0,0.08);
}

.fact-text {
  font-size: 22px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 35px;
  min-height: 80px;
}

.btn {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  border: none;
  padding: 15px 30px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  opacity: 0.9;
}
