* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================
   ===== AGE VERIFICATION =====
   ========================= */
#age-protector {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  padding: 20px;
}

#age-protector .card {
  width: 100%;
  max-width: 420px;
  background: #0f0f0f;
  border: 2px solid #ff0033;
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(255, 0, 51, 0.55);
  padding: 22px 18px;
  text-align: center;
  color: #fff;
}

#age-protector h2 {
  margin: 0 0 10px 0;
  font-size: 1.6rem;
  color: #ff0033;
  text-shadow: 0 0 6px #ff0033;
  text-transform: uppercase;
}

#age-protector p {
  margin: 0 0 18px 0;
  color: #e8e8e8;
  line-height: 1.35;
}

#age-protector button {
  display: inline-block;
  background: #200000;
  color: #ff0033;
  border: 2px solid #ff0033;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

#age-protector button:hover {
  background: #ff0033;
  color: #000;
}

/* LOGO */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0 5px 0;
}

.logo img {
  width: 450px;
  max-width: 85%;
  height: auto;
}

/* BANNER */
.banner {
  width: calc(100% - 60px);
  max-width: 1280px;
  margin: 5px 0 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner a {
  display: flex;
  justify-content: center;
}

.banner img {
  width: 100%;
  height: auto;
  max-width: 728px;
  border: 0;
  border-radius: 8px;
  display: block;
}

/* =========================
   ===== TÍTULO DO VÍDEO =====
   ========================= */
.title {
  width: calc(100% - 60px);
  max-width: 1280px;
  margin: 10px auto; /* margem vertical zerada, horizontal centralizada */
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff0033;
  text-shadow: 0 0 5px #ff0033; /* brilho leve no texto */
  line-height: 1.4;

  border: 2px solid #ff0033; /* borda vermelha */
  border-radius: 12px; /* cantos arredondados */
  padding: 10px 20px; /* espaço interno */
  box-shadow: 0 0 10px #ff0033, 0 0 20px #ff0033, 0 0 30px #ff0033; /* efeito neon */
}

/* VIDEO */
.video-container {
  width: calc(100% - 60px);
  max-width: 1280px;
  margin: 15px auto;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

/* BOTÕES */
.vote-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 5px auto 100px;
  gap: 100px;
  max-width: 500px;
}

.vote-btn img {
  width: 64px;
  height: auto;
  cursor: pointer;
  transition: transform 0.15s ease;
  border-radius: 10px;
}

.vote-btn img:hover {
  transform: scale(1.08);
}

/* === MOBILE === */
@media (max-width: 768px) {
  .logo {
    margin-top: 5px;
  }

  .logo img {
    width: 200px;
  }

  .video-container {
    width: calc(100% - 20px);
  }

  .banner {
    width: calc(100% - 20px);
    margin-top: 5px;
  }

  .banner img {
    max-width: 100%;
  }

  .vote-form {
    gap: 60px;
  }

  .vote-btn img {
    width: 60px;
  }
  .title {
    width: calc(100% - 20px);
    font-size: 1.2rem;
  }
}

/* === TELAS PEQUENAS (≥576px) === */
@media (min-width: 576px) {
  .logo img {
    max-height: 120px;
  }

  .banner,
  .video-container {
    width: calc(100% - 30px);
    max-width: 540px;
  }

  .banner img {
    max-height: 180px;
  }
  .title {
    width: calc(100% - 30px);
    font-size: 1.3rem;
    max-width: 540px;
  }
}

/* === TABLETS (≥768px) === */
@media (min-width: 768px) {
  .logo img {
    max-height: 150px;
  }

  .banner,
  .video-container {
    width: calc(100% - 40px);
    max-width: 720px;
  }

  .banner img {
    max-height: 200px;
  }

  .vote-form {
    gap: 120px;
    max-width: 720px;
    flex-wrap: nowrap;
  }

  .vote-btn img {
    width: 60px;
  }
  .title {
    width: calc(100% - 40px);
    font-size: 1.4rem;
    max-width: 720px;
  }
}

/* === LAPTOPS (≥992px) === */
@media (min-width: 992px) {
  .logo img {
    max-height: 180px;
  }

  .banner,
  .video-container {
    width: calc(100% - 60px);
    max-width: 960px;
  }

  .banner img {
    max-height: 250px;
  }

  .vote-form {
    gap: 160px;
    max-width: 960px;
    flex-wrap: nowrap;
  }

  .vote-btn img {
    width: 72px;
  }
  .title {
    width: calc(100% - 60px);
    font-size: 1.5rem;
    max-width: 960px;
  }
}

/* === DESKTOPS GRANDES (≥1200px) === */
@media (min-width: 1200px) {
  .logo img {
    max-height: 200px;
  }

  .banner,
  .video-container {
    width: calc(100% - 80px);
    max-width: 1140px;
  }

  .vote-form {
    gap: 200px;
    max-width: 1140px;
    flex-wrap: nowrap;
  }

  .banner img {
    max-height: 300px;
  }
  .title {
    width: calc(100% - 80px);
    font-size: 1.6rem;
    max-width: 1140px;
  }
}

/* === TELAS ULTRAWIDE (≥1920px) === */
@media (min-width: 1920px) {
  .logo img {
    max-height: 250px;
  }

  .banner,
  .video-container {
    width: calc(100% - 120px);
    max-width: 1400px;
  }

  .vote-form {
    gap: 260px;
    max-width: 1400px;
    flex-wrap: nowrap;
  }

  .banner img {
    max-height: 350px;
  }
  .title {
    width: calc(100% - 120px);
    font-size: 1.8rem;
    max-width: 1400px;
  }
}

/* === TELAS MUITO PEQUENAS (≤320px) === */
@media (max-width: 320px) {
  body {
    font-size: 14px;
  }

  .logo img {
    max-height: 80px;
  }

  .banner img {
    max-height: 100px;
  }

  .vote-btn img {
    width: 40px;
  }
  .title {
    width: calc(100% - 10px);
    font-size: 1rem;
  }
}

/* =========================
   =Botao e Texto da Index =
   ========================= */
.enter-btn {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #ff1a1a;
    color: #ff1a1a;
    background-color: #000;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.enter-btn:hover {
    background-color: #ff1a1a;
    color: #000;
}

.enter-wrapper {
    margin-top: 25px;
    text-align: center;
}

.index-container {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    color: #eee;
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 0 15px;
}

.index-container .disclaimer {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #bbb;
}

/* === DMCA Footer === */
.site-footer {
  text-align: center;
  font-size: 10px;
  color: #aaa;
  padding: 10px 0;
  background-color: #000;
}

.site-footer a {
  color: #ff0033;
  text-decoration: underline;
}