* {
  box-sizing: border-box;
}
:root {
  --sgrm-surface: rgba(9, 14, 25, 0.58);
  --sgrm-surface-strong: rgba(9, 14, 25, 0.82);
  --sgrm-line: rgba(255, 255, 255, 0.1);
  --sgrm-muted: rgba(255, 255, 255, 0.58);
  --sgrm-radius-lg: 28px;
  --sgrm-radius-md: 18px;
}
html,
body {
  margin: 0;
  min-height: 100%;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
.sgrm-radio-page {
  min-height: 100vh;
  color: #fff;
  background: #07101f;
  overflow-x: hidden;
}
.sgrm-app {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding: max(18px, env(safe-area-inset-top))
    max(22px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom))
    max(22px, env(safe-area-inset-left));
  display: flex;
  flex-direction: column;
}
.sgrm-bg,
.sgrm-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
}
.sgrm-bg {
  background-image:
    var(--sg-radio-bg),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--sg-radio-primary) 65%, #07101f),
      #050a12
    );
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.sgrm-overlay {
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(2, 7, 16, 0.68),
    rgba(3, 9, 20, 0.84) 52%,
    rgba(2, 6, 14, 0.95)
  );
  backdrop-filter: blur(3px);
}
.sgrm-header {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 60px;
}
.sgrm-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}
.sgrm-brand {
  display: flex;
  flex-direction: column;
}
.sgrm-brand strong {
  font-size: 1.05rem;
}
.sgrm-brand span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}
.sgrm-menu-toggle {
  margin-left: auto;
}
.sgrm-menu-toggle,
.sgrm-menu-close,
.sgrm-icon-button {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.2s;
}
.sgrm-menu-toggle:hover,
.sgrm-icon-button:hover {
  background: color-mix(in srgb, var(--sg-radio-primary) 100%, transparent);
  transform: translateY(-1px);
}
svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.sgrm-main {
  width: min(980px, 100%);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0;
}
.sgrm-now-playing {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sgrm-disc {
  position: relative;
  width: clamp(210px, 29vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 10px;
  background:
    radial-gradient(circle, #111 0 7%, #252525 7.5% 9%, transparent 9.5%),
    repeating-radial-gradient(circle, #181818 0 3px, #222 4px 5px);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}
.sgrm-disc img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.25s ease;
  will-change: transform;
}
.sgrm-disc.is-spinning img {
  animation: sgrm-spin 12s linear infinite;
}
.sgrm-disc-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    #d9d9d9 0 18%,
    #101010 20% 48%,
    var(--sg-radio-primary) 50%
  );
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}
@keyframes sgrm-spin {
  to {
    transform: rotate(360deg);
  }
}
.sgrm-track {
  text-align: center;
  min-height: 92px;
  margin-top: 20px;
  width: min(720px, 100%);
}
.sgrm-track > span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sg-radio-primary);
  font-weight: 800;
}
.sgrm-track h1 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.25;
  margin: 7px 0 4px;
  min-height: 1.25em;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
}
.sgrm-extra-info {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}
.sgrm-spectrum-wrap {
  height: clamp(60px, 10vw, 105px);
  width: 100%;
  margin: 5px 0;
}
.sgrm-spectrum {
  display: block;
  width: 100%;
  height: 100%;
}
.sgrm-player {
  width: min(760px, 100%);
  min-height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(5, 11, 23, 0.62);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
  border-radius: 22px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.sgrm-play {
  border: 0;
  background: var(--sg-radio-primary);
  color: #fff;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px
    color-mix(in srgb, var(--sg-radio-primary) 40%, transparent);
  flex: none;
}
.sgrm-play svg {
  width: 30px;
  height: 30px;
}
.sgrm-pause-icon,
.sgrm-play.is-playing .sgrm-play-icon {
  display: none;
}
.sgrm-play.is-playing .sgrm-pause-icon {
  display: block;
}
.sgrm-player-meta {
  display: flex;
  flex-direction: column;
  min-width: 130px;
  margin-right: auto;
}
.sgrm-player-meta h3 {
  font-size: 0.95rem;
}
.sgrm-player-meta span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 3px;
}
.sgrm-volume {
  width: min(150px, 20vw);
  accent-color: var(--sg-radio-primary);
}
.sgrm-icon-button.is-muted {
  opacity: 0.5;
}
.sgrm-ads {
  position: relative;
  margin: 28px auto 0;
  width: 100%;
  overflow: hidden;
}
.sgrm-ads--730x90 {
  max-width: 730px;
  aspect-ratio: 730/90;
}
.sgrm-ads--300x300 {
  max-width: 300px;
  aspect-ratio: 1;
}
.sgrm-ad-track,
.sgrm-ad-slide {
  position: absolute;
  inset: 0;
}
.sgrm-ad-slide {
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
  display: grid;
  place-items: center;
}
.sgrm-ad-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.sgrm-ad-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sgrm-ad-dots {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.sgrm-ad-dots button {
  border: 0;
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.sgrm-ad-dots button.is-active {
  background: var(--sg-radio-primary);
}
.sgrm-social {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 7px;
  z-index: 5;
}
.sgrm-social a {
  width: 41px;
  height: 41px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(5, 11, 23, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  transition: 0.2s;
}
.sgrm-social a:hover,
.sgrm-social a:focus {
  background: var(--sg-radio-primary);
  transform: translateX(-4px);
}
.sgrm-social svg {
  width: 20px;
  height: 20px;
}
.sgrm-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}
.sgrm-footer a {
  color: #fff;
}
.sgrm-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 20;
  opacity: 0;
  transition: opacity 0.3s;
}
.sgrm-drawer {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(360px, 88vw);
  z-index: 21;
  background: #08111f;
  color: #fff;
  padding: max(24px, env(safe-area-inset-top)) 25px
    max(24px, env(safe-area-inset-bottom));
  transform: translateX(-103%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.4);
}
.sgrm-menu-open {
  overflow: hidden;
}
.sgrm-menu-open .sgrm-menu-overlay {
  opacity: 1;
}
.sgrm-menu-open .sgrm-drawer {
  transform: translateX(0);
}
.sgrm-menu-close {
  margin-left: auto;
}
.sgrm-drawer-brand {
  text-align: center;
  margin: 10px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sgrm-drawer-brand img {
  width: 201px;
    height: 100px;
  object-fit: contain;
  border-radius: 18px;
}
.sgrm-drawer-brand strong {
  font-size: 1.25rem;
}
.sgrm-drawer nav {
  display: flex;
  flex-direction: column;
}
.sgrm-drawer nav a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 9px;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
}
.sgrm-drawer nav a:hover,
.sgrm-drawer nav a:focus {
  background: color-mix(in srgb, var(--sg-radio-primary) 28%, transparent);
}
.sgrm-drawer nav svg {
  width: 20px;
  height: 20px;
  color: var(--sg-radio-primary);
}
.sgrm-drawer hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  margin: 12px 0;
}
.sgrm-status-page {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0, #254984, #07101f 60%);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 24px;
}
.sgrm-status-card {
  text-align: center;
  width: min(520px, 100%);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(4, 10, 22, 0.7);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}
