*{margin:0;padding:0;box-sizing:border-box;}
body {
  font-family:'Share Tech Mono',monospace;
  background:#000000;
  color:#eee;
  overflow-x:hidden;
}
#cross-container {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: hidden; z-index: 2;
  mask-image: linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
}
  .neon-cross {
    position:absolute;
    font-size:2.2rem;
    color:#5233ffcc;
    text-shadow:0 0 8px#ff33ffaa;
    animation:crossUp 6s linear forwards;
    pointer-events:none;
  }
  @keyframes crossUp {
    to {
      transform:translateY(-50px) scale(1.2);
      opacity:0;
    }
  }
#star-gradient-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000 0%, transparent 40%, transparent 60%, #000 100%);
  pointer-events: none;
  z-index: 1;
}
canvas#starfield {
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
body.fade-stars canvas#starfield,
body.show-stars canvas#starfield {
  opacity: 1;
  transition: opacity 1s ease;
}
.page-spacer {
  height:120vh;
}
.site-header {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 2rem;
  z-index:10;
}
.logo {
  font-family:'UnifrakturCook',cursive;
  font-size:2rem;
  color:#e6d7d7;
  text-shadow:0 0 8px #ff0000aa,0 0 20px #00ffee88;
}
.glitch {
  display:inline-block;
  animation:glitchAnim 2s infinite;
}
@keyframes glitchAnim {
  0%,100% { clip-path:inset(0); }
  10% { clip-path:inset(10% 0 85% 0); transform:translate(-2px,-2px); }
  20% { clip-path:inset(85% 0 10% 0); transform:translate(2px,2px); }
  30% { clip-path:inset(20% 0 75% 0); transform:translate(-2px,2px); }
  40% { clip-path:inset(75% 0 20% 0); transform:translate(2px,-2px); }
}
#scrubsto-symbol {
  position:fixed;
  top:1.2rem;
  left:50%;
  transform:translateX(-50%);
  perspective:500px;
  z-index:1000;
  width:150px;
}
#scrubsto-symbol img {
  width:100%;
  transform-style:preserve-3d;
  transform-origin:center center;
  animation:spinYslow 8s linear infinite;
}
#scrubsto-symbol img:hover {
  animation:spinYfast 0.6s linear infinite !important;
}
@keyframes spinYslow {
  from { transform:rotateY(0deg); }
  to { transform:rotateY(360deg); }
}
@keyframes spinYfast {
  from { transform:rotateY(0deg); }
  to { transform:rotateY(360deg); }
}
.rotating {
  display:block;
  width:100%;
  transform-style:preserve-3d;
  animation:spin-3d-slow 8s linear infinite;
}
.rotating:hover {
  animation:spin-3d-fast 0.6s linear infinite !important;
}
.nav-below-eye {
  position:fixed;
  top:10rem;
  left:50%;
  transform:translateX(-50%);
  z-index:1000;
  display:flex;
  gap:2rem;
  font-size:1.50rem;
  background:none;
  padding:0.5rem 1rem;
  border-radius:0;
  box-shadow:none;
}
.nav-below-eye a {
  color:#1ea074;
  text-decoration:none;
  text-shadow:0 0 4px #00ffeeaa;
  transition:all 0.2s ease;
}
.nav-below-eye a:hover {
  color:#440e40;
  transform:scale(1.1);
}
.scroll-cue {
  position:absolute;
  bottom:2rem;
  left:50%;
  transform:translateX(-50%);
  color:#ff00ff;
  font-size:2rem;
  animation:bounce 2s infinite;
  z-index:10;
}
@keyframes bounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50% { transform:translateX(-50%) translateY(10px); }
}
.site-footer {
  text-align:center;
  padding:2rem 0;
  font-size:.8rem;
  color:#555;
  border-top:1px solid #222;
  position:relative;
  z-index:10;
  background:#000;
}
.shopify-buy-frame--toggle {
  position:fixed !important;
  top:3rem !important;
  right:1.9rem !important;
  bottom:auto !important;
  left:auto !important;
  z-index:999999 !important;
}


@media (max-width: 768px) {

  /* Header */
  .site-header {
    padding: 0.5rem 1rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  /* Center the Shopify toggle better on mobile */
  .shopify-buy-frame--toggle {
    top: 1rem !important;
    right: 1rem !important;
  }

  /* Symbol */
  #scrubsto-symbol {
    width: 100px;
    top: 1.5rem;
  }

  /* Navigation becomes vertical */
  .nav-below-eye {
    top: 7rem;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.6);
    padding: 0.8rem 1rem;
    border-radius: 8px;
  }

  .nav-below-eye a {
    display: block;
    text-align: center;
  }

  /* Spacer so content doesn’t hide behind fixed elements */
  .page-spacer {
    height: 150vh;
  }
}

/* Even smaller screens (iPhone SE, older Android) */
@media (max-width: 480px) {

  #scrubsto-symbol {
    width: 80px;
  }

  .nav-below-eye {
    top: 9rem;
    font-size: 2rem;
  }

  .logo {
    font-size: 1.2rem;
  }
}