:root {
  --font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --c-bg: #000;
  --c-text: rgb(255, 255, 255);
  --c-text-muted: rgba(255, 255, 255, 0.76);
  --c-accent: rgb(0, 255, 255);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.45s;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.07em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--c-bg);
  color: var(--c-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 36px 24px 80px;
}

h1 {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 4px;
}

h2 {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.ui__header {
  text-align: center;
  margin-bottom: 40px;
}

.ui {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

:root {
  --c-text-modal: rgba(255, 255, 255, 0.75);
  --c-link: rgb(0, 255, 255);
  --c-error: rgb(255, 202, 55);
  --c-accent-dark: rgba(0, 255, 255, 0.294);
  --c-modal-bg: rgba(8, 8, 8, 0.96);
  --c-border: rgba(255, 255, 255, 0.33);
}

b {
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 28px;
}

.footer__link {
  color: var(--c-text-muted);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: inherit;
  transition: color var(--dur) var(--ease);
}
.footer__link:hover {
  color: var(--c-text);
}

.play-btn {
  position: relative;
  z-index: 10;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: var(--c-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease), transform 0.15s var(--ease);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
}
.play-btn:hover {
  background: rgba(255, 255, 255, 0.86);
  transform: scale(1.06);
}
.play-btn:active {
  transform: scale(0.97);
}
.play-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 5px;
}
.play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--c-bg);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal__box {
  position: relative;
  z-index: 1;
  background: var(--c-modal-bg);
  border: 1px solid var(--c-border);
  padding: 44px 40px 40px;
  max-width: 420px;
  width: calc(100% - 48px);
  animation: modal-in 0.3s var(--ease);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 22px;
  line-height: 1;
  padding: 4px 8px;
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.modal__close:hover {
  color: var(--c-text);
}

.modal__title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text);
  margin-bottom: 28px;
}

.modal__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--c-text-muted);
}
.modal__body p {
  margin-bottom: 14px;
}
.modal__body p:last-child {
  margin-bottom: 0;
}
.modal__body ul {
  list-style: none;
}
.modal__body ul li {
  margin-bottom: 14px;
}
.modal__body a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur) var(--ease);
}
.modal__body a:hover {
  color: var(--c-text);
}

@media (max-width: 600px) {
  .footer {
    gap: 20px;
    padding: 20px;
  }
  .modal__box {
    padding: 36px 28px 32px;
  }
}
:root {
  --c-bg: #0a0a0f;
  --panel-bg: #1a1a2e;
}

.stream-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.player-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

canvas#visualizer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.site-link {
  color: var(--c-text-muted);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color var(--dur) var(--ease);
}
.site-link:hover {
  color: var(--c-text);
}

.status {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  min-height: 1.4em;
}

.volume-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.vol-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--c-text-muted);
  transition: color var(--dur) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vol-btn:hover {
  color: var(--c-text);
}
.vol-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.vol-slider-wrap {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  background: var(--panel-bg);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 12px 10px;
  z-index: 20;
}
.vol-slider-wrap.open {
  display: flex;
}

#volSlider {
  writing-mode: vertical-lr;
  direction: rtl;
  -moz-appearance: slider-vertical;
       appearance: slider-vertical;
  -webkit-appearance: slider-vertical;
  width: 4px;
  height: 100px;
  cursor: pointer;
  accent-color: var(--c-accent);
}

@supports (-webkit-touch-callout: none) {
  .volume-wrap {
    display: none;
  }
}/*# sourceMappingURL=stream.css.map */