/* ======================= */
/* RESET E ESTILO GERAL */
/* ======================= */
body {
  margin: 0;
  background-color: #000;
  font-family: Verdana, sans-serif;
  color: #fff;
  box-sizing: border-box;
}

/* ======================= */
/* CONTAINER PRINCIPAL */
/* ======================= */
.main-container {
  width: 100%;
  max-width: 1280px;    /* limite máximo no desktop */
  margin: 0 auto;       /* centraliza horizontalmente */
  padding: 0 10px;      /* padding mínimo no mobile */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;            /* distância uniforme entre elementos */
  box-sizing: border-box;
}

/* ======================= */
/* LOGO */
/* ======================= */
.site-logo img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ======================= */
/* VÍDEO */
/* ======================= */
.video-container {
  width: 100%;
  max-width: 1280px;
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #ff0033;
  border-radius: 10px;
  box-shadow: 0 0 20px #ff0033;
  display: block;
  box-sizing: border-box;
}

/* ======================= */
/* BOTÕES NEON VERMELHOS */
/* ======================= */
.button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.action-button {
  position: relative;
  display: inline-block;
  background-color: #200000;
  color: #ff0033;
  border: 2px solid #ff0033;
  border-radius: 6px;
  padding: 10px 35px; /* espaço para setas */
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
}

.action-button.reddit::before,
.action-button.secretwives::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  border-color: #ff0033;
  transition: border-color 0.2s ease-in-out;
}

.action-button.reddit::before {
  left: 12px;
  border-left: 2px solid #ff0033;
  border-bottom: 2px solid #ff0033;
}

.action-button.secretwives::after {
  right: 12px;
  border-right: 2px solid #ff0033;
  border-top: 2px solid #ff0033;
}

.action-button.gera::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid #ff0033;
  border-top: 2px solid #ff0033;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.2s ease-in-out;
}

.action-button:hover.gera::after {
  border-color: #000;
}


.action-button:hover {
  background-color: #ff0033;
  color: #000;
}

.action-button:hover::before,
.action-button:hover::after {
  border-color: #000;
}

/* ======================= */
/* BANNER SUPERIOR */
/* ======================= */
.top-banner img {
  width: 100%;
  max-width: 1280px;
  height: auto;
  display: block;
}

/* ======================= */
/* FOOTER DO VÍDEO */
/* ======================= */
.footer-video {
  width: 100%;
  max-width: 1280px;
  background-color: #200000;
  border: 2px solid #ff0033;
  border-radius: 10px;
  box-shadow: 0 0 20px #ff0033;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  box-sizing: border-box;
  margin-bottom: 30px; /* espaço embaixo do footer */
}

.footer-video .title {
  font-weight: bold;
  font-size: 22px;
  color: #ff0033;
  text-align: center;
}

.footer-video .description {
  font-size: 16px;
  color: #fff;
  overflow: auto;
}

/* ======================= */
/* RESPONSIVO */
/* ======================= */
@media (max-width: 768px) {

  .main-container {
    padding: 0 5px;
  }

  .footer-video {
    margin-bottom: 20px; /* menor espaço em mobile */
  }

  .footer-video .title {
    font-size: 20px;
  }

  .footer-video .description {
    font-size: 14px;
    height: auto;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
