/* ===== Reset / Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden; /* sin scroll por defecto */
}

/* Ancho común para player y contenido */
.content-width {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
#main-header {
  position: relative;
  height: 15vh;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-header .social-icons {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 14px;
}
#main-header .social-icons img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e1e1e;
  padding: 6px;
  transition: transform .2s ease, box-shadow .2s ease;
}
#main-header .social-icons img:hover {
  transform: scale(1.12);
  box-shadow: 0 0 0 2px #E91E63;
}
#main-header .logo img {
  max-height: 12vh;
}

/* ===== TWITCH PLAYER ===== */
#main-content {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
#main-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== FOOTER ===== */
#main-footer {
  height: 6vh;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ccc;
}
#main-footer a {
  color: #00BFFF;
  text-decoration: none;
}
#main-footer a:hover {
  color: #66DFFF;
  text-decoration: underline;
}

/* ===== Responsive: scroll si es necesario ===== */
@media (max-width: 768px) {
  body {
    overflow-y: auto;
  }

  #main-header {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }
  #main-header .social-icons {
    position: static;
    transform: none;
    margin-bottom: 8px;
  }
  #main-header .logo img {
    max-height: 10vh;
  }

  #main-content {
    height: 75vh;
  }

  #main-footer {
    height: auto;
    font-size: 0.8rem;
    text-align: center;
    padding: 10px;
  }
}
