* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  cursor: url('../images/cursor.png'), auto;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.logo {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.discord-dinamico {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
}

.discord-dinamico svg {
  width: 32px;
  height: 32px;
  animation: pulseDiscord 1.6s infinite ease-in-out;
  transform-origin: center;
}

@keyframes pulseDiscord {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(88, 101, 242, 0.0));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.6));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(88, 101, 242, 0.0));
  }
}


/* ========================= */
/* MOBILE FIX */
/* ========================= */

@media (max-width: 768px) {



  .hero-content2 {
    max-width: 100%;
  }

  .hero-content2 h1 {
    font-size: 18px;
  }
  .hero-content2 p {
    font-size: 16px;
  }

  .hero-button2{
    display: none;
  }

  .hero-trailer2 {
    flex-direction: column;
    gap: 30px;
    padding: 40px 10px;
    text-align: center;
  }


  .hero-video2 {
    width: 100%;
    max-width: 100%;
  }

  .video-main2 {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 15px;
  }

  .video-main2 iframe {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* thumbs menores no mobile */
  .thumb2 {
    min-width: 180px;
  }

  /* setas mais confortáveis no toque */
  .thumb-nav2 {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}


/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero-trailer2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;

  padding: 80px 40px;
  color: white;

  background: radial-gradient(circle at center, #11111111 0%, #05050544 70%);
}

/* ========================= */
/* TEXT */
/* ========================= */

.hero-content2 {
  max-width: 400px;
}

.hero-content2 h1 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #bdbdbd, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content2 p {
  font-size: 18px;
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* ========================= */
/* BUTTON */
/* ========================= */

.hero-button2 {
  padding: 16px 36px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);

  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;

  cursor: pointer;
  transition: 0.3s ease;

  box-shadow: 
    0 0 15px rgba(255, 255, 255, 0.4),
    inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.hero-button2:hover {
  transform: scale(1.05);
  background: rgba(0, 255, 255, 0.25);

  box-shadow: 
    0 0 25px rgba(0, 255, 255, 0.8),
    inset 0 0 15px rgba(0, 255, 255, 0.4);
}

/* ========================= */
/* VIDEO SIDE */
/* ========================= */

.hero-video2 {
  flex: 1;
  max-width: 1200px;
}

/* mantém estilos anteriores */
.video-main2 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 0 20px rgba(0,255,255,0.25),
    0 0 40px rgba(0,255,255,0.15);

  animation: glowPulse 3s ease-in-out infinite;
}

.video-main2 iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.video-container2 {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.15),
    0 0 40px rgba(0, 255, 255, 0.15);

  transition: 0.3s ease;
}

/* ========================= */
/* NEON RGB FRAME */
/* ========================= */

.video-container2::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  display: block;
  padding-top: 56.25%; /* 16:9 fallback */
  background: linear-gradient(
    45deg,
    #ff0000,
    #00ff00,
    #00ffff,
    #ff00ff,
    #ff0000
  );
  background-size: 400%;
  z-index: -1;
  animation: rgbBorder 8s linear infinite;
  filter: blur(8px);
  opacity: 0.7;
}

@keyframes rgbBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ========================= */
/* GLOW PULSANDO */
/* ========================= */

.video-container2 {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    box-shadow: 
      0 0 15px rgba(0, 255, 255, 0.2),
      0 0 30px rgba(0, 255, 255, 0.15);
  }
  50% {
    box-shadow: 
      0 0 25px rgba(0, 255, 255, 0.45),
      0 0 50px rgba(0, 255, 255, 0.25);
  }
  100% {
    box-shadow: 
      0 0 15px rgba(0, 255, 255, 0.2),
      0 0 30px rgba(0, 255, 255, 0.15);
  }
}

/* ========================= */
/* SWIPE EFFECT */
/* ========================= */

.video-main2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(0, 255, 255, 0.25),
    transparent 80%
  );
  transform: translateX(-100%);
  opacity: 0;
}

.video-main2.swipe::after {
  animation: swipeFx 0.6s ease;
  opacity: 1;
}

@keyframes swipeFx {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ========================= */
/* LOADER FAKE NETFLIX */
/* ========================= */

.video-loader2 {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;

  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.video-loader2.active {
  opacity: 1;
}

/* Barra loader */
.loader-bar2 {
  width: 180px;
  height: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  position: relative;
}

.loader-bar2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    #ffffff,
    transparent
  );
  animation: loadingBar 1.2s linear infinite;
}

