  /* RESET */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background: black;
    color: white;
    font-family: monospace;
    overflow: hidden;
  }

  /* SCREENS */
  .screen {
    position: fixed;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
    z-index: 1;
  }

  .screen.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
  }

  /* START */
  #start-screen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #start-btn {
    width: 220px;
    cursor: pointer;
    transition: transform .4s ease, filter .4s ease, opacity .4s ease;
  }

  #start-btn.click-effect {
    transform: scale(1.3) rotate(2deg);
    filter: blur(6px) contrast(200%);
    opacity: 0;
  }

  /* LOADING */
  .bg-video {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: blur(8px) brightness(.5);
    pointer-events: none;
  }

  .loading-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .glitch-text {
    margin-top: 30px;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 8px;
    position: relative;
    text-transform: uppercase;
  }

  #progress {
    margin-top: 10px;
    font-size: 18px;
  }

  /* HOME */
  #home-screen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home-bg {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: blur(6px) brightness(.6);
    z-index: -1;
    pointer-events: none;
  }

  .home-container {
    position: relative;
    z-index: 5;
    text-align: center;
  }

  .home-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  /* ICONS */
  .icon-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 70px;
    margin-top: 40px;
  }

  .icon {
    width: 130px;               /* antes 90 */
  }

  .icon img {
    width: 72px;                /* antes 48 */
    height: 72px;
    transition: 
      transform 0.3s ease,
      filter 0.3s ease;
  }

  .icon span {
    margin-top: 14px;
    font-size: 12px;            /* texto más visible */
    letter-spacing: 4px;
  }


  .icon:hover img {
    transform: scale(1.35);     /* animación visible */
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.35));
  }

  .icon:hover span {
    opacity: 1;
    transform: translateY(2px);
  }



  /* MODAL 🔥 */
  /* MODAL FULLSCREEN */
  /* =========================
    PREVIEW FULLSCREEN
  ========================= */

  .modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;
  }

  .modal.active {
    display: flex;
  }

  /* VIDEO FONDO */
  .modal-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    filter: blur(10px) brightness(0.35) contrast(120%);
    opacity: 1;
    z-index: -1;
  }

  /* CONTENIDO */
  .modal-content {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: monospace;
    color: white;
  }


  /* BOTÓN BACK */
  .back-btn {
    position: absolute;
    top: 30px;
    left: 30px;

    background: none;
    border: none;
    color: #ccc;
    font-size: 18px;
    letter-spacing: 3px;
    cursor: pointer;
    opacity: 0.6;
  }

  .back-btn:hover {
    opacity: 1;
  }


  /* PLAYER */
  .player {
    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 45px 70px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;

    backdrop-filter: blur(6px);
  }

  /* TITULO */
  .track-title {
    font-size: 22px;
    letter-spacing: 5px;
    opacity: 0.9;
  }

  /* CONTROLES */
  .controls,
  .volume {
    display: flex;
    gap: 18px;
  }

  .controls button,
  .volume button {
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;

    padding: 10px 18px;
    font-size: 16px;
    cursor: pointer;

    transition: all 0.25s ease;
  }

  .controls button:hover,
  .volume button:hover {
    transform: scale(1.15);
    border-color: white;
  }

  /* VOL */
  .volume span {
    letter-spacing: 2px;
    opacity: 0.7;
  }

  /* =========================
    FIX ICONOS SIN FONDO
    + HOVER MÁS NOTORIO
  ========================= */

  /* asegurar que el contenedor no pinte nada */
  .icon {
    background: none !important;
    box-shadow: none !important;
    filter: none !important;
  }

  /* limpiar completamente el PNG/GIF */
  .icon img {
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;

    /* evita rectángulos raros */
    mix-blend-mode: normal;
    isolation: isolate;

    /* mejor render */
    image-rendering: auto;
  }

  /* quitar cualquier blur heredado */
  .icon,
  .icon img,
  .icon span {
    backdrop-filter: none !important;
  }

  /* HOVER MÁS FUERTE Y VISIBLE */
  .icon:hover img {
    transform: scale(1.5); /* MÁS GRANDE */
    filter:
      brightness(1.2)
      contrast(1.2)
      drop-shadow(0 0 10px rgba(255,255,255,0.45))
      drop-shadow(0 0 20px rgba(255,255,255,0.25));
  }

  /* texto acompaña el hover */
  .icon span {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .icon:hover span {
    transform: translateY(4px);
    opacity: 1;
  }


  /* =========================
    CONTACT FULLSCREEN
  ========================= */

  .contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .contact-title {
    font-size: 36px;
    letter-spacing: 6px;
    opacity: 0.95;
  }

  /* instagram */
  .instagram-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;

    text-decoration: none;
    color: white;
    opacity: 0.85;

    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .instagram-link img {
    width: 120px;
    height: auto;

    background: transparent;
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.25));

    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .instagram-link span {
    font-size: 14px;
    letter-spacing: 4px;
  }

  /* hover */
  .instagram-link:hover {
    transform: scale(1.05);
    opacity: 1;
  }

  .instagram-link:hover img {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.45));
  }


