/* GET THE TRASH – getthetrash.css */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html, body { width:100%; height:100%; overflow:hidden; background:#000; font-family:'Arial','Helvetica Neue',sans-serif; }
body { display:flex; justify-content:center; align-items:center; min-height:100vh; }
canvas { display:block; touch-action:none; image-rendering:auto; }
#loading { position:fixed; inset:0; background:#000; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:14px; z-index:9999; color:#fff; text-align:center; transition:opacity 0.5s ease; }
#loading span { font-size:clamp(50px,12vw,80px); animation:bounce 1s infinite alternate; }
#loading p    { font-size:clamp(18px,4.5vw,32px); font-weight:bold; letter-spacing:3px; }
#loading.hidden { opacity:0; pointer-events:none; }
@keyframes bounce { from{transform:translateY(0)} to{transform:translateY(-18px)} }
::-webkit-scrollbar { display:none; }
