/* ============================================
   BASE — Reset, Variables, Fonts, Body
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

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

:root {
  --grad-yellow: 0%;
  --grad-white: 55%;
  --yellow: #ffe600;
  --black: #000;
  --white: #fff;
  --grey: #f0f0f0;
}

html, body {
  width: 100vw;
  overflow-x: hidden;
  font-family: 'Bangers', cursive;
  background: var(--yellow);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

canvas {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

#status {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #666;
  font-family: monospace;
  font-size: 13px;
  z-index: 20;
}

/* Main Content Wrapper — sits above the fixed footer */
.main-content-wrapper {
  position: relative;
  z-index: 2;
  background: radial-gradient(circle at 50% 85%, var(--yellow) var(--grad-yellow), var(--white) var(--grad-white));
  background-attachment: fixed;
  margin-bottom: 60vh;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .main-content-wrapper {
    margin-bottom: 50vh;
  }
}

.mobile-only-spacer { display: none; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .mobile-only-spacer { 
    display: block; 
    height: 60vh; 
    width: 100vw; 
    background: transparent; 
    z-index: -1; 
  }
  .main-content-wrapper {
    margin-bottom: 55vh;
  }
}