@keyframes loadingBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* GALERIA */
.video-gallery2 {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
}

/* PLAYER PRINCIPAL */
.video-main2 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;

  overflow: hidden;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 0 20px rgba(0,255,255,0.25),
    0 0 40px rgba(0,255,255,0.15);

  animation: glowPulse 3s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
/* Fade OUT */
.video-main2.fade-out {
  opacity: 0;
  transform: scale(0.98);
}

/* Fade IN */
.video-main2.fade-in {
  opacity: 1;
  transform: scale(1);
}
.video-main2 iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================= */
/* THUMBS WRAPPER */
/* ========================= */

.video-thumbs-wrapper2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ========================= */
/* THUMBS SLIDER */
/* ========================= */

.video-thumbs2 {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;

  scroll-snap-type: x mandatory;
}

.video-thumbs2::-webkit-scrollbar {
  display: none;
}

/* ========================= */
/* THUMB CLEAN */
/* ========================= */

.thumb2 {
  position: relative;
  min-width: 240px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;

  opacity: 0.5;
  transform: scale(0.95);
  transition: all 0.35s ease;

  scroll-snap-align: center;

  background: #111;
}

/* imagem */
.thumb2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

/* hover clean */
.thumb2:hover {
  opacity: 0.85;
  transform: scale(0.98);
}

/* thumb ativa (foco premium) */
.thumb2.active {
  opacity: 1;
  transform: scale(1);
}

/* leve destaque elegante */
.thumb2.active img {
  transform: scale(1.04);
}

/* ========================= */
/* PLAY ICON CLEAN */
/* ========================= */

.thumb-play2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  color: white;

  background: rgba(0, 0, 0, 0.35);
  opacity: 0.8;

  transition: 0.3s ease;
}

.thumb2:hover .thumb-play2 {
  background: rgba(0, 0, 0, 0.2);
}

/* ========================= */
/* NAV BUTTONS CLEAN */
/* ========================= */

.thumb-nav2 {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;
  min-width: 52px; /* impede deformar */

  border-radius: 50%;
  cursor: pointer;

  font-size: 22px;
  line-height: 1;

  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);

  transition: all 0.25s ease;
}

/* Hover elegante */
.thumb-nav2:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: scale(1.08);
}



/* Thumb ativa */
.thumb2.active {
  opacity: 1;
  box-shadow: 0 0 5px rgba(0,255,255,0.6);
}

/* Ícone play */
.thumb-play2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
}

/* BOTÕES */


.thumb-nav2:hover {
  background: rgba(0, 255, 255, 0.2);
  transform: scale(1.1);
}

/* ========================= */
/* IFRAME */
/* ========================= */

.video-container2 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ========================= */
/* OVERLAY */
/* ========================= */

.video-overlay2 {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;

  opacity: 1;
  transition: 0.3s ease;
}

.video-container2:hover .video-overlay2 {
  background: rgba(0, 0, 0, 0.35);
}

/* ========================= */
/* PLAY BUTTON */
/* ========================= */

.play-button2 {
  padding: 18px 40px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);

  background: rgba(0, 255, 255, 0.1);
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;

  backdrop-filter: blur(6px);

  cursor: pointer;
  transition: 0.3s ease;

  box-shadow: 
    0 0 10px rgba(255, 255, 255, 0.4),
    inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.play-button2:hover {
  transform: scale(1.08);
  background: rgba(0, 255, 255, 0.25);

  box-shadow: 
    0 0 20px rgba(0, 255, 255, 0.8),
    inset 0 0 15px rgba(0, 255, 255, 0.4);
}
.background003 {
  position: relative;
  background-image: url("../images/bg003.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 60px 20px;
  min-height: 100vh;

  display: flex;
  justify-content: center;  /* centro horizontal */
  align-items: center;      /* centro vertical (se tiver altura) */
}

.background003::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 0;
}

  /* RESPONSIVO */
@media (max-width: 768px) {
    .navbar-fixed-social {
      display: none;
    }      
}



