:root{
  --bg:#07070a;
  --gold1:#ffd57a;
  --gold2:#f7b500;
  --accent:linear-gradient(90deg,var(--gold1),var(--gold2));
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

*{box-sizing:border-box;margin:0;padding:0}

html,body{
  height:100%;
  background:
    radial-gradient(800px 400px at 12% 12%, rgba(255,210,120,0.04), transparent 8%),
    linear-gradient(180deg,#060608,#0f1014);
  color:#fff;
}

.page{
  min-height:100vh;
}
