body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #121212;
  color: #fff;
  text-align: center;
}

header {
  padding: 15px 10px;
  background: #1f1f1f;
}

.titulo {
  font-size: 20px;
  color: #ff4f91;
  margin: 0;
}

.categorias {
  display: block;
  padding: 15px;
}

.boton {
  background: #ff4f91;
  color: #000;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 90%;
  margin: 10px auto;
  display: block;
  text-align: center;
}

.boton:hover,
.boton:active {
  transform: scale(1.05);
  box-shadow: 0 0 10px #ff4f91aa;
}

.ad-container {
  margin: 15px auto;
  display: flex;
  justify-content: center;
}


/* Scroll fix to ensure user can reach bottom */

body {
    overflow-y: auto;
}
.container, .video-container {
    overflow-y: visible;
    max-height: none;
}
