:root {
  --bg-color: #e3f2fd;
  --card-bg: #ffffff;
  --text-primary: #1e3a8a;
  --text-secondary: #3b82f6;
  --accent: #2196f3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
  color: var(--text-primary);
}

.card {
  background: var(--card-bg);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(3, 169, 244, 0.25);
  text-align: center;
  max-width: 320px;
  width: 100%;
}

.emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.5rem;
}
