* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f0f0f;
  color: #fff;
}

/* BANNER */
.banner {
  background: url("capa2.jpeg") center/cover no-repeat;
  height: 320px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner h1,
.banner p {
  background: rgba(0,0,0,0.4);
  padding: 10px 20px;
  border-radius: 8px;
}

/* MENU */
nav {
  background: #181818;
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  color: #e100ff;
}

/* COUNTDOWN */
.update-bar {
  background: #181818;
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #333;
}

.update-bar span {
  color: #f046cb;
}

#contador-nav {
  font-weight: 600;
}

/* SEÇÕES */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

/* CARDS */
.videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.video-card {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.video-card:hover {
  transform: scale(1.05);
}

.video-card img {
  width: 100%;
}

.video-card h3 {
  padding: 15px;
}

.video-card a {
  color: white;
  text-decoration: none;
}

/* HADES */
.hades-box {
  text-align: center;
  max-width: 500px;
  margin: 40px auto;
}

.hades-box img {
  width: 100%;
  border-radius: 12px;
}

.btn-ouvir {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #f046cb;
  border-radius: 8px;
  color: white;
}

.btn-ouvir:hover {
  background: #f135b3;
}

/* PLAY */
#botaoPlay {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 65px;
  cursor: pointer;
}

/* COMUNIDADE */
.wallpaper {
  height: 300px;
  overflow: hidden;
}

.wallpaper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desc {
  padding: 0 15px 15px;
}

/* MANUTENÇÃO */
#manutencao {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: #0f0f0f;
  color: white;

  display: none;
  justify-content: center;
  align-items: center;

  font-size: 32px;
  z-index: 9999;
}