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

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--color-bg);
  font-family: 'Inter', -apple-system, sans-serif;
  /* Fallback order: Windows .cur → Safari PNG → system pointer */
  cursor: url('../assets/cursor/SmoothHand.cur') 9 2,
          url('../assets/cursor/SmoothHand.png') 9 2,
          auto;
}

/* Custom cursor on interactive elements */
a, button, [role="button"],
.slide-thumb, .widget, .widget-wrap,
.app-icon, .dock-icon {
  cursor: url('../assets/cursor/SmoothHand.cur') 9 2,
          url('../assets/cursor/SmoothHand.png') 9 2,
          pointer !important;
}

/* ===== Fluid Canvas ===== */
#fluid {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== Page Layout ===== */
.layout-wrapper {
  position: relative;
  z-index: 2;
  width: 100%; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
  padding: var(--space-5);
}

/* ===== Footer ===== */
.site-footer {
  position: fixed;
  bottom: 32px;
  left: 0; right: 0;
  text-align: center;
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.03em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
