:root {
  --acid-green: #ccff00;
}

body {
  background-color: #050505;
  color: white;
  font-family: "Inter", sans-serif;
  cursor: none;
}
/* Premium Stroke Effect */
.stroke-neon {
  -webkit-text-stroke: 1px rgba(204, 255, 0, 0.5);
}
.clip-hide {
  clip-path: inset(0 100% 0 0);
}
.mono {
  font-family: "Space Mono", monospace;
}
/* --- Custom Cursor --- */
.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--acid-green);
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(204, 255, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 9998;
  pointer-events: none;
  transition:
    transform 0.1s ease-out,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

@media (max-width: 1024px) {
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* --- Typography & Utilities --- */
.font-archivo {
  font-family: "Archivo Black", sans-serif;
}

.text-outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  color: transparent;
}

.text-acid {
  color: var(--acid-green);
}
.bg-acid {
  background-color: var(--acid-green);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--acid-green);
}

/* --- Components --- */
.product-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  transition: all 0.4s ease;
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--acid-green);
  transform: translateY(-10px);
}

.category-item {
  transition: all 0.3s ease;
  filter: grayscale(1);
}
.category-item:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}
/* When the section (group) is hovered, change the text color */
#join.group:hover #movement-text {
  color: #ccff00 !important;
  -webkit-text-stroke: 1.5px transparent;
}

/* Optional: Add a subtle glow to the text on hover */
#join.group:hover #movement-text {
  text-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}
