html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: #000000 url('IMAGES/fond.jpg') center center / cover no-repeat fixed;
  overflow: hidden;
  touch-action: none;
}

#stage {
  position: fixed;
  inset: 0;
  cursor: grab;
}

#stage:active {
  cursor: grabbing;
}

#stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

#site-footer {
  position: fixed;
  bottom: 1.15rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #ffffff;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}

#logo-tracker {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.75rem;
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  z-index: 10;
  pointer-events: none;
}

.tracker-row {
  display: flex;
  gap: 0.35rem;
  line-height: 1.4;
}

.tracker-label {
  opacity: 0.6;
  font-weight: 700;
}

#click-hint {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -260px);
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: #ffffff;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
  animation: hint-pulse 1.6s ease-in-out infinite;
}

@keyframes hint-pulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

#year-tag {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.75rem;
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  z-index: 10;
  pointer-events: none;}

/* ---- Portable: shrink the bottom row so the corners don't crowd the centered © ---- */
@media (max-width: 760px) {
  #site-footer {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    bottom: 0.8rem;
  }
  #logo-tracker {
    font-size: 0.56rem;
    gap: 0.5rem;
    padding: 0.3rem 0.4rem;
    bottom: 0.6rem;
    left: 0.4rem;
  }
  #year-tag {
    font-size: 0.56rem;
    padding: 0.3rem 0.4rem;
    bottom: 0.6rem;
    right: 0.4rem;
  }
}
