* {
  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;
  overflow-x: hidden;
}

.logo {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 20px;
  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));
  }
}

/* Badge acima do título */
.category-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid #00ffff;
    color: #00ffff;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* Container de botões */
.category-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.cat-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.cat-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cat-btn.active {
    background: #00ffff;
    color: #000;
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* ========================= */
/* ESTRUTURA HERO & PLAYER */
/* ========================= */
.hero-trailer2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 80px 40px;
    color: white;
    background: radial-gradient(circle at center, rgba(17,17,17,0.1) 0%, rgba(5,5,5,0.3) 70%);
}

.hero-content2 { max-width: 450px; }

.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;
}

.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 30px rgba(0,255,255,0.2);
    animation: glowPulse 3s ease-in-out infinite;
}

.video-main2 iframe { width: 100%; height: 100%; border: none; }

/* ========================= */
/* GALERIA DE VÍDEOS (CARDS) */
/* ========================= */
.video-thumbs2 {
    display: flex;
    gap: 18px;
    overflow-x: auto; /* Permite o scroll */
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* Esconde scrollbar no IE */
    scrollbar-width: none;     /* Esconde scrollbar no Firefox */
}

.video-thumbs2::-webkit-scrollbar {
    display: none; /* Esconde scrollbar no Chrome/Safari */
}

.video-card2 {
    display: flex;
    flex-direction: column;
    min-width: 240px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInSlide 0.5s ease forwards;
}

.thumb2 {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Efeito de escala no container ao scrollar */
#thumbContainer {
    display: flex;
    gap: 18px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 20px 10px;
}

/* Feedback visual no botão Next ao clicar */
.thumb-nav2:active {
    transform: scale(0.9);
    background: #00ffff;
    box-shadow: 0 0 20px #00ffff;
    transition: 0.1s;
}

/* Estilo para quando não houver mais vídeos para rolar (Opcional) */
.thumb-nav2.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.thumb2 img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: 0.3s; }

.thumb-play2 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: 0.3s;
}

/* LEGENDA EM VIDRO */
.video-title-under {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    backdrop-filter: blur(4px);
    padding: 20px 12px 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

/* ESTADOS HOVER E ATIVO */
.video-card2:hover { transform: translateY(-8px); }
.video-card2:hover img, .video-card2.active img { opacity: 1; }
.video-card2:hover .video-title-under, .video-card2.active .video-title-under,
.video-card2:hover .thumb-play2 { opacity: 1; transform: translateY(0); }

.video-card2.active .thumb2 {
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* NAVEGAÇÃO SETAS */
.thumb-nav2 {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.thumb-nav2:hover { background: #00ffff; color: #000; }

/* ========================= */
/* FIX MOBILE OTIMIZADO */
/* ========================= */
@media (max-width: 768px) {
    .hero-trailer2 { flex-direction: column; padding: 40px 15px; text-align: center; }
    .hero-content2 h1 { font-size: 28px; }
    .hero-content2 p { font-size: 15px; }
    .video-card2 { min-width: 190px; }
    .video-title-under { opacity: 1; transform: translateY(0); font-size: 11px; } /* Sempre visível no mobile */
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.2); }
    50% { box-shadow: 0 0 30px 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;
}

.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 {
  position: relative;
  max-width: 1000px;
  height: 1000px;
  align-items: center;
  margin: 0px auto ;
  margin-top: 10px;
  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;
}
