:root {
      --bg-main: #050509;
      --bg-card: #141418;
      --accent: #f5d300;        /* Amarelo Biohazard */
      --accent-soft: #b38f00;   /* Amarelo queimado */
      --text-main: #e6e6e6;
      --text-muted: #a0a0a0;
    }

    body {
      background: var(--bg-main) !important;
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      background-attachment: fixed;
      color: var(--text-main);
      font-family: 'Montserrat', sans-serif;
      scroll-behavior: smooth;
      padding-top: 65px; /* ajuste conforme a altura da sua navbar */
    }

    .overlay-bg { background: radial-gradient(circle at top, rgba(245,211,0,0.12), transparent 60%); }

.navbar {
  background: rgba(0, 0, 0, 0.4); /* semitransparente */
  backdrop-filter: blur(6px);     /* efeito vidro */
}

    .navbar-brand {
      font-family: 'Orbitron', sans-serif;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent) !important;
    }

    .nav-link.active {
      color: var(--accent) !important;
    }

    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      filter: grayscale(40%);
      transform: scale(1.1);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(0,0,0,0.1), rgba(0,0,0,0.9));
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 { 
      animation: hazardPulse 2.5s infinite ease-in-out;
      font-family: 'Orbitron', sans-serif; 
      font-size: clamp(3rem, 6vw, 4rem);
      text-transform: uppercase; 
      letter-spacing: 6px; 
      text-shadow: 0 0 20px rgba(245,211,0,0.65); 
      text-shadow: 0 0 10px #f5d300, 0 0 20px #f5d300, 0 0 35px #f5d300;
    }

    

    .btn-accent {
      background: var(--accent-soft);
      color: #000;
      border: none;
      box-shadow: 0 0 15px rgba(0,0,0,0.6);
    }

    .btn-accent:hover {
      background: var(--accent);
      color: #000;
    }

    .section-title {
      font-family: 'Orbitron', sans-serif;
      text-transform: uppercase;
      margin-bottom: 40px;
      text-align: center;
      font-size: 2.2rem;
      letter-spacing: 3px;
    }

    .sub-section-title {
      font-family: 'Orbitron', sans-serif;
      text-transform: uppercase;
      margin-bottom: 5px;
      text-align: left;
      font-size: 1rem;
      letter-spacing: 1px;
      text-shadow: 0 0 3px #dcf311;
    }

        .card-bio {
      background: var(--bg-card);
      border: 1px solid #222;
      border-radius: 14px;
      transition: 0.3s;
      box-shadow: 0 0 20px rgba(0,0,0,0.4);
    }

    .card-bio:hover {
      transform: translateY(-6px) scale(1.01);
      border-color: var(--accent-soft);
      box-shadow: 0 0 30px rgba(0,0,0,0.7);
    }

    .badge-role {
      background: var(--accent-soft);
      
      border-radius: 999px;
      padding: 4px 12px;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

        .ranking-table thead {
      background: rgba(0,0,0,0.6);
    }

    .ranking-table tbody tr:hover {
      background: rgba(57,255,20,0.05);
    }

        /* Admin */
    #admin-panel {
      display: none;
    }

    #admin-panel.active {
      display: block;
    }

    .form-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    #logo-biohazard {
      filter: drop-shadow(0 0 12px #f5d300);
    }

    .logo-pulse { animation: pulseGlow 2.5s infinite ease-in-out; }


/*GALERIA INICIO*/
/* Container da imagem */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 12px rgba(245,211,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Imagem base */
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

/* Efeito de zoom leve */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Glow radioativo + glitch */
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 15px rgba(245,211,0,0.5),
    0 0 30px rgba(245,211,0,0.4),
    0 0 45px rgba(245,211,0,0.3);
  animation: hazardPulse 1.8s infinite ease-in-out;
}

/* Camadas glitch */
.gallery-item::before,
.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Camada verde tóxica */
.gallery-item::before {
  background: rgba(0, 255, 0, 0.15);
  transform: translate(0, 0);
}

/* Camada amarela radioativa */
.gallery-item::after {
  background: rgba(255, 255, 0, 0.15);
  transform: translate(0, 0);
}

/* Ativa o glitch no hover */
.gallery-item:hover::before {
  opacity: 1;
  animation: glitchBefore 0.35s infinite;
}

.gallery-item:hover::after {
  opacity: 1;
  animation: glitchAfter 0.35s infinite;
}

