* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Roboto', sans-serif;
  height: 100%;
  color: #fff;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

video.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 20px 40px;
}

header h1 {
  font-size: 4em;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
}

header h1.glow {
  animation: glow 3s ease-in-out infinite;
}

.infinity {
  color: #ff4d4d; /* Ajustado para maior contraste */
}

.valley {
  color: #00ff99; /* Ajustado para maior contraste */
}

header p {
  font-size: 1.5em;
  margin-bottom: 30px;
}

.btn-discord {
  background-color: #5865F2;
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 1.2em;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.btn-discord:hover {
  transform: scale(1.1);
  background-color: #404eed;
}

.section {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.0);
}

.section h2 {
  font-size: 2.5em;
  color: #00e6ff; /* Ajustado para maior contraste */
  margin-bottom: 20px;
}

.section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

.image-gallery {
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 60px;
}

.carousel-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  height: 50vh;
  transition: transform 0.5s ease-in-out;
  width: max-content;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.carousel-track img {
  width: 33.33vw; /* 3 imagens na tela, largura igual para cada */
  flex-shrink: 0;
  opacity: 0.4;
  filter: blur(4px);
  transform: scale(0.75);
  transition: all 0.4s ease;
  border-radius: 25%;
}

.carousel-track img.focus {
  opacity: 1;
  filter: blur(0);
  transform: scale(1.25);
  z-index: 2;
  border-radius: 25%;
  box-shadow: 0 0 20px #00e6ff;
}



footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 30px 20px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 0.9em;
}

@keyframes glow {
  0% { text-shadow: 0 0 5px #ffffff; opacity: 1; }
  50% { text-shadow: 0 0 15px #ffffff; opacity: 0.9; }
  100% { text-shadow: 0 0 5px #ffffff; opacity: 1; }
}