input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ==========================================
   SCROLL PROGRESS BAR
   ========================================== */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--primary) / 0.6));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px hsl(var(--primary) / 0.8);
}

/* ==========================================
   NAVBAR ENTRANCE
   ========================================== */

@keyframes navbar-enter {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header.sticky {
  animation: navbar-enter 0.5s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

/* ==========================================
   SHIMMER SWEEP — INFO CARDS (Loja, Comunidade)
   ========================================== */

.card-shimmer {
  position: relative;
  overflow: hidden;
}

.card-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 0.6s ease;
  pointer-events: none;
}

.card-shimmer:hover::after {
  background-position: -100% 0;
}

/* ==========================================
   CATEGORY CARDS — SHIMMER
   ========================================== */

#categories a.relative::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 0.55s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 5;
}

#categories a.relative:hover::after {
  background-position: -100% 0;
}

/* ==========================================
   SECTION HEADING ACCENT
   ========================================== */

.section-heading {
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background: linear-gradient(to right, transparent, hsl(var(--primary)), transparent);
  border-radius: 9999px;
  transition: width 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.section-heading.visible::after {
  width: 100%;
}

/* ==========================================
   TROPHY BADGE PULSE RING
   ========================================== */

@keyframes trophy-ring {
  0%   { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.trophy-pulse {
  animation: trophy-ring 2s ease-out infinite;
}

/* ==========================================
   HERO HEADLINE GRADIENT
   ========================================== */

.hero-title-gradient {
  background: linear-gradient(135deg, #fff 40%, hsl(var(--primary) / 0.85) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================
   CTA BUTTON PULSE GLOW
   ========================================== */

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 4px 0 0 #1e3a8a, 0 0 0 0 rgba(37, 99, 235, 0); }
  50%       { box-shadow: 0 4px 0 0 #1e3a8a, 0 0 20px 6px rgba(37, 99, 235, 0.35); }
}

.cta-pulse {
  animation: cta-glow 2.5s ease-in-out infinite;
}

/* ==========================================
   FLOATING PARTICLES (hero background)
   ========================================== */

@keyframes particle-float {
  0%   { transform: translateY(0) scale(1); opacity: 0.4; }
  50%  { transform: translateY(-18px) scale(1.1); opacity: 0.7; }
  100% { transform: translateY(0) scale(1); opacity: 0.4; }
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: hsl(var(--primary));
  pointer-events: none;
  animation: particle-float var(--duration, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  filter: blur(1px);
  opacity: 0.4;
}

/* ==========================================
   SCROLL PROGRESS BAR
   ========================================== */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--primary) / 0.6));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px hsl(var(--primary) / 0.8);
}

/* ==========================================
   NAVBAR ENTRANCE
   ========================================== */

@keyframes navbar-enter {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header.sticky {
  animation: navbar-enter 0.5s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

/* ==========================================
   SHIMMER SWEEP — INFO CARDS (Loja, Comunidade)
   ========================================== */

.card-shimmer {
  position: relative;
  overflow: hidden;
}

.card-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 0.6s ease;
  pointer-events: none;
}

.card-shimmer:hover::after {
  background-position: -100% 0;
}

/* ==========================================
   CATEGORY CARDS — SHIMMER
   ========================================== */

#categories a.relative::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 0.55s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 5;
}

#categories a.relative:hover::after {
  background-position: -100% 0;
}

/* ==========================================
   SECTION HEADING ACCENT
   ========================================== */

.section-heading {
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background: linear-gradient(to right, transparent, hsl(var(--primary)), transparent);
  border-radius: 9999px;
  transition: width 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.section-heading.visible::after {
  width: 100%;
}

/* ==========================================
   TROPHY BADGE PULSE RING
   ========================================== */

@keyframes trophy-ring {
  0%   { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.trophy-pulse {
  animation: trophy-ring 2s ease-out infinite;
}

/* ==========================================
   HERO HEADLINE GRADIENT
   ========================================== */

.hero-title-gradient {
  background: linear-gradient(135deg, #fff 40%, hsl(var(--primary) / 0.85) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================
   CTA BUTTON PULSE GLOW
   ========================================== */

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 4px 0 0 #1e3a8a, 0 0 0 0 rgba(37, 99, 235, 0); }
  50%       { box-shadow: 0 4px 0 0 #1e3a8a, 0 0 20px 6px rgba(37, 99, 235, 0.35); }
}

.cta-pulse {
  animation: cta-glow 2.5s ease-in-out infinite;
}

/* ==========================================
   FLOATING PARTICLES (hero background)
   ========================================== */

@keyframes particle-float {
  0%   { transform: translateY(0) scale(1); opacity: 0.4; }
  50%  { transform: translateY(-18px) scale(1.1); opacity: 0.7; }
  100% { transform: translateY(0) scale(1); opacity: 0.4; }
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: hsl(var(--primary));
  pointer-events: none;
  animation: particle-float var(--duration, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  filter: blur(1px);
  opacity: 0.4;
}

/* Remove o itálico de absolutamente tudo */
* {
    font-style: normal !important;
}

input[type=number] {
  -moz-appearance: textfield;
}

@keyframes fade-in {
  from {
      background-color: rgba(0, 0, 0, 0);
  }
  to {
      background-color: rgba(0, 0, 0, 0.8);
  }
}

/* Checkout Seguro Fix */
.accent-primary {
    accent-color: hsl(var(--primary)) !important;
}

@keyframes fade-out {
  from {
      background-color: rgba(0, 0, 0, 0.8);
  }
  to {
      background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes slide-in {
  from {
      transform: translateX(500px);
  }
  to {
      transform: translateX(0px);
  }
}

@keyframes slide-out {
  from {
      transform: translateX(0px);
  }
  to {
      transform: translateX(500px);
  }
}

/* --- CORES PERSONALIZADAS DAS CATEGORIAS (FIX) --- */

/* RANKS - Vermelho */
/* --- CORES DAS CATEGORIAS (BASEADO NA URL) --- */

/* RANKS - Vermelho Fresh */
/* Definição de cores baseada no final da URL (Slug) */
a[href$="/category/ranks"] { --cat-bg: #e11d48; --cat-accent: #fb7185; }
a[href$="/tags-exclusivas"] { --cat-bg: #d97706; --cat-accent: #fbbf24; }
a[href$="/semi-anarquia"] { --cat-bg: #7c3aed; --cat-accent: #a78bfa; }
a[href$="/planeta-terra"] { --cat-bg: #0284c7; --cat-accent: #38bdf8; }
a[href$="/unban"] { --cat-bg: #374151; --cat-accent: #6b7280; }

/* Cor de reserva para qualquer outra categoria */
#categories a.relative {
    --cat-bg: #2563eb; 
    --cat-accent: #3b82f6;
}

/* APLICAR O ESTILO FINAL NOS CARDS */
#categories a.relative {
    background: linear-gradient(135deg, var(--cat-bg, #2563eb), var(--cat-accent, #3b82f6)) !important;
    box-shadow: 0 8px 0px 0px rgba(0, 0, 0, 0.2) !important;
    border: none !important;
    transition: all 0.3s ease;
}

#categories a.relative:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 0px 0px rgba(0, 0, 0, 0.15), 0 0 50px var(--cat-bg, rgba(37,99,235,0.5)) !important;
    filter: brightness(1.06);
}

/* Aplicando as variáveis no background */
#categories a.relative {
    background: linear-gradient(135deg, var(--cat-bg, #2563eb), var(--cat-accent, #3b82f6)) !important;
    box-shadow: 0 8px 0px 0px rgba(0, 0, 0, 0.2); /* Sombra 3D */
}



#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

body.cart-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

#cart-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
  animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
  animation: slide-out 0.4s forwards;
}

.dialog[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.2s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.2s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      scale: 50%;
  }
  to {
      opacity: 1;
      scale: 100%;
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      scale: 100%;
  }
  to {
      opacity: 0;
      scale: 50%;
  }
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: var(--delay, 0s);
}



.reveal-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.centralcart-content iframe {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.grid-background {
  background-image: linear-gradient(to right,hsla(0,0%,100%,.03) 1px,transparent 1px),linear-gradient(to bottom,hsla(0,0%,100%,.03) 1px,transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 85% at 40% 30%, #000 0%, #fff0 110%)
}

.custom-bg-mask {
	mask-image: linear-gradient(hsl(var(--background)), rgba(0, 0, 0, 0.3), rgb(0, 0, 0, 0));
}

@keyframes loading {
  0% {
      left: -50%;
  }

  to {
      left: 100%;
  }
}

.detail-dash {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 50%, hsl(var(--foreground) / 0) 0%);
  background-position: center bottom;
  background-size: 16px;
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 0.25rem;
}

.animate-float {
  animation: floatRandom 15s ease-in-out infinite;
}

@keyframes floatRandom {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(-6px, -10px) rotate(-1deg);
  }
  40% {
    transform: translate(4px, -5px) rotate(1deg);
  }
  60% {
    transform: translate(-4px, -12px) rotate(-1.5deg);
  }
  80% {
    transform: translate(3px, -7px) rotate(1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



.gradient-text {
  background: linear-gradient(
    45deg,
    hsl(var(--primary)),
    hsl(var(--primary) / 0.8),
    hsl(var(--primary) / 0.6),
    hsl(var(--primary) / 0.9),
    hsl(var(--primary)),
    hsl(var(--primary) / 0.7),
    hsl(var(--primary) / 0.5),
    hsl(var(--primary) / 0.8)
  );
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease-in-out infinite;
}


.glass {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}

/* --- ESTILO FRESH SMP MELHORADO --- */

/* Forçando os Gradientes */
.card-rank { --cat-bg: #e11d48 !important; --cat-accent: #fb7185 !important; }
.card-crates { --cat-bg: #c026d3 !important; --cat-accent: #e879f9 !important; }
.card-subs { --cat-bg: #d97706 !important; --cat-accent: #fbbf24 !important; }
.card-gems { --cat-bg: #0284c7 !important; --cat-accent: #38bdf8 !important; }

.fresh-card {
    /* Aplica o gradiente usando as variáveis acima */
    background: linear-gradient(135deg, var(--cat-bg), var(--cat-accent)) !important;
    box-shadow: 0 12px 0px 0px rgba(0, 0, 0, 0.15); /* Sombra 3D na base */
    border: none;
    overflow: visible !important;
}


/* Estilo do Texto */
.fresh-card h3 {
    text-shadow: 2px 4px 0px rgba(0,0,0,0.1);
}

/* Sombra da Imagem e Posição */
.category-img {
    filter: drop-shadow(0 25px 20px rgba(0,0,0,0.4)); /* Sombra realista da imagem */
    transform: perspective(1000px) rotateY(-5deg); /* Leve inclinação 3D */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Efeito ao passar o mouse */
.fresh-card:hover .category-img {
    transform: perspective(1000px) scale(1.15) translateY(-10px) rotateY(-10deg) rotate(-3deg);
    filter: drop-shadow(0 35px 25px rgba(0,0,0,0.5));
}

.fresh-card img {
    filter: drop-shadow(0 20px 15px rgba(0,0,0,0.4));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fresh-card:hover img {
    transform: scale(1.15) translateY(-10px) rotate(-3deg);
}

.glass::after {
  content: "";
  transition: all 850ms cubic-bezier(.19,1,.22,1);
  background-color: white;
  opacity: .2;
  width: 50px;
  height: 200px;
  position: absolute;
  left: -85px;
  top: -80px;
  z-index: 1;
  transform: rotate(30deg);
  filter: blur(2px);
}

.glass:hover::after {
  left: 130%;
}

.glass-secondary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}

.glass-secondary::after {
  content: "";
  transition: all 850ms cubic-bezier(.19,1,.22,1);
  background: linear-gradient(to right, transparent, hsl(var(--secondary) / 0.15), transparent);
  width: 100%;
  height: 200%;
  position: absolute;
  left: -150%;
  top: -50%;
  z-index: 1;
  transform: rotate(30deg);
  filter: blur(10px);
}

.glass-secondary:hover::after {
  left: 150%;
}

.faq-item .faq-content {
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:not([open]) .faq-content {
  height: 0;
}

.faq-item summary {
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: '';
}

/* Notificação de Vendas Estilo FreshSMP */
#sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #1b1f28; /* Cor que usamos no menu */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 9999;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 300px;
}

#sales-notification.show {
    transform: translateX(0);
}

.sn-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.sn-content {
    flex: 1;
}

/* Container das Luzes - FORÇADO PARA A FRENTE */
.background-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Mudamos para um número alto para ficar na frente de fundos rebeldes */
    z-index: 1; 
    overflow: hidden;
    /* Pointer-events none é CRÍTICO para você conseguir clicar nos botões do site */
    pointer-events: none; 
    mix-blend-mode: screen; /* Faz as luzes brilharem sobre o conteúdo */
}

/* Estilo Base das Orbes */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px); /* Aumentei o blur para ficar mais natural */
    opacity: 0.15; /* Diminuí a opacidade porque agora está na frente */
    pointer-events: none;
    will-change: transform;
}

/* Orbe 1 - Azul Principal */
.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #2563eb 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation: floating 25s infinite alternate ease-in-out;
}

/* Orbe 2 - Azul Royal */
.orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation: floating 30s infinite alternate-reverse ease-in-out;
}

/* Orbe 3 - Azul Ciano */
.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
    top: 30%;
    left: 20%;
    animation: floating 20s infinite alternate ease-in-out;
}

@keyframes floating {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, 15%) scale(1.1); }
    100% { transform: translate(-5%, -10%) scale(0.9); }
}

/* Garante que o fundo do site não cubra as luzes */
body {
    background-color: transparent !important;
}

html {
    background-color: #0a0b14; /* A cor escura real fica aqui */
}

/* Container das Luzes */
.background-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; 
    overflow: hidden;
    background-color: #0a0b14; 
    pointer-events: none;
}

/* Animação de Movimento Fluido */
@keyframes floating {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(5%, 10%) scale(1.1);
    }
    100% {
        transform: translate(-5%, -5%) scale(0.9);
    }
}

.sn-title {
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.sn-desc {
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    font-weight: 600;
}

.sn-time {
    font-size: 9px;
    color: #e11d48; /* Cor vermelha do MUNDOMC */
    font-weight: 800;
}

/* ==========================================
   MOBILE MENU — BOTTOM SHEET
   ========================================== */

body.mobile-menu-open {
    overflow: hidden;
}

@keyframes slide-up-sheet {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

@keyframes slide-down-sheet {
    from { transform: translateY(0); }
    to   { transform: translateY(100%); }
}

#mobile-menu-overlay[data-state="open"] {
    animation: fade-in 0.3s forwards;
    pointer-events: auto;
}

#mobile-menu-overlay[data-state="closed"] {
    animation: fade-out 0.3s forwards;
    pointer-events: none;
}

#mobile-menu-overlay[data-state="open"] #mobile-menu-sheet {
    animation: slide-up-sheet 0.35s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

#mobile-menu-overlay[data-state="closed"] #mobile-menu-sheet {
    animation: slide-down-sheet 0.3s ease-in forwards;
}

/* ==========================================
   CTA GLOW — OVERRIDE (filter, avoids box-shadow conflict)
   ========================================== */

@keyframes cta-glow-v2 {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.05) drop-shadow(0 0 14px rgba(37, 99, 235, 0.5)); }
}

.cta-pulse {
  animation: cta-glow-v2 2.8s ease-in-out infinite;
}

/* ==========================================
   HERO GRADIENT ANIMATED — OVERRIDE (final)
   ========================================== */

@keyframes hero-hue {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.hero-title-gradient {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #67e8f9 25%,
    #38bdf8 50%,
    #67e8f9 75%,
    #ffffff 100%
  ) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: hero-hue 6s linear infinite !important;
  display: inline-block !important;
}

/* ==========================================
   PARTICLES — OVERRIDE (final)
   ========================================== */

@keyframes particle-float-v2 {
  0%   { transform: translateY(0) scale(1); opacity: var(--op-min, 0.5); }
  50%  { transform: translateY(-22px) scale(1.2); opacity: var(--op-max, 0.9); }
  100% { transform: translateY(0) scale(1); opacity: var(--op-min, 0.5); }
}

.particle {
  box-shadow: 0 0 10px 3px hsl(var(--primary) / 0.55) !important;
  filter: blur(0.3px) !important;
  opacity: 0.5 !important;
  animation: particle-float-v2 var(--duration, 4s) ease-in-out infinite !important;
  animation-delay: var(--delay, 0s) !important;
}
