/* styles.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

:root{
  --bg: #0b1220;
  --card: #121a2b;
  --text: #e9eefc;
  --muted: #aab6d6;
  --accent: #6ea8fe;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}

.container{
  max-width: 720px;
  margin: 40px auto;
  padding: 0 16px;
}

h1{
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
}

p{
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.card{
  margin-top: 18px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px;
}

button{
  margin-top: 14px;
  border: 0;
  background: var(--accent);
  color: #07101f;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}

button:hover{
  filter: brightness(1.05);
}
