html {
    color-scheme: dark;
  }

.ocultado {
    display: none !important;
}
.destake {
  border: dotted;
  box-shadow: inset 0px -2px 0px;
  border-bottom: inset;
}

/* ===== RHEA FX — Neon gamer discreto no clique ===== */
.rhea { position: relative; overflow: hidden; -webkit-tap-highlight-color: transparent; }

:root{
  --rhea-primary: #6d28d9; /* roxo */
  --rhea-secondary:#4f46e5; /* índigo */
  --rhea-accent:#34e1ff; /* azul */
}

/* Anel de pressão */
.rhea__ring{
  position:absolute; left:0; top:0; border-radius:9999px; pointer-events:none;
  border:2px solid var(--rhea-accent);
  box-shadow:0 0 18px rgba(96,165,250,.45), inset 0 0 14px rgba(79,70,229,.35);
  opacity:.9; transform: translate(-50%,-50%) scale(0); will-change: transform, opacity;
}
.rhea__ring--anim{ animation: rhea-ring .55s cubic-bezier(.2,.8,.2,1) forwards; }

@keyframes rhea-ring {
  80% { transform: translate(-50%,-50%) scale(1); opacity:.15; }
  100%{ transform: translate(-50%,-50%) scale(1.15); opacity:0; }
}

/* Slash (“corte” de luz) */
.rhea__slash{
  position:absolute; left:-80%; top:50%; width:160%; height:2px; pointer-events:none;
  background: linear-gradient(90deg, transparent, rgb(0, 208, 255), transparent);
  box-shadow:0 0 18px rgba(0, 255, 247, 0.168), inset 0 0 14px rgba(0, 247, 255, 0.212);
  transform: translateY(-50%) rotate(18deg);
  filter: drop-shadow(0 0 12px rgba(96,165,250,.45));
  opacity:0; will-change: transform, opacity;
}
.rhea__slash--anim{ animation: rhea-slash .35s ease-out forwards; }
@keyframes rhea-slash {
  15% { opacity:.85; }
  100%{ transform: translate(100%,-50%) rotate(18deg); opacity:0; }
}

/* Partículas */
.rhea__p{
  position:absolute; width:6px; height:6px; border-radius:9999px; pointer-events:none;
  background: radial-gradient(circle at 30% 30%, var(--rhea-accent), rgba(96,165,250,0) 60%);
  transform: translate(-50%,-50%) scale(.7);
  filter: drop-shadow(0 0 8px var(--rhea-accent));
  opacity:.95; will-change: transform, opacity;
  transition: transform .55s cubic-bezier(.19,1,.22,1), opacity .55s ease;
}

/* Respeita usuários com redução de movimento */
@media (prefers-reduced-motion: reduce){
  .rhea__ring, .rhea__slash, .rhea__p { animation:none; transition:none; }
}

@keyframes spin-reverse-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
.spin-slow {
  animation: spin-reverse-slow 11s linear infinite;
}
@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
/* PAGE- GAMEINFO */
@media (max-width: 900px) {
    #main-b {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top;
        background-attachment: local;
        opacity: 0;
        animation: fadein 2s ease-in-out forwards;
    }
    @keyframes fadein {
      to {
        opacity: 1;
      }
    }
}

.list :where(.list-row):has(.list-col-grow:nth-child(3)) {
    --list-grid-cols: minmax(0, auto) minmax(0, auto) 1fr;
}

.list :where(.list-row) {
    --list-grid-cols: minmax(0, auto) 1fr;
    position: relative;
    display: grid
;
    grid-auto-flow: column;
    gap: calc(0.25rem * 4);
    border-radius: var(--radius-box);
    padding: calc(0.25rem * 4);
    word-break: break-word;
    grid-template-columns: var(--list-grid-cols);
}

.svg-roleta-anim {
  animation: girar-360 10s linear forwards;
}

@keyframes girar-360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.beatiful_hck {
    color: #60a5fa;
    background: linear-gradient(327deg, #60a5fa, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}
.beatiful_hck:hover {
    animation: flutuarGlow 2s infinite ease-in-out;
    text-shadow: 0 0 4px #60a5fa88, 0 0 6px #9333ea66;
    transform: scale(1.03);
}
.banner-link {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.banner-link.showing {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
  pointer-events: auto;
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(120%);
  }
  .toast.show {
    opacity: 1;
    transform: translateX(0);
  }
  .toast.hide {
    opacity: 0;
    transform: translateX(120%);
  }
  
/* 💫 Animação flutuante + leve variação no glow */
@keyframes flutuarGlow {
    0% {
        transform: translateY(0) scale(1.03);
        background-position: 0% center;
        text-shadow: 0 0 4px #60a5fa66, 0 0 6px #9333ea44;
    }
    50% {
        transform: translateY(-3px) scale(1.04);
        background-position: 100% center;
        text-shadow: 0 0 6px #60a5fa88, 0 0 8px #9333ea66;
    }
    100% {
        transform: translateY(0) scale(1.03);
        background-position: 0% center;
        text-shadow: 0 0 4px #60a5fa66, 0 0 6px #9333ea44;
    }
}


/* efieto hallowenn */
  #mobile-lottie {
    display: none;
  }

  /* Mostra apenas em telas até 600px */
  @media (max-width: 600px) {
    #mobile-lottie {
      display: block;
      width: 100%;
      height: 225px;
      position: fixed;
      z-index: 5;
      left: 0;
      right: 0;
      text-align: center;
    }
  }

@keyframes slideUpOff {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-50px);
  }
}

.off-up {
  animation: slideUpOff 0.25s ease forwards;
}

  /* Escurece o fundo quando o modal estiver aberto */
  dialog::backdrop {
    background: rgba(0, 0, 0, 0.6); /* 60% de opacidade */
    backdrop-filter: blur(2px);     /* opcional: dá um leve blur no fundo */
  }

  /* Animação suave do modal */
  dialog[open] {
    animation: fadeIn 0.2s ease-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.97);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }