* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  cursor: none;
}

body {
  background: radial-gradient(circle at 50% 40%, #161b2a 0%, #0a0d14 55%, #020305 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
}

/* Hide the checkbox */
#amonTrigger {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Center content */
.amon-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

#amonField {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: normal;
}

/* Label so the whole lockup is clickable */
.amon-label {
  pointer-events: none;
  cursor: none;
}

/* Lockup matches your combined logo size */
.amon-lockup {
  position: relative;
  width: 356.21px;   /* lockup width */
  height: 80px;      /* lockup height */
}

/* Icon: 80 x 80, starts centered in lockup
   Center X offset = (663.77 - 80) / 2 = 291.885px
*/
.amon-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
}

/* Wordmark: height 80, starts centered and invisible
   Center X offset = (663.77 - 563.46) / 2 = 50.155px
*/
.amon-wordmark {
  position: absolute;
  height: 64px;
  top: 50%;
  left: 0;
  opacity: 1;
  transform: translate(110px, -50%);
  clip-path: inset(0 100% 0 0);
}

/* Optional: slight downscale on small screens */
@media (max-width: 720px) {
  .amon-lockup {
    transform: scale(0.85);
    transform-origin: center;
  }
}

.red-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #e53935;
  border-radius: 50%;
  opacity: 0.85;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}