/* Hover gamer */
.logo:hover {
  transform: scale(1.05);
  opacity: 1;

  filter: drop-shadow(0 0 12px rgb(0, 255, 221)) 
          drop-shadow(0 0 24px rgba(0, 195, 255, 0.45));
}

/* Glow pulsante opcional */
@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 6px rgba(255, 80, 80, 0.35))
            drop-shadow(0 0 14px rgba(255, 0, 0, 0.25));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(255, 120, 120, 0.65))
            drop-shadow(0 0 28px rgba(255, 0, 0, 0.45));
  }
  100% {
    filter: drop-shadow(0 0 6px rgba(255, 80, 80, 0.35))
            drop-shadow(0 0 14px rgba(255, 0, 0, 0.25));
  }
}

/* Ative se quiser animação continua */
.logo.glow-animated {
  animation: glowPulse 2.8s infinite ease-in-out;
}

.background001 {
    position: relative;
    background-image: url("../images/bg001.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 20px;
}

.background001::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75); /* controla a opacidade */
    z-index: 0;
}

/* Garante que o conte�do fique acima do overlay */
.background001 main {
    position: relative;
    z-index: 1;
}

/* BASE */
.container-preregister {
  max-width: 1000px;
  height: 1000px;
  align-items: center;
  margin: 0px auto ;
  margin-top: 50px;
  padding: 10px 5px;
  text-align: center;
}

/* HERO */
.hero h1 {
  font-size: 64px;
  font-weight: 900;
  color: #e63946;
  letter-spacing: 3px;
  text-shadow: 0 0 25px rgba(230,57,70,.7);
}

.badge-beta {
  display: inline-block;
  margin: 10px 0;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  border-radius: 20px;
  color: #000;
  background: linear-gradient(135deg, #ffd166, #ffb703);
}

.hero h2 {
  padding: 20px;
  font-size: 20px;
  color: #cfcfcf;
}

/* INFO */
.info {
  margin: 35px 0;
  font-size: 16px;
  line-height: 1.7;
}

/* REGISTER BOX */
.register-box {
  background-color: var(--nav-bg2);
  padding: 40px 30px;
  border-radius: 18px;
}

.register-box h3 {
  margin-bottom: 10px;
  font-size: 40px;
  color: #ffd166;
}

/* CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #e63946, #ff5c6a);
  box-shadow: 0 0 25px rgba(230,57,70,.7);
  transition: .25s;
}

.cta-btn img {
  width: 32px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(230,57,70,.9);
}

/* STATS */
.stats {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 18px;
}

.stat span {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #ffd166;
}

.stat small {
  font-size: 13px;
  color: #bdbdbd;
}

/* CONTAINER GERAL */
.container-preregister2 {
    max-width: auto;
    height: 1000px;
    align-items: center;
    margin: 0px auto ;
    padding: 10px 5px;
    text-align: center;

}
.background002 {
    position: relative;
    background-image: url("../images/bg002.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 20px;
}
.background002::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85); /* controla a opacidade */
    z-index: 0;
}

.register-box {
    text-align: center;
    margin-bottom: 20px;
}

.register-box h3 {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--nav-text);
    position: relative;
    display: inline-block;
}

.register-box h3::after {
    content: "";
    display: block;
    width: 60%;
    height: 3px;
    margin: 8px auto 0;
    background: linear-gradient(90deg, transparent, #ffcc00, transparent);
    border-radius: 10px;
}

/* WRAPPER DOS CARDS */
.server-info-wrapper2 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* CARD BASE */
.server-info {
    flex: 1 1 300px;
    max-width: 350px;
    background: rgba(20, 20, 30, 0.85);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER GAMER */
.server-info:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* TÍTULO DO CARD */
.server-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.server-info h3 span {
    font-weight: 300;
    opacity: 0.6;
    margin-right: 5px;
}

/* LISTA */
.server-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.server-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.server-info li:last-child {
    border-bottom: none;
}

/* SVG ICONE */
.icon-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    opacity: 0.8;
}

/* ?? TEMA FIRE */
.server-fire {
    border-color: rgba(255, 80, 50, 0.4);
}

.server-fire::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 80, 50, 0.15), transparent 60%);
}

/* ?? TEMA ICE */
.server-ice {
    border-color: rgba(80, 180, 255, 0.4);
}

.server-ice::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(80, 180, 255, 0.15), transparent 60%);
}

