/* =========================
   🔧 RESET GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

/* =========================
   🌍 BODY
========================= */
body {
  min-height: 100dvh;
  background: linear-gradient(
    180deg,
    var(--bg-main),
    var(--bg-secondary)
  );
  display: flex;
  justify-content: center;
  align-items: center;
}