.sgrm-status-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 20px;
}
.sgrm-status-card h1 {
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  margin: 18px 0 10px;
}
.sgrm-status-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.sgrm-404 {
  font-size: 4rem;
  font-weight: 900;
  color: #6d8fff;
}
@media (max-width: 760px) {
  .sgrm-app {
    padding-left: 16px;
    padding-right: 16px;
  }
  .sgrm-main {
    padding-top: 18px;
  }
  .sgrm-disc {
    width: min(66vw, 260px);
  }
  .sgrm-track {
    min-height: 82px;
  }
  .sgrm-player {
    padding: 10px 12px;
    border-radius: 18px;
  }
  .sgrm-play {
    width: 52px;
    height: 52px;
  }
  .sgrm-volume {
    width: 82px;
  }
  .sgrm-social {
    top: auto;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    flex-direction: row;
    background: rgba(2, 7, 16, 0.75);
    padding: 6px;
    border-radius: 17px;
    max-width: calc(100vw - 24px);
    overflow-x: auto;
  }
  .sgrm-social a {
    width: 37px;
    height: 37px;
    flex: none;
  }
  .sgrm-social a:hover {
    transform: translateY(-3px);
  }
  .sgrm-footer {
  }
  .sgrm-bg {
    background-attachment: scroll;
  }
}
@media (max-width: 430px) {
  .sgrm-player-meta {
    min-width: 0;
  }
  .sgrm-player-meta span {
    display: none;
  }
  .sgrm-volume {
    width: 63px;
  }
  .sgrm-icon-button {
    width: 38px;
    height: 38px;
  }
  .sgrm-header {
    min-height: 50px;
  }
  .sgrm-logo {
    width: 44px;
    height: 44px;
  }
}




