/* Global Custom Cursor - Optimized for Performance */
@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: #fff;
  color: #1B1717;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  pointer-events: none;
  z-index: 9999999;
  opacity: 1;
  mix-blend-mode: difference;
  contain: layout style;      /* limit repaint scope to cursor element only */
  transition:
    width  0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (hover: none) {
  #custom-cursor { display: none; }
}
/* Variations */
#custom-cursor.view-mode,
#custom-cursor.scroll-mode {
  width: 76px;
  height: 76px;
}
#custom-cursor span {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
#custom-cursor.view-mode span,
#custom-cursor.scroll-mode span {
  opacity: 1;
}



.hero-marquee-wrapper {
  cursor: none;
}

/* Hide scrollbars across all browsers without altering layout or placement */
html, body {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
