/* ======================================================
   02-base.css — Reset, body, nen pattern
   ====================================================== */
*{box-sizing:border-box;margin:0;padding:0;-webkit-tap-highlight-color:transparent}
  html,body{height:100%}

body{
    font-family:"Quicksand",system-ui,sans-serif;font-weight:600;
    color:var(--ink);overflow:hidden;
    transition:background-color .5s ease;
    background:var(--sky);
    user-select:none;
  }
  /* nền pattern sóng + icon chìm, đổi theo chủ đề */
  #bg{position:fixed;inset:0;z-index:0;transition:opacity .5s}
  #wave{position:fixed;left:0;right:0;top:0;z-index:1;pointer-events:none}

  @media(prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}