.sgrm-radio-page {
  background: #05070c;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: -0.01em;
}

.sgrm-bg {
  transform: scale(1.025);
  filter: saturate(0.82) contrast(1.04);
}

.sgrm-overlay {
  background:
    radial-gradient(circle at 50% 26%, color-mix(in srgb, var(--sg-radio-primary) 24%, transparent), transparent 35%), linear-gradient(180deg, rgb(3 5 10 / 24%), rgb(3 5 10 / 62%) 55%, #03050a 100%);
  backdrop-filter: blur(8px);
}

.fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.fi::before {
  display: block;
  line-height: 1;
}

.sgrm-header {
  position: sticky;
  top: max(12px, env(safe-area-inset-top));
  z-index: 10;
  min-height: 64px;
  padding: 8px 9px 8px 11px;
  border: 1px solid var(--sgrm-line);
  border-radius: 22px;
  background: rgba(7, 11, 19, 0.58);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(24px) saturate(1.25);
}

.sgrm-logo {
  width: 46px;
  height: 46px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
}

.sgrm-brand strong {
  font-size: 0.98rem;
  font-weight: 680;
}

.sgrm-brand span {
  margin-top: 3px;
  color: var(--sgrm-muted);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.sgrm-menu-toggle,
.sgrm-menu-close,
.sgrm-icon-button {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.075);
}

.sgrm-menu-toggle > .fi,
.sgrm-menu-close > .fi,
.sgrm-icon-button > .fi {
  font-size: 20px;
}

.sgrm-main {
  width: min(900px, 100%);
  padding: clamp(26px, 5vh, 58px) 0 30px;
}

.sgrm-now-playing {
  position: relative;
}

.sgrm-disc {
  width: clamp(214px, 27vw, 304px);
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 32px 85px rgba(0, 0, 0, 0.44),
    0 0 80px color-mix(in srgb, var(--sg-radio-primary) 15%, transparent);
  backdrop-filter: blur(12px);
}

.sgrm-disc::before {
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  content: "";
}

.sgrm-disc img {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sgrm-disc-center {
  width: 11%;
  border: 3px solid rgba(255, 255, 255, 0.78);
  background: var(--sg-radio-primary);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.32);
}

.sgrm-track {
  min-height: 90px;
  margin-top: 24px;
}

.sgrm-track > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.sgrm-track > span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sg-radio-primary);
  box-shadow: 0 0 12px var(--sg-radio-primary);
  content: "";
}

.sgrm-track h1 {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 620;
  letter-spacing: -0.035em;
}

#sgrm-track-title {
  color: #fff !important;
      display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
}

.sgrm-extra-info {
  color: var(--sgrm-muted);
  font-size: 0.78rem;
}

.sgrm-spectrum-wrap {
  height: 250px;
  margin: 0 0 10px;
  position: fixed;
  top: 540px;
  left: 50%;
  z-index: 1;
  display: block;
  width: 1920px;
  max-width: none;
  overflow: hidden;
  opacity: 0.78;
  pointer-events: none;
  transform: translateX(-50%);
}

.sgrm-disc,
.sgrm-track,
.sgrm-player,
.sgrm-ads {
  position: relative;
  z-index: 2;
}