/* ?? TEMA DARK */
.server-dark {
    border-color: rgba(180, 80, 255, 0.35);
}

.server-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(180, 80, 255, 0.12), transparent 60%);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .server-info-wrapper {
        flex-direction: column;
        align-items: center;
    }
}


.server-fire {
  --accent: #ff4d4d;
  --glow: rgba(255,77,77,.45);
}

.server-ice {
  --accent: #4dabf7;
  --glow: rgba(77,171,247,.45);
}

.server-dark {
  --accent: #9b5de5;
  --glow: rgba(155,93,229,.45);
}

.server-info h3 {
  font-size: 18px;      /* antes 26px */
  margin-bottom: 14px;
  letter-spacing: .8px;
}

.server-info h3 span {
  font-size: 10px;
  margin-bottom: 2px;
}

.server-info:hover {
  transform: translateY(-4px); /* antes -8px */
  box-shadow: 0 0 18px var(--glow);
}

.server-info li {
  padding: 6px 0;       /* antes 10px */
  font-size: 14px;      /* antes 16px */
  gap: 6px;
}


.server-info li .icon-svg {
  color: var(--accent);
}
.icon-svg {
  width: 14px;          /* antes 18px */
  height: 14px;
  margin-right: 6px;
}
@media (max-width: 992px) {
  .server-info-wrapper {
    grid-template-columns: 1fr;
  }
}
.server-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}



/* RESPONSIVO */
@media (max-width: 768px) {
  .background001 {
    position: relative;
    background-image: url("../images/bg001R.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 20px;
}

 .background001::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75); /* controla a opacidade */
    z-index: 0;
}

/* Garante que o conte�do fique acima do overlay */
 .background001 main {
    position: relative;
    z-index: 1;
}
  .background002 {
    position: relative;
    background-image: url("../images/bg002R.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 20px;
}

 .background002::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75); /* controla a opacidade */
    z-index: 0;
}

/* Garante que o conte�do fique acima do overlay */
 .background002 main {
    position: relative;
    z-index: 1;
}
  .background003 {
    position: relative;
    background-image: url("../images/bg003R.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 250px;
    margin-top: 160px;
}

.background003::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75); /* controla a opacidade */
    z-index: 0;
}

/* Garante que o conte�do fique acima do overlay */
.background003 main {
    position: relative;
    z-index: 1;
}
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 48px;
  }
}

/* ========================= */
/* COUNTDOWN BREAKRO */
/* ========================= */

.countdown-container {
    margin: 25px 0;
    text-align: center;
}

.countdown-container h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #ffffff;
    opacity: 0.85;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.time-box {
    background: linear-gradient(145deg, rgba(20,20,25,0.9), rgba(10,10,15,0.9));
    border-radius: 14px;
    padding: 14px 18px;
    min-width: 85px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 0 12px rgba(0, 255, 200, 0.08),
        inset 0 0 8px rgba(255,255,255,0.03);
    transition: 0.3s;
}

.time-box:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 18px rgba(0, 255, 200, 0.18),
        inset 0 0 10px rgba(255,255,255,0.05);
}

.time-box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #00ffe1;
    text-shadow: 0 0 10px rgba(0, 255, 225, 0.35);
}

.time-box small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    color: #ffffff;
}
.stat-icon {
  width: 10px;
  height: 10px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  fill: #00c8ff;
  opacity: 0.9;
  transition: 0.3s;
}
/* Quando servidor abrir */

.countdown-online {
    font-size: 22px;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 12px rgba(0,255,136,0.5);
    animation: pulseOnline 1.5s infinite;
}

@keyframes pulseOnline {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}
/* ========================= */
/* PROGRESS BAR */
/* ========================= */

.launch-progress {
    width: 100%;
    max-width: 420px;
    margin: 25px auto 10px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 6px;
    opacity: 0.7;
    color: #fff;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.6);
}

#progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 20px;
    background: linear-gradient(90deg, #00ffe1, #00ff88);
    box-shadow: 0 0 12px rgba(0,255,200,0.6);
    transition: width 0.5s ease;
}

/* ========================= */
/* PARTICLES CANVAS */
/* ========================= */

#magic-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Garante que conteúdo fique acima */

.container-preregister,
nav,
footer {
    position: relative;
    z-index: 2;
}
