/* CLS Eventat — entry stylesheet */
@import url("variables.css");
@import url("reset.css");
@import url("layout.css");
@import url("components.css");

/* ── Page fade-in ─────────────────────────────────────── */
body {
  animation: page-fade-in 0.18s ease both;
}
@keyframes page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
