/* mmhauls effects styles — particles · glare-hover · shiny text · circular gallery */

/* particle canvas sits behind transparent body content, above the page bg */
html { background: #080808; }
body { background: transparent !important; }
.fx-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* ------------------------------------------------------------- GLARE HOVER */
.glare-hover {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.glare-hover > .fx-glare {
  position: absolute;
  top: 0;
  left: -130%;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.10) 38%,
    rgba(232, 255, 0, 0.55) 50%,
    rgba(255, 255, 255, 0.10) 62%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 3;
  transition: left 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.glare-hover:hover > .fx-glare,
.glare-hover:focus-visible > .fx-glare { left: 165%; }
@media (prefers-reduced-motion: reduce) {
  .glare-hover > .fx-glare { transition: none; }
}

/* -------------------------------------------------------------- SHINY TEXT */
/* keeps the element's own colour; overlays a moving highlight clipped to the glyphs */
.shiny-text {
  position: relative;
}
.shiny-text::after {
  content: attr(data-shine);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  white-space: normal;
  pointer-events: none;
  color: transparent;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.9) 50%, transparent 65%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fx-shine 3.4s linear infinite;
}
@keyframes fx-shine {
  0%   { background-position: 130% 0; }
  100% { background-position: -130% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .shiny-text::after { animation: none; }
}

/* --------------------------------------------------------- CIRCULAR GALLERY */
.fx-cg {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: visible;
  user-select: none;
}
.fx-cg-stage {
  position: absolute;
  inset: 0;
  perspective: 1500px;
  transform-style: preserve-3d;
  cursor: grab;
}
.fx-cg-stage.dragging { cursor: grabbing; }
.fx-cg-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 240px;
  height: 340px;
  border-radius: 16px;
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  will-change: transform, opacity;
  transition: opacity 0.3s linear, border-color 0.25s ease;
}
.fx-cg-card:hover { border-color: rgba(232, 255, 0, 0.5); }
.fx-cg-media {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.fx-cg-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.fx-cg-info {
  padding: 10px 14px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}
.fx-cg-name {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: 0.4px;
  color: var(--text, #fff);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fx-cg-price {
  margin-top: 3px;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent, #e8ff00);
}
@media (max-width: 900px) {
  .fx-cg { height: 380px; }
  .fx-cg-card { width: 190px; height: 280px; }
}