/* Animação do glitch */
@keyframes glitchBefore {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3px, -2px); }
  40%  { transform: translate(3px, 2px); }
  60%  { transform: translate(-2px, 3px); }
  80%  { transform: translate(2px, -3px); }
  100% { transform: translate(0, 0); }
}

@keyframes glitchAfter {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(3px, 2px); }
  40%  { transform: translate(-3px, -2px); }
  60%  { transform: translate(2px, -3px); }
  80%  { transform: translate(-2px, 3px); }
  100% { transform: translate(0, 0); }
}

/* Pulso radioativo */

/*CARROSEL - INICIO*/
/* Imagem do carrossel */
.carousel-img {
  border-radius: 10px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 12px rgba(245,211,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

/* Pulso radioativo */
.carousel-item.active .carousel-img {
  animation: hazardPulse 2s infinite ease-in-out;
}

/* Glitch leve ao entrar */
.carousel-item .carousel-img {
  animation: glitchIn 0.45s ease;
}

/* Partículas tóxicas */
.toxic-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

.toxic-particles::before,
.toxic-particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 0, 0.8);
  border-radius: 50%;
  filter: blur(2px);
  animation: floatParticles 6s infinite linear;
}

.toxic-particles::after {
  width: 4px;
  height: 4px;
  background: rgba(0, 255, 0, 0.8);
  animation-duration: 8s;
}

/* Animação das partículas */
@keyframes floatParticles {
  0% {
    transform: translate(10%, 110%) scale(1);
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(80%, -20%) scale(1.4);
    opacity: 0;
  }
}

/* Glitch */
@keyframes glitchIn {
  0% { transform: translate(0,0); }
  20% { transform: translate(-3px,2px); }
  40% { transform: translate(3px,-2px); }
  60% { transform: translate(-2px,-3px); }
  80% { transform: translate(2px,3px); }
  100% { transform: translate(0,0); }
}

/* Controles personalizados */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(80%) sepia(90%) saturate(500%) hue-rotate(10deg);
}
/* Container das partículas e fumaça */
.toxic-particles {
  position: absolute;
  top: -20%; /* Fumaça vazando para fora */
  left: -10%;
  width: 120%;
  height: 140%;
  pointer-events: none;
  overflow: visible;
  z-index: 3;
}

/* Fumaça radioativa densa */
.toxic-particles::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 100%;
  height: 130%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 0, 0.25) 0%,
    rgba(255, 255, 0, 0.18) 30%,
    rgba(255, 255, 0, 0.12) 60%,
    rgba(255, 255, 0, 0.05) 80%,
    rgba(255, 255, 0, 0) 100%
  );
  filter: blur(35px);
  animation: toxicSmoke 7s infinite ease-in-out;
  opacity: 0.9;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

/* Partículas tóxicas */
.toxic-particles::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 0, 0.9);
  border-radius: 50%;
  filter: blur(3px);
  animation: floatParticles 8s infinite linear;
  opacity: 0.9;
}

/* Fumaça reagindo ao hover */
.carousel-item:hover .toxic-particles::before {
  opacity: 1;
  filter: blur(45px);
  animation-duration: 5s;
}

/* Partículas aceleram no hover */
.carousel-item:hover .toxic-particles::after {
  animation-duration: 5s;
  transform: scale(1.3);
}

/* Animação da fumaça subindo */
@keyframes toxicSmoke {
  0% {
    transform: translateY(25%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-5%) scale(1.15);
    opacity: 0.9;
  }
  100% {
    transform: translateY(-25%) scale(1.25);
    opacity: 0.5;
  }
}

/* Animação das partículas */
@keyframes floatParticles {
  0% {
    transform: translate(10%, 120%) scale(1);
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(80%, -30%) scale(1.6);
    opacity: 0;
  }
}

/* Pulso radioativo da imagem */
.carousel-item.active .carousel-img {
  animation: hazardPulse 2s infinite ease-in-out;
}

/* Glitch leve ao entrar */
.carousel-item .carousel-img {
  animation: glitchIn 0.45s ease;
}

@keyframes glitchIn {
  0% { transform: translate(0,0); }
  20% { transform: translate(-3px,2px); }
  40% { transform: translate(3px,-2px); }
  60% { transform: translate(-2px,-3px); }
  80% { transform: translate(2px,3px); }
  100% { transform: translate(0,0); }
}

