@font-face {
    font-family: "Greed";
    src:
      url(greed.woff2) format("woff2"),
      url(greed.woff) format("woff");
  }
  
  body {
    margin: 0rem;
    font-family: "Greed", sans-serif;
    -wenkit-font-smoothing: antialiased;
    background-color: #b56bf8;
}
  
  .loader-wrap {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;

  }
  
  .pill-container {
    display: flex;
    gap: 0.25rem;
    z-index: 100;
    position: relative;
  }
  
  .pill {
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 100rem;
    font-size: 1.25rem;
    color: #b56bf8;
    position: relative;
    overflow: clip;
  }
  
  .pill-square {
    border-radius: 0rem;
  }
  
  .pill-fill {
    width: 1rem;
    height: 100%;
    background-color: #000;
    position: absolute;
    left: 0rem;
    top: 0rem;
    z-index: -1;
  }
  
  .band-container {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0rem;
    left: 0rem;
    display: flex;
    flex-direction: column;
    z-index: 90;
  }
  
  .band {
    width: 100%;
    flex-grow: 1;
    background-color: #b56bf8;
  }
  
  .scramble-wrap {
    position: absolute;
    width: 100%;
    height: 100svh;
    top: 0rem;
    left: 0rem;
    display: flex;
    flex-direction: column;
    background-color: #000;
    z-index: 80;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
  }
  
  .scramble-container,
  .scramble-top,
  .scramble-bottom {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  
  .scramble-top {
    margin-right: 6rem;
  }
  
  .scramble-bottom {
    margin-left: 6rem;
  }
  
  .video-wrap {
    position: absolute;
    width: 100%;
    height: 100svh;
    top: 0rem;
    left: 0rem;
    overflow: hidden;
    z-index: 70;
  }
  
  video {
    width: 100%;
    height: 100svh;
    object-fit: cover;
  }
  
  .video-desktop {
    display: none;
  }

.ticker-audio-container {
  position: absolute;
  bottom: 3rem;
  padding-bottom: env(safe-area-inset-bottom);
  left: 0rem;
  width: 100%;
  height: auto;
  z-index: 9999999;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  padding: 0rem 1.5rem 3rem;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  right: 0rem;

}

  .ticker-container {
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(0.5rem);
    padding: 0.5rem 0rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px 0 rgba(181, 107, 248, 0.50);
    border: 1px solid #B56BF8;
    color: #B56BF8;
    font-size: 1.5rem;
    z-index: 9999999;  
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  
}

.ticker-item {
    white-space: nowrap;
}
  
.volume-slider {
  opacity: 0;
}

  @media (orientation: landscape) and (min-width: 480px) {
    .pill {
      font-size: 2rem;
    }
    .video-desktop {
      display: block;
    }
    .video-mobile {
      display: none;
    }
    .ticker-container {
        display: none !important;
    }
    .ticker-audio-container {
      padding: 0rem 1.5rem 3rem;
      bottom: 0rem;
    }
    .volume-slider {
      opacity: 1;
    }
}






/* audio */


.audio-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.audio-controls button {
 cursor: pointer;
}

/* 1) Base slider reset */
.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 10rem;
  height: 24px;
  background: transparent;
  cursor: pointer;
}

/* Focus styles */
.volume-slider:focus {
  outline: none;
}
.volume-slider:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 999px;
}

/* 2) Track */
.volume-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}

.volume-slider::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}

/* 3) Thumb */
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  margin-top: -5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
}

/* Hover / active */
.volume-slider:hover::-webkit-slider-thumb { transform: scale(1.06); }
.volume-slider:active::-webkit-slider-thumb { transform: scale(1.24); }
.volume-slider:hover::-moz-range-thumb { transform: scale(1.06); }
.volume-slider:active::-moz-range-thumb { transform: scale(1.24); }

/* Gradient paint base */
.volume-slider {
  height: 2px;
  border-radius: 999px;
}
.volume-slider::-webkit-slider-runnable-track { background: transparent; }
.volume-slider::-moz-range-track { background: transparent; }

/* Mute button icons */
#muteBtn svg {
  width: 20px;
  height: 20px;
  display: block;
}

#muteBtn .icon-unmuted {
  display: none;
}

#muteBtn.is-unmuted .icon-muted {
  display: none;
}

#muteBtn.is-unmuted .icon-unmuted {
  display: block;
}