/* ARTISTS MODAL - MEMBERS */
#artists-modal {
  background: black;
  overflow: hidden;
}

/* El fondo dinámico: la foto del artista difuminada */
.artists-bg {
  position: absolute;
  inset: -20px; /* Un poco más grande para evitar bordes blancos por el blur */
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  object-fit: cover;
  filter: blur(30px) brightness(0.4); /* Desenfoque profundo */
  z-index: -1;
  transition: opacity 0.5s ease, src 0.5s ease;
}

.artist-container {
    display: flex;
    flex-direction: row;        /* Fila: uno al lado del otro */
    align-items: center;        /* Centrados verticalmente */
    justify-content: center;    /* Centrados horizontalmente en la pantalla */
    gap: 40px;                  /* Espacio entre los botones y la imagen */
    
    width: 100%;
    height: 100%;               /* Ocupa toda la altura del modal */
    padding: 0 20px;            /* Margen de seguridad a los lados */
}
/* Imagen principal limpia y MÁS GRANDE */
#artist-img {
  height: auto;
  width: auto;
  max-height: 85vh; /* Ocupa hasta el 85% de la altura de la pantalla */
  max-width: 80vw;  /* Ocupa hasta el 80% del ancho de la pantalla */
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border-radius: 12px;
  transition: opacity 0.3s ease;
  flex-shrink: 1; /* Permite que la imagen se encoja si falta espacio */
}

#artist-name {
  font-size: 2rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
  transition: opacity 0.4s ease;
}

/* Botones de navegación MÁS GRANDES */
/* Botones: Fijos y centrados */
.nav-btn {
    flex-shrink: 0;             /* Evita que se aplasten si la imagen es grande */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 24px;
    
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.artist-btn {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 2.5rem; /* Botones bien grandes */
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.artist-btn:hover {
  background: white;
  color: black;
  transform: scale(1.1);
}

/* BOTÓN HOME (ESQUINA SUPERIOR IZQUIERDA) */
.back-btn {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 1000;
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: white;
  color: black;
}
.artists-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(25px) brightness(0.4);
  z-index: -1;
  transform: scale(1.1);
}
  .snippet-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    text-align: center;
    margin-top: 50px;
  }

  #snippet-audio {
    width: 100%;
  }

  #snippet-name {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .snippet-controls {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }

  .snippet-controls button {
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    padding: 10px 18px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .snippet-controls button:hover {
    transform: scale(1.15);
    border-color: white;
  }


  /* FONDO DEL PREVIEW */
  .modal-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;         /* cubre todo */
    filter: blur(12px) brightness(0.3); /* blur + oscuro */
    z-index: -1;
  }


  /* Quitar controles nativos y usar los nuestros */
  audio#snippet-audio {
    display: none; /* Lo ocultamos porque usaremos nuestros botones personalizados */
  }

  /* Ajuste del contenedor para que no se encime */
  .modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

/* Esto mata cualquier rastro del reproductor nativo */
#snippet-audio {
  display: none !important;
}

/* Centrado total de la caja de controles */
.player {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 5px; /* Si quieres que sea cuadrada como en la foto */
  border: 1px solid rgba(255,255,255,0.1);
}


/* Ajustar el tamaño de los botones para que quepan todos */
.controls button {
  padding: 8px 12px;
  font-size: 14px;
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.back-btn {
  position: absolute;
  top: 30px;
  left: 30px; /* Asegura que esté a la izquierda */
  right: auto; /* Anula cualquier valor previo a la derecha */
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1000;
  font-family: monospace;
}

/* =======================
   CUENTA REGRESIVA HOME
======================= */
#countdown-container {
  position: absolute;
  top: 30px;        /* Distancia desde arriba */
  left: 30px;       /* Distancia desde la izquierda */
  z-index: 20;      /* Por encima del video de fondo */
  font-family: monospace;
  color: white;
  text-align: left;
  opacity: 0.8;
  pointer-events: none; /* Para que no estorbe clicks */
}

#countdown-title {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.6);
}

#countdown-timer {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 4px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Brillo */
}