html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Highly recommended: ensures padding/borders don't accidentally expand element widths */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 1.2rem;
}
.hero-header {
    background-image: url('public/images/banner-brimjok.jpg');
    background-size: cover; 
    background-position: top center; 
    background-repeat: no-repeat;
    width: 100%;
    height: 28vh;
}

.header-streaming-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
  padding-top: 5px;
  font-size: 14px;
}

.header-streaming-links a {
    color: #ffffff;
    transition: background-color 0.3s ease;
}
.header-streaming-links a:hover {
    background-color: #333333;
}

.logo-container {
    z-index: 2;
}

.hero-logo {
    width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
}
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
    text-align: center;
}
h1, h2 {
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.streaming-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.streaming-links a {
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: background-color 0.3s ease;
}
.streaming-links a:hover {
    background-color: #333333;
}
footer {
    border-top: 1px solid #222;
    padding: 30px 20px;
    text-align: center;
    margin-top: 60px;
    color: #888;
    font-size: 0.9rem;
}
footer a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    color: #fff;
}

/* 2. Breakpoint para Tablets (Pantallas medianas) */
/* A partir de 768px de ancho */
@media (min-width: 768px) {
  .header-streaming-links {
    gap: 30px;
    font-size: 20px;
    padding-top: 10px;
  }

  .hero-header {
    height: 37vh;
  } 

  .hero-logo {
    width: 250px;
  }
}


/* 3. Breakpoint para Escritorio (Monitores y portátiles) */
/* A partir de 1024px de ancho */
@media (min-width: 1024px) {

  .hero-header {
    width: 1024px;
    height: 44vh;
    margin: 0 auto 20px auto;
  }

  .header-streaming-links {
    gap: 35px;
    font-size: 24px;
    padding-top: 15px;
  }

}