html,
body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}
/* Revisado */

/* FONTS */

h1,
h2,
h3,
h4,
.section-title {
  font-family: "Metal Mania", system-ui;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
}
body,
p {
  font-family: "astoria", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
}
span,
li,
a {
  font-family: "astoria", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
}
/* Revisado */

/* BUTTONS */

.btn-noise {
    position: relative;
    width: 10em;
    height: 2.8em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    transition: background 0.3s, color 0.3s, box-shadow 0.5s ease-in-out;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    text-decoration: none;
  }
  
  .btn-noise:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
      0 0 40px rgba(255, 255, 255, 0.4);
    animation: glow-effect 1.5s infinite alternate ease-in-out;  
  }
/* Revisado */

  /* BACKGROUND VIDEO */
  #bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    filter: brightness(0.5) sepia(0.1) hue-rotate(190deg) saturate(1.5) contrast(1.2);
  }
  /* Revisado */

  /* NAVBAR */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.navbar-brand img {
  height: 40px;
  width: auto;
  max-width: 200px;
  margin: 11px 0 5px 0;
}

.navbar-nav {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-nav a:hover {
    color: #e3d7aa;
}

.navbar-toggler {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
/* Revisado */

/* ==========================
   GENERAL SECTIONS
   ========================== */
   .section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    min-height: 100vh;
    padding: 0px 20px;
    box-sizing: border-box;
    color: white;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
/* ==========================
   HEADER
   ========================== */
   .album-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: 80px;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
  }
  
  .album-title {
    margin-bottom: 20px;
  }
  
  .album-cover {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .album-description {
    max-width: 700px;
    margin-bottom: 40px;
  }
  
  .album-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
  }

/* RELATED VIDEOS */
.related-videos {
  width: 100%;
  padding: 20px 20px 40px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  border-radius: 10px;
  margin: 50px 20px;
}

.related-content {
  background: rgba(0, 0, 0, 0.8);
  padding: 0 40xp;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  width: 100%;
  border-radius: 10px;
  max-width: 1400px;
  margin: 0 auto;
}
  .related-content-1 {
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 0;
    border-radius: 10px;
  }
  .related-content-2 {
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 0;
    border-radius: 10px;
  }
  .related-videos h2 {
    margin-bottom: 25px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
  }
  .video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
  }
  
  .video-thumbnail {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity 0.3s, transform 0.3s;
  }
  
  .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: white;
    transition: background 0.3s ease-in-out, transform 0.2s;
  }
  
  .video-play:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .lyrics-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 40px 0;
  }
  
  .lyrics-container h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
  }
  
  .lyrics-container p {
    max-width: 700px;
    margin: 0 auto;
    white-space: pre-line;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
  }
.extra-lyrics{
  height: fit-content;
  padding: 20px 0;
}
/* SOCIAL MEDIA SECTION */
.social-media-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  background: transparent;
  margin-bottom: 50px;
}

.social-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  color: white;
}

.social-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.social-icons {
  display: flex;
  gap: 15px;
  padding: 5px 0;
}

.social-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
}

.social-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
  transition: fill 0.3s ease-in-out;
}

.social-icon:hover svg {
  fill: #e3d7aa;
}
  /* ==========================
         SUBSCRIPTION SECTION
       ========================== */
  .subscription-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 50px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: white;
  }
  
  .subscription-title {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .subscription-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  iframe {
    max-width: 100%;
  }
  /* ==========================
         FOOTER SECTION
       ========================== */
  .footer-section {
    margin-top: auto;
    background: black;
    color: white;
    text-align: center;
    padding: 5px 0;
  }
  .footer-text {
    font-size: 1rem;
    margin: 0;
  }
  
  .footer-link {
    color: white;
    text-decoration: none;
  }
  
  .footer-link:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .navbar-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        padding: 20px;
    }
  
    .navbar-nav.show {
        display: flex;
    }
  
    .navbar-toggler {
        display: block;
        margin-right: 20px;
    }
.album-header {
     width: 100%;
     padding: 0 25px;
    }
    .album-header p {
      font-size: 0.8em;
      margin: 0 10px 30px 10px;
    }
    .album-buttons {
      flex-direction: column;
      gap: 10px;
    }
  
    .btn-noise {
      width: 100%;
    }
  
    .related-content {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      background: transparent;
    }
  
    .video-container,
    .lyrics-container {
      width: 100%;
      max-width: 100%;
    }
    .video-container {
      margin-bottom: 0px;

    }
    .video-thumbnail {
      max-width: 100%;
    }
  
    .video-play {
      width: 60px;
      height: 60px;
      font-size: 15px;
    }
  
    .lyrics-container {
      margin-top: 5px;
      padding: 0;
    }
    /* Responsive Buttons */
    .btn-noise:active {
      background: white !important;
      color: black !important;
      border-color: black !important;
    }
      /* Responsive Social */

  .social-media-section h1 {
  font-size: 1em;}
  .social-title {
    margin-bottom: 10px; 
  }
  .social-icons {
    gap: 15px; 
  }
  .social-icon svg {
    width: 28px;
    height: 28px;
  }
  
  /* Subscription */
  .subscription-title {
    font-size: 1.5rem;
  }
  
  /* Footer Responsive */
  .footer-section {
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  .footer-text {
    font-size: 15px;
    margin: 0;
  }
  .footer-link {
    font-size: 15px;
    padding: 0 5px;
  }
  }
