/* base.css の先頭に */
*, *::before, *::after { box-sizing: border-box; }

:root{
  --bg:#0B0F12
  --surface:#12171C;
  --text:#E6EBEF;
  --muted:#94A3B8;
  --accent:#00E0A4;
}
html,body{ margin:0; padding:0; background:var(--bg); color:var(--text); }
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; }