/*CARROSEL - FIM*/

/*GALERIA FIM*/



/*BACKGROUND IMAGE INICIO*/
#hero {
  position: relative;
  background-image: url("../img/wallpaper/with-your-destiny.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  border-radius: 10px;
  overflow: hidden;
}

/*BACKGROUND IMAGE FIM*/

/*CARD MEMBROS - INICIO*/
.card-bio {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  height: 450px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 0 12px rgba(246, 255, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover */
.card-bio:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(246, 255, 0, 0.45);
}

/* Overlay escuro para garantir leitura */
.card-overlay {
  width: 100%;
  padding: 18px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.1)
  );
  color: #fff;
}

.card-overlay h4,
.card-overlay p,
.card-overlay strong {
  position: relative;
  display: inline-block;
  padding: 2px 4px;

  color: #fff;
  font-weight: 600;

  /* contorno nítido */
  -webkit-text-stroke: 0.6px rgba(0,0,0,0.85);

  /* sombra curta e precisa */
  text-shadow:
    0 1px 2px rgba(0,0,0,0.9),
    0 0 3px rgba(0,0,0,0.7);
}

/* micro-background aderido ao texto */
.card-overlay h4::before,
.card-overlay p::before,
.card-overlay strong::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  border-radius: 4px;
  z-index: -1;
  backdrop-filter: blur(2px);
}


/* Badge com amarelo radioativo */
.badge-role {
  background: rgba(246, 255, 0, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  color: #f6ff00;
  font-weight: bold;
  text-shadow: 0 0 6px rgba(246, 255, 0, 0.5);
}

/* Botão WhatsApp */
.btn-whatsapp {
  display: inline-block;
  background: #f6ff00;
  color: #000;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s ease;
  text-shadow: none;
}

.btn-whatsapp:hover {
  background: #d4d900;
}

@media (max-width: 600px) {
  .card-bio {
    background-position: top;
  }

  .card-overlay {
    background: rgba(0, 0, 0, 0.85);
  }
}

/*CARD MEMBROS - FIM*/


/*STREAMERS INICIO*/
.stream-section {
  margin: 60px auto;
  text-align: center;
}

.stream-section h2 {
  color: #f6ff00;
  text-shadow: 0 0 8px rgba(246,255,0,0.6);
  margin-bottom: 25px;
}

.stream-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stream-card {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(246,255,0,0.3);
  border-radius: 10px;
  padding: 20px 30px;
  width: 260px;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease;
}

.stream-card:hover {
  transform: scale(1.05);
}

.stream-card img {
  width: 150px;
  margin-bottom: 10px;
}

.stream-card h3 {
  color: #fff;
  margin-bottom: 15px;
}

.stream-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stream-card li {
  margin: 8px 0;
}

.stream-card a {
  color: #f6ff00;
  text-decoration: none;
  font-weight: 600;
}

.stream-card a:hover {
  text-decoration: underline;
}

/* Cores específicas */
.stream-card.twitch {
  border-color: #9146ff;
}

.stream-card.youtube {
  border-color: #ff0000;
}

/*STREAMERS FIM*/



/*FOOTER - INICIO*/
/* Link padrão do footer */
footer a.instagram-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  text-shadow: 0 0 6px rgba(245, 211, 0, 0.4);
}

/* Linha radioativa embaixo */
footer a.instagram-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(245, 211, 0, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

/* Hover com pulso radioativo */
footer a.instagram-link:hover {
  color: #fff;
  text-shadow:
    0 0 8px rgba(245, 211, 0, 0.8),
    0 0 14px rgba(245, 211, 0, 0.6),
    0 0 22px rgba(245, 211, 0, 0.4);
}

/* Linha aparece no hover */
footer a.instagram-link:hover::after {
  transform: scaleX(1);
}

/* Glitch leve no hover */
footer a.instagram-link:hover {
  animation: instaGlitch 0.35s steps(2, end);
}

@keyframes instaGlitch {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-1px, 1px); }
  40% { transform: translate(1px, -1px); }
  60% { transform: translate(-1px, -1px); }
  80% { transform: translate(1px, 1px); }
  100% { transform: translate(0, 0); }
}

/*FOOTER - FIM*/


        footer {
      background: #000;
      padding: 10px;
      text-align: center;
      margin-top: 10px;
      font-size: 0.9rem;
      color: var(--text-muted);
    }