canvas#sgrm-spectrum {
  --sgrm-spectrum-gain: 2.35;
  --sgrm-spectrum-max-height: 0.98;
  --sgrm-spectrum-line-width: 2;
  --sgrm-spectrum-line-gap: 4;
  --sgrm-spectrum-min-height: 2;
  --sgrm-spectrum-secondary-scale: 0.5;
  --sgrm-spectrum-primary-opacity: 0.3;
  --sgrm-spectrum-secondary-opacity: 0.5;
  --sgrm-spectrum-stop-duration: 900;
  display: block;
  width: 1920px;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 160ms linear;
}

canvas#sgrm-spectrum.is-active {
  opacity: 1;
}

@media (max-width: 959px) {
  .sgrm-spectrum-wrap {
    height: 100px;
  }
}

@media (max-width: 599px) {
  .sgrm-spectrum-wrap {
    height: 80px;
  }
}

.sgrm-player {
  width: min(680px, 100%);
  min-height: 76px;
  padding: 9px 13px 9px 10px;
  border-color: var(--sgrm-line);
  border-radius: 24px;
  background: var(--sgrm-surface);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(28px) saturate(1.25);
}

.sgrm-play {
  width: 56px;
  height: 56px;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--sg-radio-primary) 32%, transparent);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.sgrm-play:hover {
  filter: brightness(1.09);
  transform: scale(1.035);
}

.sgrm-play .fi {
  font-size: 23px;
}

.sgrm-player-meta h3 {
  font-size: 0.88rem;
  font-weight: 650;
  color: #fff;
      padding: 0;
}

.sgrm-player-meta span {
  color: var(--sgrm-muted);
  font-size: 0.72rem;
}

.sgrm-volume {
  height: 3px;
}

.sgrm-ads {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.sgrm-ad-slide img {
  border-radius: 15px;
}

.sgrm-social {
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--sgrm-line);
  border-radius: 19px;
  background: rgba(7, 11, 19, 0.52);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.sgrm-social a {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 13px;
  background: transparent;
}

.sgrm-social .fi {
  font-size: 18px;
}

.sgrm-social a:hover,
.sgrm-social a:focus-visible {
  background: var(--sg-radio-primary);
}

.sgrm-footer {
  font-size: 0.75rem;
}

.sgrm-flaticon-credit {
  display: block;
  width: max-content;
  margin: 5px auto 0;
  color: rgba(255, 255, 255, 0.38) !important;
  font-size: 0.65rem;
  text-decoration: none;
}

.sgrm-drawer {
  width: min(342px, 90vw);
  border-right: 1px solid var(--sgrm-line);
  background: rgba(6, 10, 18, 0.94);
  backdrop-filter: blur(30px) saturate(1.2);
  transform: translate3d(-103%, 0, 0);
  transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.sgrm-menu-open .sgrm-drawer {
  transform: translate3d(0, 0, 0);
}

.sgrm-drawer nav a {
  margin: 1px 0;
  font-size: 0.9rem;
}

.sgrm-drawer nav .fi {
  width: 21px;
  color: var(--sg-radio-primary);
  font-size: 18px;
}

@media (max-width: 760px) {
  .sgrm-header {
    top: max(8px, env(safe-area-inset-top));
    border-radius: 19px;
  }

  .sgrm-main {
    padding-top: 28px;
  }

  .sgrm-spectrum-wrap,
  canvas#sgrm-spectrum {
    width: 450px;
    max-width: 450px;
  }

  .sgrm-disc {
    width: min(62vw, 248px);
  }

  .sgrm-social {
    bottom: max(10px, env(safe-area-inset-bottom));
    padding: 5px;
    border-radius: 18px;
  }

  .sgrm-social a {
    width: 36px;
    height: 36px;
  }
}

#sgrm-cover.is-spinning {
  animation: sgrm-spin 12s linear infinite;
  animation-play-state: running;
  will-change: transform;
}



@media (max-width: 430px) {
  .sgrm-player {
    gap: 9px;
  }

  .sgrm-play {
    width: 50px;
    height: 50px;
  }

  .sgrm-logo {
    width: 42px;
    height: 42px;
  }
}
