body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #000;
    color: #ecc183;
    font-family: sans-serif;
    overflow: hidden; /* Evita barras de scroll innecesarias */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70%;
    z-index: 1;
}

img {
    max-width: 80%;
    height: auto;
}

#logo{z-index: 1;}

#info {
    text-align: center;
    margin-top: 1em;
    height: 2.5em; /* Espacio reservado para el texto */
        z-index: 1;

}

.player-controls {
    margin-top: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Acomoda en columna: bot¨®n arriba, contenido abajo */
}

#playButton {
    background: #c25c12;
    color: #000000;
    border: none;
    padding: 0.8em 1.5em;
    font-size: 1.1em;
    border-radius: 8px;
    cursor: pointer;
    width: 220px;
    display: block;
    margin-bottom: 1em;
}

.hud-container {
    visibility: hidden; /* Empieza oculto */
    position: absolute;
    left: calc(50% + 120px); /* A la derecha del botÃ³n */
}

.knob-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #c25c12;
    position: relative;
    transform: rotate(210deg);/* PosiciÃ³n inicial (volumen mÃ¡ximo) */
    cursor: pointer;
    transition: transform 0.1s;
}

.knob-indicator {
    width: 6px;
    height: 10px;
    background: #000;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

#background-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;   /* fondo */
}

#main-content {
  position: relative;
  z-index: 1;   /* encima */
}

.floating-img {
  position: absolute;
  opacity: 0;
      z-index:0;

  pointer-events: none;
  will-change: transform, opacity;
}

#altcontent {
    display: none;
    justify-content: space-between;
    gap: 5px; /* Espaciado entre elementos */
    width: 60%;
    max-width: 300px;
    margin: 0 auto;
    color: #ffd580;
    font-size: 0.75em;
}

#altcontent > div {
    flex: 1;
    text-align: center;
    cursor: pointer;
}