/* Audio Popup — click-through overlay, page stays fully usable */

.awpop{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  pointer-events: none; /* crucial: the overlay never blocks page clicks */
}

.awpop.is-open{ display:block; }

/* no backdrop at all (so nothing blocks clicks) */
.awpop-backdrop{ display:none; }

.awpop-panel{
  position:absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(980px, calc(100vw - 24px));

  border-radius: 16px;
  padding: 12px;

  /* more semitransparent */
  background: rgba(10, 12, 20, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255,255,255,.16);

  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  pointer-events: auto;

}

.awpop-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.awpop-title{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  opacity:.95;
}

.awpop-close{
  cursor:pointer;
  border-radius: 12px;
  padding: 6px 10px;
}

.awpop-row{
  display:flex;
  align-items:center;
  gap: 12px;
}

.awpop-btn{
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  user-select:none;
}

.awpop-track{
  position:relative;
  flex:1;
  height: 18px;
  display:flex;
  align-items:center;
}

.awpop-fill{
  position:absolute;
  left:0; top:50%;
  height:4px;
  transform:translateY(-50%);
  width:0%;
  border-radius:999px;
  pointer-events:none;
  background: rgba(255,255,255,.55);
}

.awpop-seek{
  width:100%;
  height:18px;
  margin:0;
  background:transparent;
  cursor:pointer;
}

.awpop-seek::-webkit-slider-thumb{height:14px;width:14px}
.awpop-seek::-moz-range-thumb{height:14px;width:14px}

.awpop-time{
  white-space:nowrap;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 720px){
  .awpop-title{ display:none; }
}