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

body {
  background: #1a1a2e;
  background-image: 
    radial-gradient(ellipse at 50% 40%, #1e2240 0%, #12132a 50%, #0a0a18 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'VT323', monospace;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

#mac-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#canvas {
  display: block;
  cursor: default;
}

#hint-text {
  color: #aab;
  font-size: 18px;
  padding: 12px 0 0 0;
  text-align: center;
  font-family: 'VT323', monospace;
  letter-spacing: 1px;
  animation: hintPulse 2s ease-in-out infinite;
  transition: opacity 1s ease;
}

#hint-text.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

#page-footer {
  color: #556;
  font-size: 13px;
  padding: 10px;
  text-align: center;
  font-family: 'VT323', monospace;
}

#page-footer a {
  color: #8a7adc;
  text-decoration: none;
}
#page-footer a:hover {
  text-decoration: underline;
}