* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Share Tech Mono', monospace;
  background: radial-gradient(circle at center, #0f0a0a 0%, #080e2e 70%);
  color: #eee;
  overflow-x: hidden;
  position: relative;
}
.merch-arcade-title {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Share Tech Mono', monospace;
  font-size: 46px;
  letter-spacing: 10px;
  color: #00ffee;
  text-shadow: 0 0 12px #00ffee, 0 0 28px #00ffee;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
}
.merch-arcade-title span {
  display: inline-block;
  animation: merchFlash 0.12s steps(1) infinite;
  opacity: 0.25;
}
@keyframes merchFlash {
  0%   { opacity: 0.25; }
  50%  { opacity: 1; }
  100% { opacity: 0.25; }
}
.back-to-main {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  width: auto;
  padding: 0;
  border: none;
  z-index: 9999;
}
.back-to-main a {
  font-size: 1rem;
  color: #00ffee;
  text-decoration: none;
  text-shadow: 0 0 4px #00ffeeaa;
  transition: color 0.3s ease;
  font-family: 'Share Tech Mono', monospace;
}
.back-to-main a:hover {
  color: #ff00ff;
}
.shopify-buy-frame--toggle {
  position: fixed !important;
  top: 3rem !important;
  right: 1.9rem !important;
  z-index: 999999 !important;
}
#collection-component-1770230623466 {
  margin-top: 22vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  border: 6px double #00d46a;
  filter: drop-shadow(0 0 12px #ff00ff) drop-shadow(0 0 24px #00ffee);
  pointer-events: none;
  z-index: 999;
  animation: framePulse 4s ease-in-out infinite;
}
@keyframes framePulse {
  0%   { opacity: 0.7; }
  50%  { opacity: 1; }
  100% { opacity: 0.7; }
}
.orb-wrapper {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  pointer-events: none;
}
.orb-wrapper-left {
  left: 50px;
}
.orb-wrapper-right {
  right: 175px;
}
.side-orb {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px #00ffee) drop-shadow(0 0 22px #ff00ff);
  animation: orbSpin 6s linear infinite;
  transform-style: preserve-3d;
  opacity: 0.9;
}
@keyframes orbSpin {
  0%   { transform: rotateY(0deg) rotateX(0deg); }
  50%  { transform: rotateY(180deg) rotateX(12deg); }
  100% { transform: rotateY(360deg) rotateX(0deg); }
}
.legal-toggle {
  position: fixed;
  bottom: 200px;
  left: calc(20% - 120px);
  font-family: 'Share Tech Mono', monospace;
  color: #ff00ff;
  text-shadow: 0 0 6px #ff00ff;
  cursor: pointer;
  z-index: 99999999;
  font-size: 2rem;
  animation: togglePulse 1.8s ease-in-out infinite;
}
@keyframes togglePulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.legal-toggle:hover {
  animation-play-state: paused;
  color: #000000;
}
.ritual-legal {
  position: fixed;
  bottom: 60px;
  left: calc(20% - 120px);
  width: 320px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid #00ffee;
  border-radius: 10px;
  box-shadow: 0 0 12px #00ffeeaa, 0 0 24px #ff00ff55;
  backdrop-filter: blur(6px);
  z-index: 99999999;
  color: #00ffee;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  line-height: 1.3rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ritual-legal.collapsed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

/* ============================
   MOBILE FIXES — DO NOT TOUCH DESKTOP
   ============================ */
@media (max-width: 700px) {

  /* 1. Smaller MERCH ARCADE title */
  .merch-arcade-title span {
    width: auto !important;
    height: auto !important;
    font-size: 22px !important;
    letter-spacing: 6px !important;
    /* no opacity override */
  }

  .merch-arcade-title {
    font-size: 28px !important;
    top: 20px !important;
  }

  /* 2. Hide legal text box + toggle */
  .legal-toggle,
  .ritual-legal {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .back-to-main {
    display: none !important;
  }

}
