@font-face {
  font-family: "Gobold Bold";
  src: url("assets/gobold-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #28246f;
  --navy: #312ac7;
  --purple: #6f43ef;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-2: rgba(244, 246, 255, 0.88);
  --pink: #f044ce;
  --pink-dark: #cd2dbb;
  --yellow: #fff400;
  --white: #fff;
  --muted: #68649b;
  --line: rgba(255, 255, 255, 0.7);
  --blue: #344ff4;
  --cyan: #3adbe9;
  --radius: 20px;
  --display: "Gobold Bold", Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #3d45ef;
  font-synthesis: none;
}

body {
  margin: 0;
  min-width: 320px;
  padding-bottom: 108px;
  color: var(--ink);
  background:
    linear-gradient(rgba(54, 79, 244, 0.08), rgba(113, 67, 239, 0.18)),
    url("assets/gradient-bg.jpg") center / cover fixed,
    #536ff5;
  font-family: var(--sans);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.app-install-banner {
  display: none;
}

button,
a,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.site-shell {
  position: relative;
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.hero {
  --home-hero-image: url("assets/hero-dj-bright.webp");
  position: relative;
  min-height: 710px;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(46, 97, 229, 0.3) 0%, rgba(67, 135, 239, 0.08) 43%, rgba(129, 77, 241, 0.02) 70%),
    linear-gradient(0deg, rgba(72, 61, 221, 0.18) 0%, transparent 34%),
    var(--home-hero-image);
  background-size: cover;
  background-position: center;
}

.hero.hero-show-powerplay {
  --home-hero-image: var(--show-powerplay-light, url("assets/ksfm-neutral-light.svg"));
}

.hero.hero-show-kickstart {
  --home-hero-image: var(--show-kickstart-light, url("assets/ksfm-neutral-light.svg"));
}

.hero.hero-show-breakfast {
  --home-hero-image: var(--show-breakfast-light, url("assets/ksfm-neutral-light.svg"));
}

.hero.hero-show-rapolution {
  --home-hero-image: var(--show-rapolution-light, url("assets/ksfm-neutral-light.svg"));
}

.hero.hero-show-dj-night-mix {
  --home-hero-image: var(--show-dj-night-mix-light, url("assets/ksfm-neutral-light.svg"));
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  inset: auto -8% -12% 60%;
  height: 220px;
  transform: rotate(-6deg);
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 3px, transparent 3px 10px);
  opacity: 0.18;
  filter: blur(0.5px);
}

.hero-grain {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.topbar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 18px 30px 12px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  font-family: var(--display);
  font-size: 35px;
  font-weight: 700;
  line-height: 0.76;
  letter-spacing: -1.5px;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.1);
}

.brand-logo-link {
  display: block;
  width: 63px;
  margin: -9px 0 -10px;
  transform: translateY(10px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 9px 16px rgba(41, 41, 179, 0.28));
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(19px, 2.1vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding: 17px 0 14px;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 2px 14px rgba(38, 43, 175, 0.3);
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: white;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: white;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 16px;
}

.pill-button,
.hero-play,
.round-play,
.menu-button,
.menu-close {
  border: 0;
  cursor: pointer;
}

.pill-button,
.hero-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.94);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 14px 32px rgba(42, 47, 178, 0.2), inset 0 1px 0 white;
  transition: transform 180ms ease, background-color 180ms ease;
}

.pill-button {
  min-height: 47px;
  padding: 0 22px;
  border-radius: 999px;
  color: #050813;
  background: var(--yellow);
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(255, 244, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pill-button svg,
.hero-play svg {
  width: 20px;
  fill: currentColor;
}

.pill-button:hover,
.hero-play:hover {
  transform: translateY(-3px);
  background: white;
  box-shadow: 0 18px 38px rgba(42, 47, 178, 0.28), inset 0 1px 0 white;
}

.pill-button:hover {
  color: #050813;
  background: #fff838;
  box-shadow: 0 18px 38px rgba(255, 244, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.menu-button {
  display: grid;
  align-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 6px;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 4px;
  border-radius: 99px;
  background: var(--white);
  box-shadow: 0 2px 9px rgba(42, 47, 178, 0.25);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(760px, 55vw);
  padding: 70px 0 84px 48px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: white;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 1.8px;
}

.eyebrow i,
.on-air-topline i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(255, 0, 122, 0.14), 0 0 16px var(--pink);
  animation: pulse 1.4s ease-in-out infinite;
}

.hero-slogan {
  display: block;
  width: min(430px, 100%);
  height: auto;
  margin: 0 0 26px;
  filter: drop-shadow(0 7px 22px rgba(41, 43, 179, 0.2));
}

.hero-play {
  min-width: 238px;
  min-height: 64px;
  padding: 0 27px;
  border-radius: 999px;
  font-size: 24px;
}

.on-air-stack {
  position: absolute;
  z-index: 4;
  right: 32px;
  top: 164px;
  width: 290px;
}

.on-air-card {
  position: relative;
  width: 100%;
  min-height: 425px;
  padding: 0 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  overflow: hidden;
  color: white;
  background: linear-gradient(145deg, rgba(115, 97, 235, 0.58), rgba(74, 100, 235, 0.44));
  box-shadow: 0 24px 70px rgba(45, 46, 177, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(1.22);
}

.hero-utilities {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-utility-button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: white;
  background: rgba(76, 75, 213, 0.45);
  box-shadow: 0 12px 28px rgba(38, 38, 151, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px) saturate(1.25);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero-utility-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.26);
}

.hero-utility-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-moon {
  fill: currentColor !important;
  stroke: none !important;
}

.theme-icon-sun,
.fullscreen-icon-compress {
  display: none;
}

html[data-theme="dark"] .theme-icon-moon,
html.is-fullscreen .fullscreen-icon-expand {
  display: none;
}

html[data-theme="dark"] .theme-icon-sun,
html.is-fullscreen .fullscreen-icon-compress {
  display: block;
}

html.is-fullscreen,
html.is-fullscreen body {
  overflow: hidden;
}

.hero:fullscreen,
.shows-hero:fullscreen,
.hero:-webkit-full-screen,
.shows-hero:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.hero:fullscreen .menu-button,
.hero:fullscreen .desktop-nav,
.shows-hero:fullscreen .menu-button,
.shows-hero:fullscreen .desktop-nav,
.hero:-webkit-full-screen .menu-button,
.hero:-webkit-full-screen .desktop-nav,
.shows-hero:-webkit-full-screen .menu-button,
.shows-hero:-webkit-full-screen .desktop-nav {
  display: none;
}

.hero:fullscreen .topbar-actions,
.shows-hero:fullscreen .topbar-actions,
.hero:-webkit-full-screen .topbar-actions,
.shows-hero:-webkit-full-screen .topbar-actions {
  grid-column: 3;
  justify-self: end;
}

.on-air-topline {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ff3048;
  font-family: var(--display);
  font-size: 13px;
}

.on-air-media {
  position: relative;
  min-height: 65px;
}

.on-air-topline span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.on-air-topline strong {
  padding: 5px 9px;
  border-radius: 7px;
  color: white;
  background: #ff3048;
  font-size: 10px;
}

.on-air-topline i {
  background: #ff3048;
  box-shadow: 0 0 0 5px rgba(255, 48, 72, 0.16), 0 0 16px rgba(255, 48, 72, 0.9);
}

.now-playing-cover {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin: 0 0 16px;
  border: 0;
  border-radius: 21px 21px 0 0;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(43, 36, 156, 0.24);
}

.now-playing-cover[hidden] {
  display: none;
}

.small-label {
  margin: 0 22px 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.now-playing {
  margin: 0 22px;
}

.on-air-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.04;
  letter-spacing: 0.5px;
  overflow-wrap: anywhere;
}

.now-playing-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.now-playing-artist {
  min-height: 0;
}

.on-air-description {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.4;
}

.home-now-playing-card {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  height: 102px;
  min-height: 102px;
  padding: 0;
  cursor: pointer;
}

.home-now-playing-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.home-on-air-stack {
  top: auto;
  bottom: 80px;
  width: 600px;
}

.home-now-playing-art {
  position: relative;
  isolation: isolate;
  width: 102px;
  height: 102px;
  overflow: hidden;
  background:
    url("assets/ksfm-logo-white.png") center / 62px auto no-repeat,
    linear-gradient(145deg, #3f69f5, #a23fdf);
}

.home-now-playing-cover {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: 1;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.home-now-playing-cover.now-playing-cover-transition {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.home-now-playing-copy {
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
  margin: 0;
  padding: 10px 14px;
  align-content: start;
}

.home-now-playing-context {
  position: absolute;
  right: 0;
  bottom: calc(100% + 5px);
  left: 116px;
  overflow: hidden;
  padding-top: 8px;
  margin: 0;
  color: white;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0.55px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-now-playing-live-dot {
  position: absolute;
  left: 98px;
  bottom: calc(100% + 16.5px);
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3048;
  box-shadow: 0 0 0 5px rgba(255, 48, 72, 0.16), 0 0 16px rgba(255, 48, 72, 0.9);
  animation: pulse 1.4s ease-in-out infinite;
}

.on-air-card .home-now-playing-title {
  display: block;
  overflow: hidden;
  margin: 0;
  font-family: var(--display);
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-now-playing-title-track {
  display: flex;
  width: max-content;
  align-items: baseline;
}

.home-now-playing-title-primary,
.home-now-playing-title-copy {
  display: inline-block;
  flex: 0 0 auto;
  white-space: nowrap;
}

.home-now-playing-title-copy {
  display: none;
}

.home-now-playing-title.is-scrolling .home-now-playing-title-track {
  gap: 32px;
  animation: nowPlayingTitleMarquee var(--marquee-duration, 10s) linear infinite;
}

.home-now-playing-title.is-scrolling .home-now-playing-title-copy {
  display: inline-block;
}

.home-now-playing-copy .on-air-description {
  overflow: hidden;
  margin-top: 10px;
  font-size: 20px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-player {
  position: fixed;
  z-index: 90;
  right: 50%;
  bottom: 22px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 85px;
  align-items: center;
  gap: 14px;
  width: min(460px, calc(100vw - 32px));
  min-height: 76px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(41, 39, 157, 0.28), inset 0 1px 0 white;
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  backdrop-filter: blur(24px) saturate(1.25);
  transform: translateX(50%);
}

.floating-player audio {
  display: none;
}

.floating-track {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.floating-track strong,
.floating-track span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-track strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.35px;
}

.floating-track span {
  color: var(--muted);
  font-size: 11px;
}

.round-play {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  color: white;
  background: linear-gradient(105deg, #7449ef, #d735d0);
  box-shadow: 0 9px 24px rgba(118, 47, 218, 0.34);
}

.round-play svg {
  width: 21px;
  fill: currentColor;
}

.round-play .icon-pause,
body.is-playing .round-play .icon-play {
  display: none;
}

body.is-playing .round-play .icon-pause {
  display: block;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 38px;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 2%, black 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 2%, black 95%, transparent);
}

.waveform span {
  flex: 0 0 2px;
  width: 2px;
  height: calc(var(--h) * 1%);
  min-height: 4px;
  border-radius: 99px;
  background: linear-gradient(0deg, #754bff, var(--pink));
  transform-origin: center;
  opacity: 0.86;
}

body.is-playing .waveform span {
  animation: liveWave var(--speed) ease-in-out infinite alternate;
  animation-delay: var(--delay);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.55fr 0.82fr;
  gap: 14px;
  padding: 14px 12px;
}

.panel {
  min-width: 0;
  min-height: 444px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(239, 241, 255, 0.75));
  box-shadow: 0 18px 48px rgba(49, 46, 184, 0.16), inset 0 1px 0 white;
  backdrop-filter: blur(24px) saturate(1.16);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 61px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(65, 68, 208, 0.14);
}

.section-heading h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.5px;
}

.section-heading a {
  color: #4d49c4;
  font-size: 0.875rem;
  line-height: 1.4;
}

.section-heading a:hover {
  color: var(--pink-dark);
}

.program-list {
  padding: 4px 0;
}

.program-row {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 79px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(65, 68, 208, 0.12);
}

.program-row time {
  color: var(--blue);
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.2;
}

.program-row div {
  display: flex;
  min-width: 0;
  overflow-wrap: anywhere;
  flex-direction: column;
  gap: 5px;
}

.program-row strong {
  font-size: 14px;
  text-transform: uppercase;
}

.program-row span {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.45;
}

.program-row span b,
.program-host > span,
.current-show-host p,
.show-mod {
  text-transform: uppercase;
}

.program-row.featured {
  margin: 5px;
  border: 0;
  border-radius: 9px;
  color: white;
  background: linear-gradient(100deg, #f15bd6, #e83fc4 60%, #b64af2);
  box-shadow: 0 12px 28px rgba(230, 58, 191, 0.3);
}

.program-row.featured time,
.program-row.featured span {
  color: white;
}

.program-row em {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--pink);
  background: white;
  font-family: var(--display);
  font-size: 8px;
  font-style: normal;
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 16px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 12px;
}

.shows-panel {
  padding-bottom: 15px;
}

.home-featured-tiles {
  display: flex;
  min-width: 0;
  min-height: 444px;
}

.home-featured-tiles .show-cards {
  flex: 1;
  height: auto;
  padding: 0;
}

.show-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  height: 368px;
  padding: 14px;
}

.show-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  background: #4852e9;
  box-shadow: 0 18px 30px rgba(47, 44, 178, 0.22);
}

.show-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(1.1) contrast(1.04);
  transition: transform 500ms cubic-bezier(.2,.8,.2,1), filter 500ms ease;
}

.show-card:nth-child(2) img {
  object-position: center 28%;
}

.show-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.25) contrast(1.04);
}

.instagram-tile {
  display: block;
}

.instagram-tile img,
.instagram-tile:nth-child(2) img {
  object-position: center;
}

.instagram-tile:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.instagram-tile-badge {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 12px;
  line-height: 1;
  color: white;
  background: rgba(7, 10, 31, 0.68);
  box-shadow: 0 8px 22px rgba(6, 9, 35, 0.28);
  backdrop-filter: blur(10px);
}

.show-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(40, 31, 130, 0.92), rgba(49, 62, 194, 0.08) 58%);
}

.show-card-copy {
  position: absolute;
  right: 13px;
  bottom: 15px;
  left: 13px;
}

.show-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 36px);
  line-height: 1.02;
  letter-spacing: 0.5px;
  color: white;
  text-shadow: 0 2px 5px rgba(23, 20, 86, 0.22);
}

.show-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
}

.news-panel {
  display: flex;
  flex-direction: column;
  border-color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 68, 205, 0.25), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(241, 230, 255, 0.78));
}

.news-panel .section-heading h2 {
  color: var(--blue);
}

.recent-tracks {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.recent-track {
  display: grid;
  grid-template-columns: 62px 80px minmax(0, 1fr);
  align-items: center;
  flex: 1;
  gap: 12px;
  min-height: 100px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(65, 68, 208, 0.13);
}

.recent-track:last-child {
  border-bottom: 0;
}

.recent-track time {
  color: var(--blue);
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.05;
  text-transform: uppercase;
}

.recent-track-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.recent-track-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #11132b;
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.05;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.recent-track-artist {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.recent-track-art {
  position: relative;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 7px 16px rgba(49, 46, 184, 0.18);
}

.recent-track-art > * {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.recent-track-cover,
.recent-track-cover-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 7px 16px rgba(49, 46, 184, 0.18);
}

.recent-track-cover-placeholder {
  background: linear-gradient(145deg, var(--cyan), var(--purple) 52%, var(--pink));
}

.recent-tracks-loading {
  margin: auto;
  padding: 24px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.bottom-row {
  display: grid;
  grid-template-columns: 0.95fr 1.18fr 0.95fr;
  gap: 14px;
  padding: 0 12px 14px;
}

.home-poster-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.55fr 0.82fr;
  gap: 14px;
  padding: 0 12px 14px;
}

.home-poster-card {
  position: relative;
  display: grid;
  grid-column: 1;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
}

.home-poster-stage {
  position: relative;
  align-self: start;
  width: calc(100% - 28px);
  aspect-ratio: 210 / 297;
  min-height: 0;
  margin: 0 14px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 14px;
  background: #20241f;
  box-shadow: 0 15px 32px rgba(48, 43, 176, 0.2);
}

.home-poster-slide {
  position: absolute;
  inset: 0;
}

.home-poster-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 550ms ease;
}

.home-poster-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-poster-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.home-poster-content {
  display: grid;
  grid-column: 2 / -1;
  min-width: 0;
  gap: 14px;
}

.home-poster-content > .home-promo-row {
  padding: 0;
}

.home-poster-content > .home-program-highlights {
  margin: 0;
}

.home-promo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 12px 14px;
}

.home-program-highlights {
  margin: 0 12px 14px;
}

.home-promo-card {
  min-width: 0;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(49, 46, 184, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home-ad-card {
  position: relative;
  color: white;
  background: #101217;
}

.home-ad-stage,
.home-ad-slide {
  position: absolute;
  inset: 0;
}

.home-ad-slide {
  display: block;
  padding: 18px 20px;
  overflow: hidden;
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 550ms ease;
}

.home-ad-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-ad-slide:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -4px;
}

.home-ad-slide-cinema,
.home-ad-slide-night-blue {
  background:
    radial-gradient(circle at 82% 46%, rgba(59, 114, 255, 0.36), transparent 36%),
    linear-gradient(135deg, #050b22, #101b49 65%, #111d62);
}

.home-ad-slide-shopping,
.home-ad-slide-black-red {
  background:
    radial-gradient(circle at 80% 40%, rgba(255, 38, 74, 0.38), transparent 38%),
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 12px),
    linear-gradient(145deg, #050507, #171014 68%, #2a080d);
}

.home-ad-slide-violet-blue {
  background:
    radial-gradient(circle at 80% 35%, rgba(244, 51, 206, 0.35), transparent 35%),
    linear-gradient(135deg, #171052, #3d28a9 62%, #1259b5);
}

.home-ad-slide.has-custom-background,
.studio-ad-preview.has-custom-background {
  background: linear-gradient(rgba(5, 7, 16, 0.28), rgba(5, 7, 16, 0.42)), var(--ad-background-image) center / cover no-repeat;
}

.home-ad-kicker {
  position: relative;
  z-index: 2;
  display: block;
  font-family: var(--display);
  font-size: 14px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.74);
}

.home-ad-brand {
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 20px;
  width: 118px;
  height: 38px;
  object-fit: contain;
  object-position: right top;
  filter: grayscale(1) brightness(0) invert(1);
}

.home-ad-brand-citypoint {
  width: 78px;
  height: 54px;
}

.home-ad-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  width: 62%;
  height: calc(100% - 12px);
}

.home-ad-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(29px, 2.45vw, 42px);
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.home-ad-copy p {
  margin: 8px 0 13px;
  font-size: 15px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.86);
}

.home-ad-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1;
  color: #141527;
  background: white;
}

.home-ad-visual {
  position: absolute;
  z-index: 1;
  right: -1%;
  bottom: -4%;
  width: 52%;
  height: 86%;
  object-fit: contain;
  object-position: right bottom;
  transition: transform 350ms ease;
}

.home-ad-visual-cinema {
  right: 1%;
  width: 44%;
  height: 84%;
}

.home-ad-slide:hover .home-ad-visual,
.home-ad-slide:focus-visible .home-ad-visual {
  transform: translateY(-3px) scale(1.025);
}

.home-poll-card {
  padding: 16px 20px 17px;
  color: white;
  background:
    radial-gradient(circle at 82% 22%, rgba(240, 68, 206, 0.42), transparent 34%),
    linear-gradient(135deg, #3154f4, #5c35e5 58%, #3729bd);
}

.home-poll-card[hidden],
.home-ad-card[hidden],
.home-poster-card[hidden] { display: none !important; }

.home-poll-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}

.home-poll-heading p,
.home-poll-heading > span {
  margin: 0;
  font-family: var(--display);
  font-size: 14px;
  line-height: 1;
}

.home-poll-heading p {
  display: flex;
  align-items: center;
  gap: 7px;
}

.home-poll-heading p span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  font-family: sans-serif;
  font-size: 8px;
  background: var(--pink);
}

.home-poll-heading > span {
  color: rgba(255, 255, 255, 0.8);
}

.home-poll-card > h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.16;
}

.home-poll-card[data-option-count="4"] > h2 {
  font-size: clamp(22px, 1.75vw, 30px);
  line-height: 1.16;
}

.home-poll-card[data-option-count="4"] .home-poll-option {
  min-height: 44px;
  padding-block: 8px;
}

.home-poll-card[data-option-count="4"] .home-poll-option-label,
.home-poll-card[data-option-count="4"] .home-poll-option-percent {
  font-size: 0.875rem;
  line-height: 1.4;
}

.home-poll-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.home-poll-options {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  gap: 6px;
}

.home-poll-option {
  --poll-percent: 0%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 6px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  cursor: pointer;
  isolation: isolate;
}

.home-poll-option::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: var(--poll-percent);
  content: "";
  background: linear-gradient(90deg, #2563eb, #9235db 55%, #e42abf);
  transform-origin: left center;
  transition: width 900ms cubic-bezier(.22, 1, .36, 1);
}

.home-poll-option {
  color: #fff;
  background-color: rgba(17, 16, 80, .12);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

@media (hover: hover) {
  .home-poll-card:not([data-results-visible]) .home-poll-option:hover {
    background-color: #9732c9;
    border-color: #fff;
  }
}

.home-poll-card:not([data-results-visible]) .home-poll-option:has(input:checked) {
  background-color: #9732c9;
  border-color: #fff;
}

.home-poll-card[data-results-visible] .home-poll-option {
  cursor: default;
}

.home-poll-card[data-results-visible] .home-poll-option::before {
  animation: pollResultFill 900ms cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes pollResultFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .home-poll-option,
  .home-poll-option::before { transition: none; }
  .home-poll-card[data-results-visible] .home-poll-option::before { animation: none; }
}

.home-poll-option:has(input:checked) {
  border-color: white;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.home-poll-option:focus-within {
  outline: 2px solid white;
  outline-offset: 2px;
}

.home-poll-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.home-poll-option-label,
.home-poll-option-percent {
  font-size: 14px;
  line-height: 1.1;
}

.home-poll-option-percent {
  margin-left: 10px;
  white-space: nowrap;
}

.home-poll-action {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-end;
  width: 168px;
}

.home-poll-action button {
  min-height: 38px;
  padding: 9px 15px;
  border: 0;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1;
  color: #282050;
  background: white;
  cursor: pointer;
}

.home-poll-action button:hover,
.home-poll-action button:focus-visible {
  background: var(--yellow);
}

.home-poll-action button:disabled {
  cursor: default;
  opacity: 0.82;
}

.home-poll-action p {
  min-height: 14px;
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.join-card,
.community-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(237, 240, 255, 0.75));
  box-shadow: 0 18px 44px rgba(49, 46, 184, 0.16), inset 0 1px 0 white;
  backdrop-filter: blur(22px) saturate(1.15);
}

.join-card h2,
.community-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1;
}

.join-card p,
.community-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.community-card {
  background:
    radial-gradient(circle at 88% 48%, rgba(242, 68, 205, 0.25), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(231, 228, 255, 0.75));
}

.community-card p {
  color: var(--pink-dark);
  font-family: var(--display);
  letter-spacing: 1px;
}

.home-partners-card {
  align-items: flex-start;
  flex-direction: column;
}

.home-social-card,
.home-advertise-card,
.home-partners-card {
  min-height: 220px;
}

.home-social-card {
  position: relative;
}

.home-social-card > div:first-child {
  position: relative;
  z-index: 1;
}

.home-social-card .socials {
  position: static;
  flex: 1 0 auto;
  width: 100%;
  height: auto;
  margin: 20px 0 0;
}

.home-advertise-card {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 22px;
  align-items: stretch;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 50%, rgba(101, 91, 238, 0.17), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(232, 231, 255, 0.77));
  box-shadow: 0 18px 44px rgba(49, 46, 184, 0.16), inset 0 1px 0 white;
  text-decoration: none;
  backdrop-filter: blur(22px) saturate(1.15);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-advertise-card:hover,
.home-advertise-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(49, 46, 184, 0.22), inset 0 1px 0 white;
}

.home-advertise-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.home-advertise-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  width: 68%;
  flex-direction: column;
}

.home-advertise-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1;
}

.home-advertise-copy p {
  margin: 18px 0 5px;
  color: var(--purple);
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 700;
  font-family: var(--sans);
  line-height: 1.1;
}

.home-advertise-copy p strong {
  color: var(--blue);
}

.home-advertise-copy p em {
  color: transparent;
  background: linear-gradient(90deg, #7652ef, #cf48df);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.home-advertise-copy > span {
  max-width: 330px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.home-advertise-copy b {
  display: flex;
  width: min(100%, 300px);
  min-height: 46px;
  margin-top: auto;
  padding: 10px 20px 8px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: white;
  border-radius: 999px;
  background: linear-gradient(90deg, #3168f3, #8a35ee);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.5px;
}

.home-advertise-copy b i {
  font: normal 26px/1 var(--sans);
}

.home-advertise-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  width: min(35%, 158px);
  height: auto;
  transform: translateY(-50%) rotate(-5deg);
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(70, 60, 220, 0.2));
  pointer-events: none;
}

.partner-logos.home-partner-logos {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.partner-logos.home-partner-logos a {
  min-height: 42px;
}

.partner-logos.home-partner-logos img {
  max-width: 76px;
  height: 40px;
}

.join-card {
  align-items: flex-start;
  flex-direction: column;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: clamp(24px, 3vw, 42px);
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
  background: transparent;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.socials a:hover {
  color: var(--pink-dark);
  transform: translateY(-3px);
}

.socials a:focus-visible {
  border-radius: 6px;
  outline: 3px solid currentColor;
  outline-offset: 5px;
}

.socials svg,
.socials img {
  display: block;
  width: 100%;
  height: 100%;
}

.socials img { object-fit: contain; }

.home-social-card .socials {
  gap: clamp(10px, 2vw, 30px);
}

.home-social-card .socials a {
  width: 76px;
  height: 76px;
}

.shows-social-card {
  position: relative;
}

.shows-social-card > div:first-child {
  position: relative;
  z-index: 1;
}

.shows-social-card .socials {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  gap: clamp(28px, 4vw, 64px);
}

.shows-social-card .socials a {
  width: 114px;
  height: 114px;
}

.smiley {
  display: grid;
  place-items: center;
  width: 73px;
  height: 73px;
  border: 5px solid var(--blue);
  border-radius: 50%;
  transform: rotate(7deg);
}

.smiley::before {
  content: "•  •";
  position: absolute;
  margin-top: -19px;
  color: var(--blue);
  font-size: 22px;
  letter-spacing: 4px;
}

.smiley span {
  width: 39px;
  height: 20px;
  margin-top: 18px;
  border-bottom: 5px solid var(--blue);
  border-radius: 0 0 50% 50%;
}

.about {
  padding: 74px 48px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.44);
  color: white;
  background:
    radial-gradient(circle at 82% 48%, rgba(241, 68, 205, 0.58), transparent 22rem),
    radial-gradient(circle at 18% 12%, rgba(54, 226, 239, 0.46), transparent 24rem),
    linear-gradient(135deg, #345cf2, #5b55ef 55%, #944bea);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(420px, 0.84fr);
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.contact-main-grid > * {
  min-width: 0;
}

.contact-intro {
  display: grid;
  align-content: start;
}

.contact-intro > .eyebrow {
  margin: 0 0 30px;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.5px;
}

.contact-intro h2 {
  margin: 22px 0 28px;
  font-family: var(--display);
  font-size: clamp(50px, 5.7vw, 86px);
  line-height: 1.06;
  letter-spacing: -1px;
  overflow-wrap: anywhere;
}

.contact-intro h2 span {
  color: #73f3f7;
}

.contact-hotline {
  display: grid;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 9px;
  border-bottom: 4px solid var(--pink);
  font-family: var(--display);
  line-height: 1;
  letter-spacing: -1px;
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-hotline-label {
  display: flex;
  align-items: center;
  gap: 0.16em;
  font-size: clamp(28px, 3vw, 42px);
  white-space: nowrap;
}

.contact-hotline-label svg {
  width: 0.72em;
  height: 0.72em;
  flex: 0 0 auto;
  color: white;
}

.contact-hotline > strong {
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 700;
  white-space: nowrap;
}

.contact-hotline:hover,
.contact-hotline:focus-visible {
  color: #73f3f7;
  border-color: #73f3f7;
}

.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 38px);
}

.contact-action {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.contact-action-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  background: rgba(110, 216, 255, 0.25);
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-action:hover .contact-action-icon,
.contact-action:focus-visible .contact-action-icon {
  transform: translateY(-2px);
  background: rgba(240, 65, 205, 0.72);
}

.contact-action-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-action > span:last-child {
  display: grid;
  gap: 3px;
}

.contact-action strong {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 1.3px;
}

.contact-action small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.studio-message-form {
  display: grid;
  gap: 9px;
  width: 100%;
  justify-self: end;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  background: rgba(79, 77, 220, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.studio-message-form h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.08;
  letter-spacing: 0.3px;
}

.studio-form-intro {
  margin: 3px 0 8px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 2px;
}

.studio-form-intro span {
  margin-left: 10px;
  color: var(--pink);
  font-size: 22px;
}

.studio-message-form label {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.7px;
}

.studio-field {
  position: relative;
}

.studio-field > svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 17px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  fill: none;
  stroke: #4164e8;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.studio-message-form input,
.studio-message-form textarea,
.contact-newsletter input {
  width: 100%;
  padding: 14px 16px 14px 52px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.88);
  font: 16px/1.5 var(--sans);
  box-shadow: 0 8px 24px rgba(45, 36, 140, 0.12);
}

.studio-message-form input {
  min-height: 50px;
}

.studio-message-form textarea {
  min-height: 130px;
  resize: vertical;
}

.studio-textarea-field > svg {
  top: 18px;
  transform: none;
}

.studio-message-form input:focus,
.studio-message-form textarea:focus,
.contact-newsletter input:focus {
  border-color: #73f3f7;
  box-shadow: 0 0 0 3px rgba(115, 243, 247, 0.28);
}

.studio-message-form button {
  display: flex;
  min-height: 50px;
  margin-top: 4px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  color: var(--blue);
  background: white;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.studio-message-form button:hover,
.studio-message-form button:focus-visible {
  color: white;
  background: var(--pink);
  transform: translateY(-2px);
}

.studio-message-status {
  min-height: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.4;
}

.studio-form-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.studio-message-form button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.contact-newsletter {
  display: grid;
  grid-template-columns: 110px minmax(250px, 0.52fr) minmax(440px, 1fr);
  gap: clamp(24px, 3vw, 50px);
  align-items: center;
  margin-top: 38px;
  padding: 22px 30px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  background: rgba(70, 72, 210, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.newsletter-icon {
  display: grid;
  place-items: center;
  color: white;
}

.newsletter-icon svg {
  width: 76px;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(240, 65, 205, 0.65));
}

.newsletter-title {
  display: grid;
  gap: 4px;
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
}

.newsletter-title span,
.newsletter-signup > label {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 2.4px;
}

.newsletter-title strong {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.95;
}

.newsletter-signup {
  display: grid;
  gap: 8px;
}

.newsletter-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
}

.newsletter-controls .studio-field > svg {
  stroke: #4164e8;
}

.contact-newsletter input {
  min-height: 50px;
}

.contact-newsletter button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: var(--blue);
  background: white;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.contact-newsletter button:hover,
.contact-newsletter button:focus-visible {
  color: white;
  background: var(--pink);
  transform: translateY(-2px);
}

.newsletter-signup small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.newsletter-status {
  min-height: 0;
  margin: 0;
  font-size: 12px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 120px;
  padding: 24px 48px;
  color: var(--ink);
  background: rgba(249, 249, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.65);
}

footer p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

footer > div {
  grid-column: 3;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  color: var(--navy);
  font-size: 11px;
}

footer a:hover {
  color: var(--pink-dark);
}

[data-page-view][hidden] {
  display: none;
}

.legal-view {
  min-height: 100vh;
}

.legal-header {
  min-height: 92px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 221, 235, 0.78), transparent 34rem),
    radial-gradient(circle at 90% 12%, rgba(240, 68, 206, 0.72), transparent 34rem),
    linear-gradient(115deg, #315cf3, #6747ed 58%, #b22ee5);
}

.legal-content {
  padding: clamp(34px, 5vw, 72px) 48px 80px;
}

.legal-card {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 66px);
  color: var(--ink);
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  background: rgba(249, 250, 255, 0.9);
  box-shadow: 0 24px 70px rgba(38, 43, 175, 0.2);
  backdrop-filter: blur(22px);
}

.legal-kicker,
.legal-card h1,
.legal-card h2 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}

.legal-kicker {
  margin: 0 0 8px;
  color: var(--pink-dark);
  font-size: 17px;
  letter-spacing: 1.4px;
}

.legal-card h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(54px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -1px;
}

.legal-updated {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-card section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(52, 79, 244, 0.18);
}

.legal-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.legal-card p,
.legal-card address {
  margin: 0;
  max-width: 88ch;
  font-size: 16px;
  font-style: normal;
  line-height: 1.72;
}

.legal-card p + p {
  margin-top: 14px;
}

.legal-card a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-card a:hover {
  color: var(--pink-dark);
}

.legal-card code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(52, 79, 244, 0.09);
  font-size: 0.91em;
  overflow-wrap: anywhere;
}

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

.shows-view {
  min-height: 100vh;
}

.shows-hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(42, 117, 229, 0.05), rgba(82, 70, 225, 0.03) 46%, rgba(106, 45, 206, 0.08)),
    var(--shows-hero-light, url("assets/ksfm-neutral-light.svg")) center / cover no-repeat;
}

.shows-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(22, 103, 222, 0.08), transparent 58%);
}

.shows-topbar {
  grid-template-columns: 1fr auto 1fr;
}

.shows-topbar .topbar-actions {
  justify-self: end;
}

.shows-hero-copy {
  position: absolute;
  z-index: 2;
  bottom: 72px;
  left: 58px;
  width: min(520px, 45vw);
}

.shows-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 2px;
}

.shows-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(240, 68, 206, 0.18), 0 0 18px var(--pink);
}

.shows-hero-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(92px, 10vw, 150px);
  line-height: 1.02;
  letter-spacing: -3px;
  text-shadow: 0 10px 30px rgba(43, 45, 178, 0.26);
}

.shows-content {
  display: grid;
  gap: 14px;
  padding: 14px 12px 22px;
}

.shows-page-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(239, 241, 255, 0.76));
  box-shadow: 0 18px 48px rgba(49, 46, 184, 0.16), inset 0 1px 0 white;
  backdrop-filter: blur(24px) saturate(1.16);
}

.shows-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 12px;
}

.shows-section-heading h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.4px;
}

.shows-section-heading span {
  color: var(--blue);
  font-size: 11px;
}

.show-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 14px 16px;
}

.show-feature-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: #4a51e9;
  box-shadow: 0 16px 34px rgba(47, 44, 178, 0.22);
}

.show-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(36, 29, 123, 0.94), rgba(52, 58, 185, 0.03) 60%);
}

.show-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 420ms ease;
}

.show-feature-card:hover img {
  transform: scale(1.04);
}

.show-feature-card:nth-child(3) img {
  object-position: 62% 35%;
}

.show-feature-card[data-show-title="POWERPLAY"] img {
  object-position: 76% center;
}

.show-feature-card[data-show-title="KICKSTART"] img {
  object-position: 76% center;
}

.show-feature-card[data-show-title="BREAKFAST"] img {
  object-position: 76% center;
}

.show-feature-card[data-show-title="RAPOLUTION"] img {
  object-position: 76% center;
}

.show-feature-card[data-show-title="DJ NIGHT MIX"] img {
  object-position: 72% center;
}

.show-live-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  border-radius: 7px;
  color: white;
  background: var(--pink);
  font-family: var(--display);
  font-size: 10px;
}

.show-mod {
  display: inline-block;
  margin-top: 5px;
  color: #72edf5;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.5px;
}

.shows-lower-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shows-advertise-card {
  min-height: 250px;
}

.shows-lower-grid .shows-social-card .socials {
  gap: clamp(16px, 2vw, 30px);
}

.shows-lower-grid .shows-social-card .socials a {
  width: clamp(58px, 5vw, 76px);
  height: clamp(58px, 5vw, 76px);
}

.hosts-panel,
.social-panel {
  min-height: 250px;
}

.hosts-panel > p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--blue);
  font-size: 12px;
}

.host-faces {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 22px;
}

.hosts-panel .host-faces:first-of-type {
  padding-bottom: 14px;
}

.host-category-title {
  margin: 0;
  padding: 0 20px 9px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.7px;
}

.dj-faces {
  padding-bottom: 24px;
}

.host-faces img {
  width: 72px;
  height: 72px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  box-shadow: 0 8px 20px rgba(49, 46, 184, 0.2);
}

.gregor-avatar {
  object-position: 78% 18% !important;
}

.chaiizz-avatar {
  object-position: 78% 16% !important;
}

.host-face-link {
  display: block;
  border-radius: 50%;
  transition: transform 180ms ease, filter 180ms ease;
}

.host-face-link:hover,
.host-face-link:focus-visible {
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.06);
}

.host-face-link img {
  display: block;
}

.social-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 14px 16px;
}

.social-channel {
  display: flex;
  min-height: 155px;
  padding: 16px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  color: white;
  box-shadow: 0 14px 30px rgba(47, 44, 178, 0.18);
  transition: transform 180ms ease;
}

.social-channel:hover {
  transform: translateY(-3px);
}

.social-channel.instagram {
  background: linear-gradient(145deg, #fb4bc5, #7047e8);
}

.social-channel.tiktok {
  background: linear-gradient(145deg, #25268a, #10143e);
}

.social-channel.twitch {
  background: linear-gradient(145deg, #8159f4, #a646ed);
}

.social-channel b {
  margin: 0 0 auto;
  font-size: 42px;
  line-height: 1;
}

.social-channel strong {
  font-family: var(--display);
  font-size: 18px;
}

.social-channel span {
  margin-top: 4px;
  font-size: 10px;
}

.partner-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 105px;
  padding: 18px 22px;
}

.partner-strip h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1;
}

.partner-strip p {
  margin: 5px 0 0;
  color: var(--blue);
  font-size: 10px;
}

.partner-logos {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: clamp(18px, 3vw, 48px);
  flex: 1;
  color: rgba(49, 42, 199, 0.72);
}

.partner-logos a {
  display: grid;
  min-height: 68px;
  place-items: center;
  border-radius: 10px;
  transition: transform 180ms ease, filter 180ms ease;
}

.partner-logos a:hover,
.partner-logos a:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.12);
}

.partner-logos a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.partner-logos img {
  display: block;
  width: 100%;
  max-width: 165px;
  height: 62px;
  object-fit: contain;
}

.program-view {
  min-height: 100vh;
}

.program-hero {
  position: relative;
  min-height: 710px;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(39, 102, 226, 0.11), rgba(81, 68, 225, 0.01) 52%, rgba(114, 42, 202, 0.06)),
    var(--program-hero-light, url("assets/ksfm-neutral-light.svg")) center / cover no-repeat;
}

.program-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(32, 91, 209, 0.12), transparent 56%);
}

.program-hero-copy {
  width: min(700px, 52vw);
}

.program-hero-copy h1 {
  font-size: clamp(76px, 8.8vw, 132px);
}

.program-page-content {
  display: grid;
  gap: 14px;
  padding: 14px 12px 22px;
}

.program-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.72fr);
  gap: 14px;
}

.program-schedule {
  min-height: 500px;
}

.program-day-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(83, 85, 206, 0.15);
}

.program-day-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 20px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.28);
  font-family: var(--display);
  font-size: 13px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.program-day-tabs button:hover {
  transform: translateY(-1px);
}

.program-day-tabs button.active {
  color: white;
  background: linear-gradient(105deg, #7449ef, #d735d0);
  box-shadow: 0 8px 22px rgba(118, 47, 218, 0.26);
}

.program-schedule-row {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(220px, 1fr) minmax(150px, 0.5fr);
  align-items: center;
  gap: 16px;
  min-height: 70px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(83, 85, 206, 0.14);
}

.program-schedule-row:last-child {
  border-bottom: 0;
}

.program-schedule-row > time {
  color: var(--blue);
  font-family: var(--display);
  font-size: 15px;
}

.program-show-copy,
.program-host {
  display: flex;
  min-width: 0;
}

.program-show-copy {
  flex-direction: column;
  gap: 4px;
}

.program-show-copy strong {
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
}

.program-show-copy span,
.program-host > span {
  color: var(--muted);
  font-size: 11px;
}

.program-host {
  align-items: center;
  gap: 10px;
}

.program-host i,
.program-host-avatar,
.current-show-host-avatar,
.current-show-host-avatars > i {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, #24cfe6, #7047ed 58%, #ef3fca);
  box-shadow: 0 7px 18px rgba(47, 54, 187, 0.22);
  font-family: var(--display);
  font-size: 11px;
  font-style: normal;
}

.program-host-avatar {
  text-decoration: none;
}

.program-host-avatars,
.current-show-host-avatars {
  display: flex;
  align-items: center;
}

.program-host-avatars .program-host-avatar + .program-host-avatar {
  margin-left: -9px;
}

.program-host-avatar.nikol-avatar,
.current-show-host-avatar.nikol-avatar {
  color: transparent;
  background: url("assets/ksfm-neutral-light.svg") center / cover no-repeat;
}

.program-host-avatar.max-avatar,
.current-show-host-avatar.max-avatar {
  color: transparent;
  background: url("assets/ksfm-neutral-light.svg") center / cover no-repeat;
}

.program-host-avatar.emmi-avatar,
.current-show-host-avatar.emmi-avatar {
  color: transparent;
  background: url("assets/ksfm-neutral-light.svg") center / cover no-repeat;
}

.program-host-avatar.ruth-avatar,
.current-show-host-avatar.ruth-avatar {
  color: transparent;
  background: url("assets/ksfm-neutral-light.svg") center / cover no-repeat;
}

.program-schedule-row > em {
  position: absolute;
  top: 50%;
  right: 12px;
  padding: 7px 10px;
  transform: translateY(-50%);
  border-radius: 8px;
  color: #ff3048;
  background: white;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1;
  font-style: normal;
}

.program-schedule-row.is-live {
  margin: 0 6px;
  border-color: transparent;
  border-radius: 10px;
  color: white;
  background: linear-gradient(100deg, #f13fbd, #d23bd1 55%, #8c4be9);
  box-shadow: 0 10px 28px rgba(196, 45, 190, 0.25);
}

.program-schedule-row.is-live > time,
.program-schedule-row.is-live .program-show-copy strong,
.program-schedule-row.is-live .program-show-copy span,
.program-schedule-row.is-live .program-host > span {
  color: white;
}

.current-show-panel {
  display: flex;
  min-height: 500px;
  padding: 24px;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(235, 64, 210, 0.26), transparent 56%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(231, 237, 255, 0.76));
}

.current-show-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ff3048;
  font-family: var(--display);
  font-size: 13px;
}

.current-show-head span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.current-show-head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3048;
  box-shadow: 0 0 0 5px rgba(255, 48, 72, 0.12), 0 0 16px rgba(255, 48, 72, 0.7);
  animation: pulse 1.1s ease-in-out infinite;
}

.current-show-head strong {
  padding: 6px 9px;
  border-radius: 8px;
  color: white;
  background: #ff3048;
  font-size: 9px;
}

.current-show-time {
  margin-top: 54px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 1px;
}

.current-show-panel h2 {
  margin: 10px 0 8px;
  font-family: var(--display);
  font-size: clamp(44px, 4.7vw, 70px);
  line-height: 1.04;
  text-transform: uppercase;
}

.current-show-description {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.current-show-info {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

.current-show-info[hidden] {
  display: none;
}

.current-show-host {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 18px;
  border-top: 1px solid rgba(83, 85, 206, 0.17);
  text-decoration: none;
}

.current-show-host[hidden] {
  display: none;
}

.current-show-host p {
  margin: 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
}

.current-show-host-avatar,
.current-show-host-avatars > i {
  width: 72px;
  height: 72px;
  font-size: 22px;
  text-decoration: none;
}

.current-show-host-avatars .current-show-host-avatar + .current-show-host-avatar {
  margin-left: -16px;
}

.current-show-listen {
  align-self: flex-start;
  margin-top: 24px;
}

.program-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 14px 16px;
}

.program-highlight-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 245px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 14px;
  background: #3339b5;
  box-shadow: 0 15px 32px rgba(48, 43, 176, 0.2);
}

.program-highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 24, 103, 0.98), rgba(45, 45, 159, 0.02) 64%);
}

.program-highlight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 420ms ease;
}

.program-highlight-card[data-show-title="POWERPLAY"] img {
  object-position: 76% center;
}

.program-highlight-card[data-show-title="KICKSTART"] img {
  object-position: 76% center;
}

.program-highlight-card[data-show-title="BREAKFAST"] img {
  object-position: 76% center;
}

.program-highlight-card[data-show-title="DJ NIGHT MIX"] img {
  object-position: 72% center;
}

.program-highlight-card:hover img {
  transform: scale(1.04);
}

.program-highlight-card > div,
.show-feature-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  margin: 14px;
  padding-top: 70px;
  overflow-wrap: anywhere;
  color: white;
}

.program-highlight-card span,
.show-feature-copy > span {
  display: inline-block;
  margin-bottom: 7px;
  color: #66edf6;
  font-family: var(--display);
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.6px;
}

.show-feature-copy > span[hidden],
.program-highlight-card span[hidden],
.powerplay-fact[hidden] {
  display: none !important;
}

.program-highlight-card h3,
.show-feature-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(21px, 2.1vw, 31px);
  line-height: 1.14;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(23, 20, 86, 0.22);
}

.program-highlight-card p,
.show-feature-copy p {
  margin: 7px 0 0;
  font-size: 0.875rem;
  line-height: 1.4;
}

.show-detail-link {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
}

.show-detail-link:focus-visible {
  outline-offset: -5px;
}

.powerplay-view {
  min-height: 100vh;
}

.powerplay-hero {
  position: relative;
  min-height: 710px;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(38, 111, 222, 0.08), transparent 55%, rgba(103, 35, 193, 0.06)),
    url("assets/ksfm-neutral-light.svg") center / cover no-repeat;
}

.breakfast-hero {
  background:
    linear-gradient(90deg, rgba(38, 111, 222, 0.08), transparent 55%, rgba(103, 35, 193, 0.06)),
    url("assets/ksfm-neutral-light.svg") center / cover no-repeat;
}

[data-show-managed] .powerplay-hero {
  background:
    linear-gradient(90deg, rgba(38, 111, 222, 0.08), transparent 55%, rgba(103, 35, 193, 0.06)),
    var(--managed-show-hero-light) center / cover no-repeat;
}

html[data-theme="dark"] [data-show-managed] .powerplay-hero {
  background: var(--managed-show-hero-dark) center / cover no-repeat;
}

.werben-hero {
  background:
    linear-gradient(90deg, rgba(29, 72, 190, 0.36), rgba(52, 79, 244, 0.08) 48%, rgba(103, 35, 193, 0.08)),
    var(--booking-hero-light, url("assets/ksfm-neutral-light.svg")) center / cover no-repeat;
}

.werben-hero-copy .eyebrow { margin-bottom: 12px; color: #fff; }

.werben-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(70px, 8.8vw, 132px);
  line-height: 1;
  text-shadow: 0 5px 26px rgba(20, 34, 118, 0.34);
}

.werben-offers {
  padding: clamp(14px, 1.6vw, 24px);
}

.werben-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 24px);
}

.werben-package-card {
  display: flex;
  min-height: 390px;
  padding: clamp(22px, 2.5vw, 38px);
  flex-direction: column;
  color: #101052;
  border: 1px solid rgba(80, 91, 188, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 45px rgba(38, 48, 151, 0.1);
}

.werben-package-card-featured {
  color: white;
  border: 3px solid #ff61d7;
  background: linear-gradient(135deg, #2e4af4 0%, #7148f0 58%, #dc5bd7 100%);
  box-shadow: 0 0 0 3px #fff200, 0 22px 55px rgba(72, 42, 207, 0.3);
}

.werben-package-badge {
  align-self: flex-start;
  padding: 8px 18px 6px;
  color: #3544e8;
  border-radius: 999px;
  background: #dedcff;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.5px;
}

.werben-package-card-featured .werben-package-badge {
  color: #151351;
  background: #fff200;
}

.werben-package-card h3 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 74px);
  line-height: 0.92;
  letter-spacing: -1px;
}

.werben-package-subtitle {
  margin: 4px 0 20px;
  color: #7774b7;
  font-family: var(--display);
  font-size: clamp(16px, 1.35vw, 21px);
  letter-spacing: 0.4px;
}

.werben-package-card-featured .werben-package-subtitle {
  color: rgba(255, 255, 255, 0.88);
}

.werben-package-card ul,
.werben-request-intro ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.werben-package-card li {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 10px 0;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.3;
}

.werben-package-icon {
  width: 24px;
  flex: 0 0 24px;
  color: #293ae3;
  text-align: center;
}

.werben-package-card-featured .werben-package-icon {
  color: white;
}

.werben-package-price {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(74, 74, 164, 0.22);
}

.werben-package-card-featured .werben-package-price {
  border-color: rgba(255, 255, 255, 0.66);
}

.werben-package-price > span {
  padding-bottom: 8px;
  color: #7774b7;
  font-family: var(--display);
  font-size: 17px;
}

.werben-package-card-featured .werben-package-price > span {
  color: rgba(255, 255, 255, 0.82);
}

.werben-package-price strong {
  font-family: var(--display);
  font-size: clamp(48px, 4.8vw, 68px);
  line-height: 0.85;
  white-space: nowrap;
}

.werben-package-price small {
  margin: 0 0 2px auto;
  padding: 10px 16px 8px;
  color: #7774b7;
  border-radius: 10px;
  background: #e9e7ff;
  font-family: var(--display);
  font-size: 13px;
  white-space: nowrap;
}

.werben-package-card-featured .werben-package-price small {
  color: white;
  background: rgba(255, 255, 255, 0.18);
}

.werben-price-note {
  display: flex;
  gap: 12px;
  min-height: 44px;
  margin: 18px 0;
  padding: 8px 18px;
  align-items: center;
  justify-content: center;
  color: #27266f;
  border-radius: 14px;
  background: rgba(97, 101, 225, 0.14);
  font-size: 15px;
  text-align: center;
}

.werben-price-note span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: #5362eb;
  font-weight: 800;
}

.werben-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.03fr);
  gap: 18px;
}

.werben-request-intro,
.werben-request-form {
  min-height: 360px;
  padding: clamp(24px, 2.6vw, 38px);
  border: 1px solid rgba(80, 91, 188, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
}

.werben-request-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 48%, rgba(98, 81, 236, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.83), rgba(222, 217, 255, 0.62));
}

.werben-request-intro::after {
  content: "KSFM";
  position: absolute;
  right: -8px;
  bottom: -18px;
  color: rgba(76, 69, 222, 0.08);
  font-family: var(--display);
  font-size: 150px;
  line-height: 1;
  transform: rotate(-8deg);
  pointer-events: none;
}

.werben-request-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 6px;
  color: #3855ef;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.6px;
}

.werben-request-intro h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  color: #101052;
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.02;
}

.werben-request-intro ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  max-width: 470px;
}

.werben-request-intro li {
  display: grid;
  padding-left: 42px;
}

.werben-request-intro li::before {
  content: "◆";
  position: absolute;
  margin-left: -36px;
  color: #4f5df1;
  font-size: 24px;
}

.werben-request-intro strong {
  color: #17155e;
  font-size: 16px;
}

.werben-request-intro li span {
  color: #4d4b8a;
  font-size: 14px;
  line-height: 1.4;
}

.werben-request-form {
  display: flex;
  flex-direction: column;
  color: #17155e;
}

.werben-request-form label {
  display: block;
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.35px;
}

.werben-request-form label span {
  color: #ff3b89;
}

.werben-request-form input,
.werben-request-form select,
.werben-request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  color: #17155e;
  border: 1px solid rgba(66, 78, 186, 0.26);
  border-radius: 9px;
  outline: none;
  background: rgba(255, 255, 255, 0.82);
  font: 16px/1.4 var(--sans);
}

.werben-request-form textarea {
  min-height: 76px;
  resize: vertical;
}

.werben-request-form input:focus,
.werben-request-form select:focus,
.werben-request-form textarea:focus {
  border-color: #5062ed;
  box-shadow: 0 0 0 3px rgba(80, 98, 237, 0.16);
}

.werben-form-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 12px 0;
}

.werben-request-form button {
  min-height: 48px;
  margin-top: 12px;
  color: #151351;
  border: 0;
  border-radius: 999px;
  background: #fff200;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.werben-request-form button:hover,
.werben-request-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(60, 55, 190, 0.22);
}

.werben-form-status {
  min-height: 0;
  margin: 8px 0 0;
  color: #4d4b8a;
  font-size: 13px;
  text-align: center;
}

.nikol-profile-hero {
  background:
    linear-gradient(90deg, rgba(38, 111, 222, 0.08), transparent 55%, rgba(103, 35, 193, 0.06)),
    url("assets/ksfm-neutral-light.svg") center / cover no-repeat;
}

.powerplay-hero-copy.breakfast-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(50px, 7.2vw, 108px);
  line-height: 1.02;
}

.powerplay-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(26, 92, 207, 0.08), transparent 57%);
}

.powerplay-hero-copy {
  width: min(760px, 56vw);
}

.powerplay-hero-copy h1 {
  font-size: clamp(78px, 9.4vw, 140px);
}

.powerplay-hero-copy > p:last-child {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.7px;
}

.powerplay-content {
  padding: 14px 12px 22px;
}

.powerplay-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  gap: 14px;
}

.profile-template-view .powerplay-info-grid {
  grid-template-columns: minmax(290px, 0.9fr) minmax(420px, 1.55fr) minmax(300px, 0.8fr);
}

.powerplay-about,
.powerplay-facts {
  min-height: 390px;
}

.powerplay-about {
  padding: 42px 46px;
}

.powerplay-label,
.powerplay-fact span,
.powerplay-moderator span {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 1px;
}

.powerplay-about h2 {
  max-width: 760px;
  margin: 12px 0 24px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 74px);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.powerplay-about > p:last-child {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

.powerplay-facts {
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: space-between;
}

.powerplay-fact strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.02;
}

.profile-on-air-entry,
.profile-on-air-show,
.profile-on-air-time {
  display: block;
  color: inherit;
  font-family: inherit;
  letter-spacing: inherit;
}

.profile-on-air-show { font-size: inherit; }

.powerplay-fact strong .profile-on-air-entry,
.powerplay-fact strong .profile-on-air-show,
.powerplay-fact strong .profile-on-air-time {
  color: inherit;
  font-size: 30px;
  line-height: 1.02;
}

.profile-on-air-entry + .profile-on-air-entry {
  margin-top: 18px;
}

.powerplay-fact strong .profile-on-air-time {
  margin-top: 14px;
  white-space: nowrap;
}

/* Compact player concepts for the native KSFM app webview. */
body.app-route {
  min-height: 100dvh;
  overflow: hidden;
  background: #06071c;
}

body.app-route > .floating-player,
body.app-route > .mobile-menu,
body.app-route > .app-install-banner {
  display: none !important;
}

.app-preview-page {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  background: #08092a;
}

.app-concept {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: max(22px, env(safe-area-inset-top)) 24px max(22px, env(safe-area-inset-bottom));
  overflow: hidden;
  isolation: isolate;
}

.app-concept[hidden] { display: none; }

.app-concept::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
}

.app-concept-head {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
}

.app-concept-head img {
  width: 76px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.app-concept-head > span,
.app-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.app-concept-head i,
.app-kicker i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff315f;
  box-shadow: 0 0 14px #ff315f;
}

/* Album cover is the complete app webview; playback stays in the native player. */
.app-concept-cover {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(14px, 3.2vh, 30px);
  background: linear-gradient(160deg, #161c71 0%, #5932d9 52%, #c72bd6 100%);
}

.app-concept-cover::before {
  background:
    radial-gradient(circle at 18% 32%, rgba(0, 205, 255, 0.42), transparent 34%),
    radial-gradient(circle at 82% 66%, rgba(244, 41, 189, 0.3), transparent 33%);
}

.app-cover-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  width: 100%;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  align-content: safe center;
  justify-items: center;
  text-align: center;
}

.app-cover-stage .app-kicker { margin-bottom: clamp(12px, 2.2vh, 24px); }

.app-cover-stage .now-playing-cover {
  width: min(62vw, 330px, 36vh);
  width: min(62vw, 330px, 36dvh);
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(9, 4, 49, 0.48);
}

.app-track-copy { width: 100%; min-width: 0; max-width: 100%; margin-top: clamp(14px, 2.6vh, 28px); }
.app-track-copy p { overflow-wrap: anywhere; }
.app-title-window { width: 100%; min-width: 0; }
.app-title-window > span { display: inline-block; width: max-content; max-width: none; }
.app-title-window.is-scrolling { text-align: left; text-overflow: clip; }
.app-title-window.is-scrolling > span {
  animation: appTitleScroll var(--app-title-duration, 12s) linear infinite alternate;
}
@keyframes appTitleScroll {
  0%, 12% { transform: translateX(0); }
  88%, 100% { transform: translateX(var(--app-title-offset)); }
}
@media (prefers-reduced-motion: reduce) {
  .app-title-window.is-scrolling { overflow-x: auto; }
  .app-title-window.is-scrolling > span { animation: none; }
}

.app-track-copy h1 {
  margin: 0;
  overflow: hidden;
  font-family: var(--display);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-track-copy h1 { font-size: clamp(34px, 9vw, 54px); line-height: 1.12; }
.app-track-copy p { margin: 7px 0 0; font-size: clamp(16px, 4.2vw, 22px); opacity: 0.72; }

@media (max-height: 650px) {
  .app-concept {
    padding-top: max(14px, env(safe-area-inset-top));
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }
  .app-concept-head img { width: 62px; height: 36px; }
}

.powerplay-moderator {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(83, 85, 206, 0.17);
  text-decoration: none;
}

.powerplay-moderators {
  display: grid;
  gap: 18px;
}

.nikol-profile-facts {
  gap: 28px;
}

.profile-template-view .powerplay-about,
.profile-template-view .powerplay-facts,
.profile-template-view .nikol-quick-facts {
  min-height: 310px;
}

.profile-template-view .powerplay-about {
  padding: 32px 40px;
}

.profile-template-view .powerplay-about > .powerplay-label,
.profile-template-view .powerplay-facts .powerplay-fact:first-child > span {
  font-size: 18px;
  letter-spacing: 0.4px;
}

.profile-template-view .powerplay-about > .powerplay-label {
  margin-left: -20px;
}

.profile-template-view .powerplay-facts .powerplay-fact:first-child > span {
  display: block;
  margin-left: -8px;
}

.profile-template-view .powerplay-about > p:last-child {
  margin-top: 22px;
}

.profile-template-view .powerplay-facts {
  gap: 16px;
  padding: 24px 28px;
}

.profile-show-link {
  align-self: flex-start;
}

.powerplay-moderator img {
  width: 96px;
  height: 96px;
  border: 3px solid white;
  border-radius: 50%;
  object-fit: cover;
  object-position: 76% 23%;
  box-shadow: 0 12px 28px rgba(49, 46, 184, 0.24);
}

.powerplay-moderator div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.powerplay-moderator strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.02;
}

.dj-profile-link strong {
  font-size: 30px;
}

.rapolution-view .powerplay-fact + .powerplay-fact,
.dj-night-mix-view .powerplay-fact + .powerplay-fact {
  padding-top: 26px;
  border-top: 1px solid rgba(83, 85, 206, 0.17);
}

.nikol-profile-extras {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(360px, 1.35fr) minmax(250px, 0.82fr);
  gap: 14px;
  margin-top: 14px;
}

.nikol-profile-extras.is-without-quiz {
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
}

.nikol-people-card {
  min-height: 310px;
  overflow: hidden;
}

.nikol-extra-card {
  min-height: 310px;
  padding: 24px;
}

.nikol-extra-card > h2,
.nikol-five-head h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.35px;
}

.quick-fact-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.quick-fact-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 9px 14px 9px 9px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
}

.quick-fact-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #5257c7;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 31px;
  box-shadow: 0 8px 18px rgba(49, 46, 184, 0.08);
}

.quick-fact-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.quick-fact-zodiac {
  color: var(--pink);
}

.quick-fact-row small,
.music-love > small {
  display: block;
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 1px;
}

.quick-fact-row strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1;
}

.music-love {
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
}

.music-love > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 9px;
}

.music-love span {
  display: flex;
  min-width: 0;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 8px;
  color: var(--ink);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.music-love b {
  color: var(--pink);
  font-size: 16px;
}

.nikol-quiz {
  position: relative;
  padding-bottom: 22px;
}

.nikol-quiz.is-complete {
  padding-bottom: 82px;
}

.nikol-quiz-stage {
  position: relative;
  display: flex;
  min-height: 205px;
  margin-top: 18px;
  padding: 22px 74px;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nikol-quiz-question-view {
  display: flex;
  width: 100%;
  min-height: 161px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.nikol-quiz-progress {
  margin: 0 0 9px;
  color: #7c64bb;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.8px;
}

.nikol-quiz-question {
  max-width: 310px;
  margin: 0;
  color: #17152b;
  font-size: 20px;
  line-height: 1.08;
}

.nikol-quiz-hint {
  max-width: 270px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.nikol-quiz-actions {
  position: absolute;
  top: 50%;
  right: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.nikol-quiz-answer {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding: 0 0 5px;
  border: 0;
  border-radius: 50%;
  background: white;
  font-size: 42px;
  line-height: 1;
  box-shadow: 0 10px 25px rgba(49, 46, 184, 0.18);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nikol-quiz-answer:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 28px rgba(49, 46, 184, 0.24);
}

.nikol-quiz-answer.is-no { color: #ff3d94; }
.nikol-quiz-answer.is-yes { color: #2bd184; font-size: 28px; padding: 0; }

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

.nikol-quiz-result {
  width: 100%;
}

.nikol-quiz-result-kicker {
  margin: 0 0 5px;
  color: #7c64bb;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.8px;
}

.nikol-quiz-result h3 {
  margin: 0;
  color: #17152b;
  font-family: var(--display);
  font-size: 22px;
}

.nikol-quiz-score {
  display: grid;
  max-width: 260px;
  margin: 15px auto 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.nikol-quiz-score span {
  display: flex;
  min-height: 48px;
  padding: 7px 10px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 850;
}

.nikol-quiz-score strong {
  font-family: var(--display);
  font-size: 25px;
}

.nikol-quiz-score .is-correct strong { color: #20bf78; }
.nikol-quiz-score .is-wrong strong { color: #f43b8d; }

.nikol-quiz-repeat {
  min-height: 36px;
  padding: 0 18px;
  color: white;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(105deg, #7047f0, #ed3dcc);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.55px;
  cursor: pointer;
}

.nikol-quiz-repeat span {
  margin-left: 8px;
  font-size: 15px;
}

.nikol-quiz-repeat:hover { filter: brightness(1.06); }

.nikol-quiz-result[hidden],
.nikol-quiz-question-view[hidden],
.nikol-audio-teaser[hidden] {
  display: none;
}

.nikol-audio-teaser {
  position: absolute;
  right: 22%;
  bottom: 27px;
  left: 22%;
  display: grid;
  grid-template-columns: 38px 34px minmax(80px, 1fr) auto;
  min-height: 50px;
  padding: 6px 12px 6px 6px;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 11px 25px rgba(49, 46, 184, 0.15);
  cursor: pointer;
}

.nikol-audio-teaser img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
}

.nikol-audio-play {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  padding-left: 2px;
  color: white;
  border-radius: 50%;
  background: linear-gradient(135deg, #7047f0, #ed3dcc);
  font-size: 10px;
}

.nikol-audio-wave {
  display: flex;
  height: 26px;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nikol-audio-wave i {
  width: 2px;
  height: 35%;
  border-radius: 2px;
  background: linear-gradient(#7756f4, #ef41d0);
}

.nikol-audio-wave i:nth-child(3n + 1) { height: 75%; }
.nikol-audio-wave i:nth-child(4n + 2) { height: 100%; }

.nikol-audio-teaser small { font-size: 10px; }

.nikol-quiz-dots {
  position: absolute;
  bottom: 9px;
  left: 50%;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.nikol-quiz-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(63, 70, 203, 0.18);
}

.nikol-quiz-dots i.active { background: #4c47df; }

.nikol-instagram-row {
  display: flex;
  min-height: 42px;
  margin-top: 12px;
  padding-bottom: 10px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(78, 84, 186, 0.14);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.nikol-instagram-row b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: white;
  border-radius: 8px;
  background: linear-gradient(135deg, #7a50e9, #fa3c8e, #ffb742);
  font-size: 16px;
}

.nikol-message-form {
  display: grid;
  gap: 9px;
  margin-top: 13px;
}

.nikol-message-form label {
  color: var(--blue);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.7px;
}

.nikol-message-form input[type="email"],
.nikol-message-form textarea {
  width: 100%;
  min-height: 82px;
  padding: 11px 12px;
  resize: vertical;
  color: var(--ink);
  border: 1px solid rgba(78, 84, 186, 0.14);
  border-radius: 12px;
  outline: 0;
  background: rgba(255, 255, 255, 0.72);
  font: 16px/1.4 var(--sans);
}

.nikol-message-form input[type="email"] { min-height: 44px; margin-top: 8px; }
.nikol-message-form textarea { display: block; margin-top: 8px; }
.nikol-message-form label[hidden] { display: none !important; }
.profile-message-note { margin: 0; font: 14px/1.5 var(--sans); color: inherit; }
.nikol-instagram-row a { display: inline-flex; align-items: center; gap: 8px; }
.nikol-instagram-row svg { width: 20px; height: 20px; flex: 0 0 20px; }

.nikol-message-form input[type="email"]:focus,
.nikol-message-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(240, 68, 206, 0.12);
}

.nikol-message-form button {
  display: flex;
  min-height: 38px;
  padding: 0 14px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(105deg, #7448f0, #ef3fce);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.55px;
}

.nikol-message-form button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.35);
  opacity: 0.55;
}

.nikol-message-status {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.nikol-five-for-life {
  margin-top: 14px;
  padding: 24px;
  overflow: hidden;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 10%, rgba(140, 64, 217, 0.38), transparent 27rem),
    linear-gradient(120deg, #202868, #171a55 58%, #111634);
  box-shadow: 0 18px 48px rgba(30, 24, 112, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.17);
}

.nikol-five-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.nikol-five-head h2 { color: white; }

.nikol-five-head p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.nikol-five-head button {
  display: flex;
  min-height: 38px;
  padding: 0 17px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.7px;
  cursor: pointer;
}

.nikol-five-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.nikol-life-track {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(55, 67, 148, 0.8), rgba(29, 35, 101, 0.82));
}

.nikol-life-track img {
  display: block;
  width: 100%;
  aspect-ratio: 1.66 / 1;
  object-fit: cover;
}

.nikol-life-track > div { padding: 12px 14px 16px; }

.nikol-life-track h3 {
  margin: 0;
  color: white;
  font-size: 15px;
}

.nikol-life-track p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.45;
}

.nikol-life-track .nikol-life-artist {
  margin-top: 3px;
  color: white;
  font-size: 12px;
}

.mobile-menu {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 24px 32px;
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 68, 205, 0.5), transparent 20rem),
    radial-gradient(circle at 12% 18%, rgba(54, 226, 239, 0.45), transparent 20rem),
    linear-gradient(145deg, #3156f4, #7551ed 60%, #9c4ce9);
  transform: translateX(-102%);
  visibility: hidden;
  transition: transform 380ms cubic-bezier(.22,.8,.23,1), visibility 380ms;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-head {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu-head .brand-logo-link {
  position: absolute;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}

.menu-close {
  width: 48px;
  height: 48px;
  padding: 0;
  color: white;
  background: transparent;
  font-size: 50px;
  font-weight: 200;
  line-height: 1;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin: auto 0;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-family: "Gobold Bold", var(--display);
  color: white;
  font-size: clamp(38px, 10vw, 64px);
  line-height: 1;
}

.mobile-menu-theme {
  display: flex;
  width: 100%;
  min-height: 62px;
  padding: 10px 0;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  background: transparent;
  text-align: left;
}

.mobile-menu-theme strong {
  color: white;
  font-family: "Gobold Bold", var(--display);
  font-size: 15px;
  letter-spacing: 0.8px;
}

.mobile-menu-theme .hero-utility-button {
  flex: 0 0 auto;
}

.mobile-menu .hero-play {
  width: 100%;
  font-family: "Gobold Bold", var(--display);
}

.brand,
.desktop-nav a,
.pill-button,
.hero-play,
.eyebrow,
.on-air-topline,
.on-air-card h2,
.floating-track strong,
.section-heading h2,
.program-row time,
.program-row em,
.text-link,
.show-card h3,
.recent-track time,
.recent-track-copy strong,
.join-card h2,
.community-card h2,
.community-card p,
.contact-intro h2,
.contact-hotline,
.studio-message-form h3,
.studio-message-form label,
.studio-message-form button,
.shows-kicker,
.shows-hero-copy h1,
.shows-section-heading h2,
.show-live-badge,
.show-feature-copy h3,
.show-mod,
.social-channel strong,
.partner-strip h2,
.program-day-tabs button,
.program-schedule-row > time,
.program-host i,
.program-host-avatar,
.current-show-host-avatar,
.current-show-host-avatars > i,
.program-schedule-row > em,
.current-show-head,
.current-show-time,
.current-show-panel h2,
.program-highlight-card span,
.program-highlight-card h3,
.powerplay-hero-copy > p:last-child,
.powerplay-label,
.powerplay-fact span,
.powerplay-moderator span,
.powerplay-about h2,
.powerplay-fact strong,
.powerplay-moderator strong,
.nikol-extra-card > h2,
.nikol-five-head h2,
.quick-fact-row small,
.music-love > small,
.quick-fact-row strong,
.nikol-quiz-progress,
.nikol-quiz-result-kicker,
.nikol-quiz-result h3,
.nikol-quiz-score strong,
.nikol-quiz-repeat,
.nikol-message-form label,
.nikol-message-form button,
.nikol-five-head button,
.mobile-menu nav a,
.mobile-menu nav a span,
.mobile-menu-theme strong,
.mobile-menu .hero-play {
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  max-width: min(380px, calc(100vw - 48px));
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(42, 44, 176, 0.28);
  color: var(--navy);
  backdrop-filter: blur(18px);
  font-size: 13px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  50% { opacity: 0.45; transform: scale(0.8); }
}

@keyframes liveWave {
  from { transform: scaleY(0.35); opacity: 0.55; }
  to { transform: scaleY(1.15); opacity: 1; }
}

/* Automatic night palette: 18:00–05:59 in the visitor's local time. */
html[data-theme="dark"] {
  color-scheme: dark;
  background: #020612;
  --ink: #f6f8ff;
  --navy: #f6f8ff;
  --muted: #aeb8d4;
  --line: rgba(119, 153, 210, 0.28);
  --blue: #4f86ff;
  --cyan: #29d9f0;
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 22% 18%, rgba(16, 99, 224, 0.27), transparent 34rem),
    radial-gradient(circle at 88% 22%, rgba(105, 39, 190, 0.16), transparent 31rem),
    linear-gradient(145deg, #020714, #061226 56%, #030817);
}

html[data-theme="dark"] .hero {
  --home-hero-image: url("assets/hero-dj.webp");
  background-image: var(--home-hero-image);
  box-shadow: inset 0 -1px 0 rgba(91, 132, 205, 0.25);
}

html[data-theme="dark"] .hero.hero-show-powerplay {
  --home-hero-image: var(--show-powerplay-dark, url("assets/ksfm-neutral-dark.svg"));
}

html[data-theme="dark"] .hero.hero-show-kickstart {
  --home-hero-image: var(--show-kickstart-dark, url("assets/ksfm-neutral-dark.svg"));
}

html[data-theme="dark"] .hero.hero-show-breakfast {
  --home-hero-image: var(--show-breakfast-dark, url("assets/ksfm-neutral-dark.svg"));
}

html[data-theme="dark"] .hero.hero-show-rapolution {
  --home-hero-image: var(--show-rapolution-dark, url("assets/ksfm-neutral-dark.svg"));
}

html[data-theme="dark"] .hero.hero-show-dj-night-mix {
  --home-hero-image: var(--show-dj-night-mix-dark, url("assets/ksfm-neutral-dark.svg"));
}

html[data-theme="dark"] .hero-slogan,
html[data-theme="dark"] .brand-logo {
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5));
}

html[data-theme="dark"] .pill-button {
  color: #050813;
  background: var(--yellow);
  box-shadow: 0 14px 34px rgba(255, 244, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

html[data-theme="dark"] .pill-button:hover {
  background: #fff838;
}

html[data-theme="dark"] .on-air-card {
  border-color: rgba(133, 164, 219, 0.48);
  background: linear-gradient(145deg, rgba(3, 9, 22, 0.86), rgba(7, 19, 43, 0.78));
  box-shadow: 0 26px 75px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .hero-utility-button {
  border-color: rgba(117, 153, 214, 0.48);
  color: #f6f8ff;
  background: rgba(3, 12, 29, 0.86);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .panel,
html[data-theme="dark"] .shows-page-panel,
html[data-theme="dark"] .join-card,
html[data-theme="dark"] .community-card {
  border-color: rgba(104, 139, 198, 0.38);
  background: linear-gradient(145deg, rgba(4, 14, 32, 0.92), rgba(5, 18, 39, 0.8));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .home-promo-card {
  border-color: rgba(104, 139, 198, 0.38);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .news-panel,
html[data-theme="dark"] .community-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(122, 37, 176, 0.16), transparent 48%),
    linear-gradient(145deg, rgba(4, 14, 32, 0.94), rgba(5, 17, 37, 0.84));
}

html[data-theme="dark"] .section-heading,
html[data-theme="dark"] .program-row,
html[data-theme="dark"] .recent-track {
  border-color: rgba(103, 137, 194, 0.25);
}

html[data-theme="dark"] .section-heading h2,
html[data-theme="dark"] .section-heading a,
html[data-theme="dark"] .program-row time,
html[data-theme="dark"] .text-link,
html[data-theme="dark"] .recent-track time,
html[data-theme="dark"] .shows-section-heading h2,
html[data-theme="dark"] .shows-section-heading span,
html[data-theme="dark"] .hosts-panel > p,
html[data-theme="dark"] .partner-strip p {
  color: #5590ff;
}

html[data-theme="dark"] .partner-strip h2 {
  color: #f5f7ff;
}

html[data-theme="dark"] .program-row.featured {
  background: linear-gradient(100deg, #78184f, #551447 58%, #351457);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .show-card,
html[data-theme="dark"] .show-feature-card {
  border-color: rgba(102, 139, 205, 0.38);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
}

html[data-theme="dark"] .floating-player {
  border-color: rgba(107, 145, 209, 0.45);
  background: rgba(3, 11, 27, 0.92);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

html[data-theme="dark"] .floating-track strong,
html[data-theme="dark"] .floating-track span,
html[data-theme="dark"] .recent-track-copy strong,
html[data-theme="dark"] .join-card,
html[data-theme="dark"] .community-card {
  color: #f5f7ff;
}

html[data-theme="dark"] .floating-track span,
html[data-theme="dark"] .join-card p {
  color: #aeb8d4;
}

html[data-theme="dark"] .socials a {
  color: #78a7ff;
}

html[data-theme="dark"] .socials a:hover {
  color: #f06ad5;
}

html[data-theme="dark"] .home-advertise-card {
  color: #f5f7ff;
  border-color: rgba(107, 145, 209, 0.34);
  background:
    radial-gradient(circle at 82% 50%, rgba(121, 71, 235, 0.24), transparent 32%),
    linear-gradient(145deg, rgba(4, 15, 36, 0.94), rgba(21, 15, 67, 0.88));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .home-advertise-copy > span {
  color: #aeb8d4;
}

html[data-theme="dark"] .about {
  border-color: rgba(100, 138, 198, 0.24);
  background:
    radial-gradient(circle at 82% 48%, rgba(146, 31, 139, 0.26), transparent 24rem),
    radial-gradient(circle at 18% 12%, rgba(18, 114, 197, 0.28), transparent 25rem),
    linear-gradient(135deg, #031126, #091a38 55%, #150b35);
}

html[data-theme="dark"] .studio-message-form,
html[data-theme="dark"] .contact-newsletter {
  border-color: rgba(113, 148, 210, 0.34);
  background: rgba(3, 14, 35, 0.42);
}

html[data-theme="dark"] footer {
  color: #f5f7ff;
  border-color: rgba(101, 137, 194, 0.25);
  background: rgba(2, 9, 22, 0.94);
}

html[data-theme="dark"] footer p,
html[data-theme="dark"] footer > div {
  color: #aeb8d4;
}

html[data-theme="dark"] .legal-header {
  border-color: rgba(91, 132, 205, 0.28);
  background:
    radial-gradient(circle at 18% 0%, rgba(16, 120, 198, 0.36), transparent 34rem),
    radial-gradient(circle at 90% 12%, rgba(127, 38, 170, 0.3), transparent 34rem),
    linear-gradient(115deg, #031226, #0b173a 58%, #160c35);
}

html[data-theme="dark"] .legal-card {
  color: #eef3ff;
  border-color: rgba(107, 146, 210, 0.3);
  background: rgba(4, 17, 40, 0.88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] .legal-card section {
  border-color: rgba(111, 151, 218, 0.22);
}

html[data-theme="dark"] .legal-card h1,
html[data-theme="dark"] .legal-card a {
  color: #78a6ff;
}

html[data-theme="dark"] .legal-card h2 {
  color: #f6f8ff;
}

html[data-theme="dark"] .legal-card code {
  background: rgba(97, 143, 228, 0.18);
}

html[data-theme="dark"] .shows-hero {
  background: var(--shows-hero-dark, url("assets/ksfm-neutral-dark.svg")) center / cover no-repeat;
}

html[data-theme="dark"] .program-hero {
  background: var(--program-hero-dark, url("assets/ksfm-neutral-dark.svg")) center / cover no-repeat;
}

html[data-theme="dark"] .powerplay-hero {
  background: url("assets/ksfm-neutral-dark.svg") center / cover no-repeat;
}

html[data-theme="dark"] .breakfast-hero {
  background: url("assets/ksfm-neutral-dark.svg") center / cover no-repeat;
}

html[data-theme="dark"] .werben-hero {
  background: var(--booking-hero-dark, url("assets/ksfm-neutral-dark.svg")) center / cover no-repeat;
}

html[data-theme="dark"] .werben-offers,
html[data-theme="dark"] .werben-package-card,
html[data-theme="dark"] .werben-request-intro,
html[data-theme="dark"] .werben-request-form {
  color: #eef3ff;
  border-color: rgba(107, 146, 210, 0.28);
  background-color: rgba(4, 17, 40, 0.88);
}

html[data-theme="dark"] .werben-package-card-featured {
  border-color: #ff61d7;
  background: linear-gradient(135deg, #2036c7 0%, #6536d8 58%, #b53fc3 100%);
}

html[data-theme="dark"] .werben-package-subtitle,
html[data-theme="dark"] .werben-package-price > span,
html[data-theme="dark"] .werben-request-intro li span,
html[data-theme="dark"] .werben-form-status {
  color: #b9c5e8;
}

html[data-theme="dark"] .werben-request-intro {
  background:
    radial-gradient(circle at 78% 48%, rgba(109, 76, 236, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(5, 20, 48, 0.94), rgba(25, 18, 77, 0.9));
}

html[data-theme="dark"] .werben-request-intro h3,
html[data-theme="dark"] .werben-request-intro strong,
html[data-theme="dark"] .werben-request-form {
  color: #f5f7ff;
}

html[data-theme="dark"] .studio-message-form input,
html[data-theme="dark"] .studio-message-form textarea,
html[data-theme="dark"] .contact-newsletter input:not([type="checkbox"]),
html[data-theme="dark"] .werben-request-form input,
html[data-theme="dark"] .werben-request-form select,
html[data-theme="dark"] .werben-request-form textarea {
  color: #f5f7ff;
  border-color: rgba(113, 148, 210, 0.4);
  background: rgba(3, 14, 35, 0.72);
  caret-color: #f5f7ff;
  color-scheme: dark;
}

html[data-theme="dark"] .studio-message-form input::placeholder,
html[data-theme="dark"] .studio-message-form textarea::placeholder,
html[data-theme="dark"] .contact-newsletter input::placeholder,
html[data-theme="dark"] .werben-request-form input::placeholder,
html[data-theme="dark"] .werben-request-form textarea::placeholder {
  color: #9ca9cf;
  opacity: 1;
}

html[data-theme="dark"] .studio-message-form input:-webkit-autofill,
html[data-theme="dark"] .contact-newsletter input:-webkit-autofill,
html[data-theme="dark"] .werben-request-form input:-webkit-autofill {
  -webkit-text-fill-color: #f5f7ff;
  -webkit-box-shadow: 0 0 0 1000px #08152b inset;
}

html[data-theme="dark"] .werben-price-note {
  color: #dbe3ff;
  background: rgba(69, 75, 192, 0.28);
}

html[data-theme="dark"] .nikol-profile-hero {
  background: url("assets/ksfm-neutral-dark.svg") center / cover no-repeat;
}

html[data-theme="dark"] .shows-hero::after,
html[data-theme="dark"] .program-hero::after,
html[data-theme="dark"] .powerplay-hero::after {
  background: none;
}

html[data-theme="dark"] .powerplay-about h2,
html[data-theme="dark"] .powerplay-about > p:last-child,
html[data-theme="dark"] .powerplay-fact strong,
html[data-theme="dark"] .powerplay-moderator strong {
  color: #f5f7ff;
}

html[data-theme="dark"] .powerplay-moderator {
  border-color: rgba(103, 137, 194, 0.25);
}

html[data-theme="dark"] .quick-fact-row,
html[data-theme="dark"] .music-love,
html[data-theme="dark"] .nikol-quiz-stage {
  background: rgba(16, 34, 66, 0.72);
}

html[data-theme="dark"] .quick-fact-icon,
html[data-theme="dark"] .music-love span,
html[data-theme="dark"] .nikol-audio-teaser {
  background: rgba(7, 20, 45, 0.94);
}

html[data-theme="dark"] .quick-fact-row strong,
html[data-theme="dark"] .music-love span,
html[data-theme="dark"] .nikol-quiz-question,
html[data-theme="dark"] .nikol-quiz-result h3,
html[data-theme="dark"] .nikol-instagram-row,
html[data-theme="dark"] .nikol-message-form textarea {
  color: #f5f7ff;
}

html[data-theme="dark"] .nikol-quiz-score span {
  color: #eaf0ff;
  background: rgba(7, 20, 45, 0.78);
}

html[data-theme="dark"] .quick-fact-row small,
html[data-theme="dark"] .music-love > small,
html[data-theme="dark"] .nikol-quiz-hint,
html[data-theme="dark"] .nikol-audio-teaser {
  color: #aeb8d4;
}

html[data-theme="dark"] .nikol-instagram-row,
html[data-theme="dark"] .nikol-message-form textarea {
  border-color: rgba(103, 137, 194, 0.22);
}

html[data-theme="dark"] .nikol-message-form input[type="email"],
html[data-theme="dark"] .nikol-message-form textarea {
  background: rgba(7, 20, 45, 0.88);
  color: #eef1ff;
}

html[data-theme="dark"] .nikol-message-status {
  color: #8f9dbd;
}

html[data-theme="dark"] .nikol-five-for-life {
  border-color: rgba(104, 139, 198, 0.38);
  background:
    radial-gradient(circle at 92% 5%, rgba(124, 32, 157, 0.31), transparent 27rem),
    linear-gradient(125deg, #020b1d, #07152e 55%, #160b35);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .nikol-life-track {
  border-color: rgba(103, 137, 194, 0.32);
  background: linear-gradient(145deg, rgba(12, 30, 66, 0.96), rgba(18, 15, 58, 0.92));
}

html[data-theme="dark"] .program-day-tabs {
  border-color: rgba(103, 137, 194, 0.25);
}

html[data-theme="dark"] .program-day-tabs button {
  color: #75a2ff;
  background: rgba(24, 48, 88, 0.38);
}

html[data-theme="dark"] .program-day-tabs button.active {
  color: white;
  background: linear-gradient(105deg, #5531ba, #9e177d);
}

html[data-theme="dark"] .program-schedule-row,
html[data-theme="dark"] .current-show-host {
  border-color: rgba(103, 137, 194, 0.25);
}

html[data-theme="dark"] .program-schedule-row > time,
html[data-theme="dark"] .current-show-time {
  color: #5590ff;
}

html[data-theme="dark"] .program-show-copy strong,
html[data-theme="dark"] .current-show-panel h2 {
  color: #f5f7ff;
}

html[data-theme="dark"] .program-show-copy span,
html[data-theme="dark"] .program-host > span,
html[data-theme="dark"] .current-show-description,
html[data-theme="dark"] .current-show-host p {
  color: #aeb8d4;
}

html[data-theme="dark"] .program-host-avatar.nikol-avatar,
html[data-theme="dark"] .current-show-host-avatar.nikol-avatar {
  background-image: url("assets/ksfm-neutral-dark.svg");
}

html[data-theme="dark"] .program-host-avatar.max-avatar,
html[data-theme="dark"] .current-show-host-avatar.max-avatar {
  background-image: url("assets/ksfm-neutral-dark.svg");
}

html[data-theme="dark"] .program-host-avatar.emmi-avatar,
html[data-theme="dark"] .current-show-host-avatar.emmi-avatar {
  background-image: url("assets/ksfm-neutral-dark.svg");
}

html[data-theme="dark"] .program-host-avatar.ruth-avatar,
html[data-theme="dark"] .current-show-host-avatar.ruth-avatar {
  background-image: url("assets/ksfm-neutral-dark.svg");
}

html[data-theme="dark"] .program-schedule-row.is-live {
  background: linear-gradient(100deg, #78184f, #551447 58%, #351457);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .current-show-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(133, 28, 131, 0.22), transparent 52%),
    linear-gradient(145deg, rgba(4, 14, 32, 0.94), rgba(5, 17, 37, 0.84));
}

html[data-theme="dark"] .program-highlight-card {
  border-color: rgba(102, 139, 205, 0.38);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
}

html[data-theme="dark"] .partner-logos {
  color: rgba(145, 174, 224, 0.76);
}

html[data-theme="dark"] .partner-logos img {
  filter: brightness(1.5) saturate(0.72);
}

html[data-theme="dark"] .mobile-menu {
  background:
    radial-gradient(circle at 80% 20%, rgba(156, 31, 141, 0.27), transparent 22rem),
    radial-gradient(circle at 12% 18%, rgba(18, 115, 200, 0.3), transparent 22rem),
    linear-gradient(145deg, #020714, #081a38 60%, #170b35);
}

html[data-theme="dark"] .toast {
  color: #f5f7ff;
  border-color: rgba(108, 146, 210, 0.4);
  background: rgba(3, 11, 27, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

@media (prefers-reduced-motion: no-preference) {
  body,
  .hero,
  .panel,
  .shows-page-panel,
  .join-card,
  .community-card,
  .floating-player,
  footer {
    transition: color 320ms ease, background 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .hero-copy {
    width: 62vw;
    padding-left: 34px;
  }

  .on-air-stack {
    right: 20px;
    width: 260px;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 940px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .topbar > .brand-logo-link {
    justify-self: center;
  }

  .topbar-actions {
    position: absolute;
    top: 18px;
    left: 18px;
    justify-self: auto;
  }

  .menu-button {
    padding-right: 8px;
    padding-left: 8px;
  }

  .menu-button span {
    height: 2px;
    box-shadow: 0 1px 5px rgba(42, 47, 178, 0.22);
  }

  .desktop-nav {
    display: none;
  }

  .pill-button {
    display: none;
  }

  .hero-utilities {
    display: none;
  }

  .hero {
    min-height: 690px;
    background-position: 56% center;
  }

  .hero-copy {
    width: 67vw;
    padding-top: 84px;
  }

  .on-air-stack {
    display: none;
  }

  .content-grid {
    grid-template-columns: 0.78fr 1.45fr;
  }

  .news-panel {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .bottom-row {
    grid-template-columns: 1fr;
  }

  .home-promo-row {
    grid-template-columns: 1fr;
  }

  .home-poster-layout {
    grid-template-columns: 1fr;
  }

  .home-poster-card,
  .home-poster-content {
    grid-column: 1;
  }

  .home-poster-stage {
    aspect-ratio: 210 / 297;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-newsletter {
    grid-template-columns: 90px minmax(220px, 0.45fr) minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 88px;
  }

  .legal-header {
    min-height: 78px;
  }

  .legal-content {
    padding: 10px 10px 18px;
  }

  .legal-card {
    padding: 26px 20px 34px;
    border-radius: 24px;
  }

  .legal-kicker {
    font-size: 14px;
  }

  .legal-card h1 {
    font-size: clamp(48px, 17vw, 70px);
  }

  .legal-card section {
    padding-top: 22px;
    margin-top: 22px;
  }

  .legal-card h2 {
    font-size: 25px;
  }

  .legal-card p,
  .legal-card address {
    font-size: 15px;
    line-height: 1.66;
  }

  body.android-app-banner-visible {
    padding-top: calc(70px + env(safe-area-inset-top));
  }

  .app-install-banner.is-visible {
    position: fixed;
    z-index: 95;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    min-height: calc(70px + env(safe-area-inset-top));
    padding: calc(10px + env(safe-area-inset-top)) 12px 10px 38px;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    border-bottom: 1px solid rgba(52, 79, 244, 0.16);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 24px rgba(35, 31, 126, 0.18);
    backdrop-filter: blur(14px);
  }

  .app-install-banner[hidden] {
    display: none;
  }

  .app-install-close {
    position: absolute;
    left: 7px;
    bottom: 17px;
    width: 27px;
    height: 34px;
    padding: 0;
    color: #8583a8;
    border: 0;
    background: transparent;
    font: 24px/1 var(--sans);
    cursor: pointer;
  }

  .app-install-icon {
    width: 42px;
    height: 42px;
    padding: 5px;
    border-radius: 11px;
    background: linear-gradient(145deg, #405cf6, #a73de1);
    object-fit: contain;
  }

  .app-install-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
  }

  .app-install-copy strong {
    overflow: hidden;
    color: var(--ink);
    font-family: var(--display);
    font-size: 16px;
    line-height: 1.05;
    letter-spacing: 0.4px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .app-install-copy span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.2;
  }

  .app-install-link {
    min-width: 78px;
    padding: 9px 11px;
    color: white;
    border-radius: 999px;
    background: var(--blue);
    font-family: var(--display);
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.35px;
    text-align: center;
    text-decoration: none;
  }

  .site-shell {
    width: 100%;
  }

  .topbar {
    min-height: 76px;
    padding: 16px 18px;
  }

  .brand {
    font-size: 30px;
  }

  .brand-logo-link {
    width: 49px;
    margin: -7px 0 -8px;
    transform: translateY(8px);
  }

  [data-page-view="home"] > .hero .topbar > .brand-logo-link {
    visibility: hidden;
    pointer-events: none;
  }

  .hero {
    min-height: 700px;
    background-image:
      linear-gradient(0deg, rgba(53, 67, 213, 0.82) 0%, rgba(72, 91, 222, 0.2) 59%, rgba(80, 94, 231, 0.02) 100%),
      var(--home-hero-image);
    background-size: auto 100%;
    background-position: 61% center;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    position: absolute;
    right: 18px;
    bottom: 47px;
    left: 18px;
    width: auto;
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 13px;
  }

  .hero-play {
    min-width: 210px;
    min-height: 56px;
    font-size: 21px;
  }

  .floating-player {
    bottom: 10px;
    grid-template-columns: 44px minmax(0, 1fr) 42px;
    gap: 10px;
    width: min(460px, calc(100vw - 20px));
    min-height: 68px;
    padding: 9px 12px;
    border-radius: 20px;
  }

  .floating-player .round-play {
    width: 42px;
    height: 42px;
  }

  .floating-track strong {
    font-size: 14px;
  }

  .floating-track span {
    font-size: 10px;
  }

  .floating-player .waveform {
    height: 32px;
    gap: 2px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .panel {
    min-height: auto;
  }

  .program-panel {
    order: 2;
  }

  .shows-panel {
    order: 1;
  }

  .home-featured-tiles {
    order: 1;
    min-height: 0;
  }

  .news-panel {
    order: 3;
  }

  .show-cards {
    grid-auto-columns: 75%;
    grid-template-columns: none;
    grid-auto-flow: column;
    height: 420px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }

  .home-featured-tiles .show-cards {
    flex: none;
    width: 100%;
    height: 420px;
  }

  .show-card {
    scroll-snap-align: start;
  }

  .show-card h3 {
    font-size: 39px;
  }

  .bottom-row {
    gap: 10px;
    padding: 0 10px 10px;
  }

  .home-promo-row {
    gap: 10px;
    padding: 0 10px 10px;
  }

  .home-poster-layout {
    gap: 10px;
    padding: 0 10px 10px;
  }

  .home-poster-content {
    gap: 10px;
  }

  .home-program-highlights {
    margin: 0 10px 10px;
  }

  .home-promo-card {
    min-height: 220px;
  }

  .home-ad-copy {
    width: 68%;
  }

  .home-ad-copy h2 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .home-ad-copy p {
    max-width: 190px;
    font-size: 14px;
  }

  .home-ad-visual {
    right: -5%;
    width: 54%;
    height: 76%;
  }

  .home-ad-visual-cinema {
    right: 0;
    width: 43%;
    height: 74%;
  }

  .home-poll-card {
    min-height: 0;
    padding: 18px;
  }

  .home-poll-card > h2 {
    font-size: 29px;
  }

  .home-poll-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-poll-action {
    width: 100%;
  }

  .home-poll-action p {
    min-height: 0;
  }

  .join-card,
  .community-card {
    min-height: 150px;
    padding: 20px;
  }

  .join-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .socials {
    width: 100%;
    justify-content: center;
    gap: 30px;
  }

  .home-social-card .socials {
    gap: 10px;
  }

  .home-social-card .socials a,
  .shows-social-card .socials a {
    width: 68px;
    height: 68px;
  }

  .shows-social-card {
    min-height: 220px;
  }

  .shows-social-card .socials {
    inset: 72px 0 0;
    height: auto;
    gap: 12px;
  }

  .about {
    padding: 58px 22px 34px;
  }

  .contact-intro h2 {
    font-size: clamp(40px, 12vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  .contact-main-grid {
    gap: 32px;
  }

  .contact-intro > .eyebrow {
    margin-bottom: 24px;
  }

  .contact-hotline {
    width: 100%;
  }

  .contact-hotline > strong {
    font-size: clamp(48px, 14.8vw, 68px);
  }

  .contact-hotline-label {
    gap: 0.12em;
    font-size: clamp(22px, 6.4vw, 29px);
    letter-spacing: 0;
  }

  .contact-action-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .studio-message-form {
    justify-self: stretch;
    padding: 22px 18px;
  }

  .studio-message-form h3 {
    font-size: clamp(21px, 6.4vw, 25px);
    line-height: 1.08;
  }

  .studio-form-intro {
    line-height: 1.5;
  }

  .contact-newsletter {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding: 22px 18px;
  }

  .newsletter-icon svg {
    width: 58px;
  }

  .newsletter-title {
    padding-right: 0;
    border-right: 0;
  }

  .newsletter-signup {
    grid-column: 1 / -1;
  }

  .newsletter-controls {
    grid-template-columns: 1fr;
  }

  .contact-newsletter button {
    min-height: 50px;
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    padding: 30px 22px;
  }

  footer > div {
    grid-column: 1;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  footer p {
    grid-column: 1;
  }
}

@media (max-width: 940px) {
  .shows-hero {
    min-height: 690px;
    background-position: 58% center;
  }

  .shows-hero-copy {
    bottom: 55px;
    left: 32px;
    width: min(480px, 58vw);
  }

  .show-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shows-lower-grid {
    grid-template-columns: 1fr;
  }

  .program-hero {
    min-height: 690px;
    background-position: 58% center;
  }

  .program-hero-copy {
    width: min(570px, 58vw);
  }

  .program-page-grid {
    grid-template-columns: 1fr;
  }

  .current-show-panel {
    min-height: 330px;
  }

  .program-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .powerplay-hero {
    min-height: 690px;
    background-position: 58% center;
  }

  .powerplay-hero-copy {
    width: min(620px, 60vw);
  }

  .powerplay-info-grid {
    grid-template-columns: 1fr;
  }

  .profile-template-view .powerplay-info-grid {
    grid-template-columns: 1fr;
  }

  .nikol-profile-extras {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nikol-profile-extras.is-without-quiz { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .nikol-social-card {
    grid-column: 1 / -1;
  }

  .nikol-five-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .powerplay-about,
  .powerplay-facts {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .shows-hero {
    min-height: 700px;
    background-position: 64% center;
  }

  .shows-hero::after {
    background: linear-gradient(0deg, rgba(45, 70, 206, 0.78), transparent 64%);
  }

  .shows-hero-copy {
    right: 20px;
    bottom: 42px;
    left: 20px;
    width: auto;
  }

  .shows-kicker {
    font-size: 11px;
  }

  .shows-hero-copy h1 {
    font-size: clamp(78px, 27vw, 112px);
  }

  .shows-content {
    gap: 10px;
    padding: 10px 10px 18px;
  }

  .show-feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px 12px;
  }

  .show-feature-card {
    min-height: 340px;
  }

  .shows-section-heading {
    align-items: flex-start;
    padding: 16px 14px 12px;
    flex-direction: column;
    gap: 5px;
  }

  .host-faces {
    gap: 5px;
    padding: 0 14px 18px;
  }

  .hosts-panel .host-faces:first-of-type {
    padding-bottom: 12px;
  }

  .host-category-title {
    padding: 0 14px 8px;
  }

  .host-faces img {
    width: 72px;
    height: 72px;
  }

  .hosts-panel > p {
    padding: 0 14px 16px;
  }

  .social-channel-grid {
    grid-template-columns: 1fr;
    padding: 0 10px 12px;
  }

  .social-channel {
    min-height: 130px;
  }

  .partner-strip {
    align-items: flex-start;
    padding: 18px;
    flex-direction: column;
  }

  .partner-logos {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .partner-logos img {
    max-width: 72px;
    height: 44px;
  }

  .program-hero {
    min-height: 700px;
    background-size: auto 100%;
    background-position: 64% center;
  }

  .program-hero::after {
    background: linear-gradient(0deg, rgba(23, 52, 150, 0.82), transparent 64%);
  }

  .program-hero-copy {
    width: auto;
  }

  .program-hero-copy h1 {
    font-size: clamp(60px, 19vw, 86px);
    letter-spacing: -2px;
  }

  .program-page-content {
    gap: 10px;
    padding: 10px 10px 18px;
  }

  .program-day-tabs {
    gap: 4px;
    padding: 10px 8px;
  }

  .program-day-tabs button {
    min-height: 36px;
    font-size: 11px;
  }

  .program-schedule-row {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
    min-height: 76px;
    padding: 10px 12px;
  }

  .program-host {
    display: none;
  }

  .program-schedule-row > time {
    font-size: 12px;
  }

  .program-show-copy strong {
    font-size: 13px;
  }

  .program-show-copy span {
    font-size: 10px;
  }

  .current-show-panel {
    min-height: 360px;
    padding: 20px;
  }

  .program-highlight-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px 12px;
  }

  .program-highlight-card {
    min-height: 300px;
  }

  .powerplay-hero {
    min-height: 700px;
    background-size: auto 100%;
    background-position: 66% center;
  }

  .powerplay-hero::after {
    background: linear-gradient(0deg, rgba(26, 55, 154, 0.82), transparent 64%);
  }

  .powerplay-hero-copy {
    width: auto;
  }

  .powerplay-hero-copy h1 {
    font-size: clamp(58px, 18vw, 84px);
    line-height: 1.02;
    letter-spacing: -2px;
  }

  .werben-hero {
    background-position: 61% center;
    background-size: auto 100%;
  }

  .werben-hero-copy h1 {
    max-width: 310px;
    font-size: clamp(52px, 16vw, 74px);
    line-height: 1;
    letter-spacing: -1px;
  }

  .powerplay-hero-copy > p:last-child {
    font-size: 14px;
  }

  .powerplay-content {
    padding: 10px 10px 18px;
  }

  .powerplay-about {
    padding: 28px 24px;
  }

  .powerplay-about h2 {
    font-size: clamp(36px, 11vw, 44px);
    line-height: 1.04;
    letter-spacing: 0;
  }

  .powerplay-about > p:last-child {
    font-size: 14px;
  }

  .powerplay-facts {
    gap: 34px;
    padding: 26px 24px;
  }

  .profile-template-view .powerplay-about > .powerplay-label,
  .profile-template-view .powerplay-facts .powerplay-fact:first-child > span {
    margin-left: -10px;
  }

  .nikol-profile-extras {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .nikol-profile-extras.is-without-quiz { grid-template-columns: 1fr; }

  .nikol-extra-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .nikol-social-card {
    grid-column: auto;
  }

  .nikol-quiz-stage {
    padding-right: 64px;
    padding-left: 64px;
  }

  .nikol-quiz-actions {
    right: 9px;
    left: 9px;
  }

  .nikol-audio-teaser {
    right: 12%;
    left: 12%;
  }

  .nikol-five-for-life {
    margin-top: 10px;
    padding: 20px 16px;
  }

  .nikol-five-head {
    flex-direction: column;
  }

  .nikol-five-head button {
    width: 100%;
    justify-content: center;
  }

  .nikol-five-grid {
    grid-auto-columns: 78%;
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: inline mandatory;
  }

  .nikol-life-track {
    scroll-snap-align: start;
  }

  /* Kompakter Hero-Ausschnitt auf Smartphones: rund ein Drittel niedriger. */
  .hero,
  .shows-hero,
  .program-hero,
  .powerplay-hero {
    min-height: 352px;
  }

  .hero-copy,
  .shows-hero-copy {
    bottom: 20px;
  }

  .hero-slogan {
    width: 40%;
    max-width: 172px;
    margin-right: auto;
    margin-left: 23px;
    transform: translateY(24px);
  }

  [data-page-view] > .hero,
  [data-page-view] > .shows-hero,
  [data-page-view] > .program-hero,
  [data-page-view] > .powerplay-hero {
    overflow: visible;
  }

  [data-page-view="home"] > .hero .hero-copy {
    bottom: 136px;
  }

  .home-on-air-stack {
    right: 10px;
    bottom: -70px;
    left: 10px;
    display: block;
    width: auto;
  }

  .home-now-playing-card {
    grid-template-columns: 80px minmax(0, 1fr);
    height: 80px;
    min-height: 80px;
  }

  .home-now-playing-art {
    width: 80px;
    height: 80px;
  }

  .home-now-playing-context {
    left: 94px;
    font-size: clamp(11px, 3.2vw, 14px);
  }

  .home-now-playing-live-dot {
    left: 76px;
    bottom: calc(100% + 9px);
  }

  .on-air-card .home-now-playing-title {
    font-size: 32px;
  }

  .home-now-playing-copy .on-air-description {
    margin-top: 6px;
    font-size: 16px;
  }

  [data-page-view="home"] > .content-grid {
    padding-top: 80px;
  }

  [data-page-view]:not([data-page-view="home"]) .shows-hero-copy {
    bottom: 110px;
  }

  .shows-content,
  .program-page-content,
  .powerplay-content {
    padding-top: 80px;
  }

  .shows-hero {
    background-size: auto, auto 100%;
  }
}

@media (max-width: 1080px) {
  .werben-package-grid {
    grid-template-columns: 1fr;
  }

  .werben-package-card {
    min-height: 330px;
  }

  .werben-package-card h3,
  .werben-package-price strong {
    font-size: 58px;
  }

  .werben-request-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .werben-offers {
    padding: 16px;
  }

  .werben-package-grid,
  .werben-request-grid {
    gap: 20px;
  }

  .werben-package-card {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .werben-package-badge {
    padding: 9px 18px 7px;
  }

  .werben-package-card h3 {
    margin-top: 18px;
    font-size: 52px;
  }

  .werben-package-subtitle {
    margin: 8px 0 26px;
  }

  .werben-package-card li {
    gap: 16px;
    margin: 14px 0;
    font-size: 16px;
  }

  .werben-package-price {
    margin-top: 28px;
    padding-top: 24px;
  }

  .werben-package-price strong {
    font-size: 48px;
  }

  .werben-package-price small {
    padding: 8px 9px 6px;
    font-size: 11px;
  }

  .werben-price-note {
    margin: 20px 0;
    padding: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
  }

  .werben-request-intro,
  .werben-request-form {
    min-height: 0;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .werben-request-intro h3 {
    margin-bottom: 32px;
    font-size: 48px;
  }

  .werben-request-intro ul {
    gap: 22px;
  }

  .werben-request-intro li {
    padding-left: 46px;
  }

  .werben-request-intro li span {
    margin-top: 3px;
    line-height: 1.5;
  }

  .werben-form-columns {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
  }

  .werben-request-form label {
    margin-bottom: 8px;
  }

  .werben-request-form button {
    margin-top: 20px;
  }

  .werben-request-form input,
  .werben-request-form select,
  .werben-request-form textarea {
    font-size: 16px;
  }

  .profile-template-view .powerplay-content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .profile-template-view .powerplay-info-grid {
    gap: 20px;
  }

  .profile-template-view .nikol-profile-extras {
    gap: 20px;
    margin-top: 20px;
  }

  .profile-template-view .shows-section-heading {
    padding: 24px 20px 18px;
  }

  .profile-template-view .host-faces {
    gap: 14px;
    padding: 0 20px 24px;
  }

  .profile-template-view .hosts-panel .host-faces:first-of-type {
    justify-content: space-between;
    gap: 0;
    padding: 0 16px 20px;
  }

  .profile-template-view .host-category-title {
    padding: 0 20px 12px;
  }
}

.studio-route {
  background: #08090d;
}

.studio-route > :not(.studio-admin-page):not(.toast) {
  display: none !important;
}

.studio-admin-page {
  min-height: 100vh;
  color: #f7f7fb;
  background:
    radial-gradient(circle at 78% 8%, rgba(73, 89, 255, 0.22), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(174, 34, 255, 0.13), transparent 28%),
    #08090d;
}

.studio-login-card[hidden],
.studio-dashboard[hidden],
.studio-admin-logout[hidden] {
  display: none !important;
}

.studio-admin-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 18px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 9, 13, 0.78);
  backdrop-filter: blur(18px);
}

.studio-admin-header img {
  display: block;
  width: 118px;
  height: auto;
}

.studio-admin-header > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.studio-admin-logout {
  justify-self: end;
  padding: 12px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.studio-admin-main {
  min-height: calc(100vh - 88px);
  padding: clamp(28px, 5vw, 72px);
}

.studio-login-card {
  width: min(100%, 560px);
  margin: clamp(20px, 5vh, 68px) auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  background: rgba(15, 17, 25, 0.84);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(24px);
}

.studio-login-mark {
  display: flex;
  gap: 7px;
  margin-bottom: 34px;
}

.studio-login-mark span {
  width: 32px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #39c6ff, #7757ff 55%, #ce2cff);
}

.studio-login-mark span:nth-child(2) { width: 18px; opacity: 0.72; }
.studio-login-mark span:nth-child(3) { width: 9px; opacity: 0.44; }

.studio-admin-kicker {
  margin: 0 0 12px;
  color: #7885ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.studio-login-card h1,
.studio-dashboard-sidebar h1,
.studio-dashboard-heading h2,
.studio-content-overview h3,
.studio-editor-heading h3 {
  margin: 0;
  font-family: "Arial Black", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.studio-login-card h1 {
  font-size: clamp(52px, 8vw, 82px);
}

.studio-login-copy {
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.55;
}

.studio-login-form {
  display: grid;
  gap: 10px;
}

.studio-login-form label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.studio-login-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 16px;
}

.studio-login-form input:focus {
  border-color: #6c7aff;
  box-shadow: 0 0 0 4px rgba(108, 122, 255, 0.15);
}

.studio-password-field {
  position: relative;
}

.studio-password-field input {
  padding-right: 108px;
}

.studio-password-field button {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  padding: 8px;
  color: #8f9aff;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.studio-login-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  margin-top: 15px;
  padding: 0 22px;
  color: #fff;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(100deg, #445dff, #853dff 58%, #c027f4);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(80, 67, 255, 0.28);
}

.studio-login-submit:disabled { opacity: 0.55; cursor: wait; }
.studio-login-submit span { font-size: 24px; }

.studio-login-status {
  min-height: 20px;
  margin: 4px 0 0;
  color: #ff8295;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.studio-back-link {
  display: inline-block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.studio-dashboard {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  width: min(100%, 1480px);
  min-height: calc(100vh - 160px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: rgba(12, 14, 20, 0.86);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.studio-dashboard-sidebar {
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.studio-dashboard-sidebar h1 { font-size: 42px; }

.studio-dashboard-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 54px;
}

.studio-dashboard-sidebar nav button {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 50px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.38);
  border: 0;
  border-radius: 12px;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: left;
}

.studio-dashboard-sidebar nav button.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(80, 99, 255, 0.28), rgba(150, 52, 255, 0.08));
}

.studio-dashboard-sidebar nav span { color: #7381ff; font-size: 10px; }

.studio-admin-email {
  margin: auto 0 0;
  padding-top: 32px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.studio-dashboard-content { padding: clamp(28px, 4vw, 58px); }

[data-studio-overview-only][hidden],
[data-studio-view][hidden] { display: none !important; }

.studio-view-back {
  display: inline-flex;
  min-height: 42px;
  margin: 0 0 28px;
  padding: 0 16px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.studio-view-back:hover,
.studio-view-back:focus-visible { color: #fff; border-color: rgba(127, 139, 255, 0.5); }

.studio-show-editor,
[data-studio-view="moderators"],
[data-studio-view="program"],
[data-studio-view="collection"] { margin-top: 0; padding-top: 0; border-top: 0; }
.studio-show-editor .studio-collection-upload img { width: 180px; height: 104px; }

.studio-dashboard-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.studio-dashboard-heading h2 { font-size: clamp(46px, 6vw, 78px); }

.studio-manager-launcher {
  scroll-margin-top: 24px;
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-manager-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.studio-manager-heading h3 {
  margin: 8px 0 0;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(34px, 4.5vw, 58px);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.studio-manager-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.studio-manager-grid button {
  position: relative;
  display: grid;
  min-height: 164px;
  padding: 20px;
  text-align: left;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  outline: none;
  background: rgba(255, 255, 255, 0.025);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.studio-manager-grid button:hover,
.studio-manager-grid button:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(123, 136, 255, 0.5);
  background: rgba(115, 129, 255, 0.09);
}

.studio-manager-grid button.is-ready {
  background: linear-gradient(145deg, rgba(66, 91, 255, 0.24), rgba(143, 52, 255, 0.1));
  border-color: rgba(119, 133, 255, 0.3);
}

.studio-manager-grid button > span {
  color: #7f8bff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.studio-manager-grid strong {
  align-self: end;
  margin-top: 24px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.studio-manager-grid small {
  margin-top: 6px;
  padding-right: 25px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.4;
}

.studio-manager-grid i {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: #8c97ff;
  font-size: 21px;
  font-style: normal;
}

.studio-manager-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: #8f9aff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.studio-collection-editor {
  scroll-margin-top: 24px;
  margin-top: 58px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-collection-editor[hidden] { display: none !important; }

.studio-collection-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.studio-collection-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 16px;
  min-height: 104px;
  padding: 14px;
  align-items: center;
  color: #fff;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.025);
  font: inherit;
  cursor: pointer;
}

.studio-collection-card:hover,
.studio-collection-card:focus-visible { border-color: rgba(123, 136, 255, 0.5); background: rgba(115, 129, 255, 0.08); }
.studio-collection-card > img { width: 76px; height: 76px; border-radius: 11px; object-fit: cover; background: rgba(255, 255, 255, 0.06); }
.studio-collection-number { display: grid; width: 76px; height: 76px; place-items: center; color: #7f8bff; border-radius: 11px; background: rgba(115, 129, 255, 0.1); font-size: 20px; font-weight: 900; }
.studio-social-icon-preview { display: grid; width: 76px; height: 76px; padding: 14px; place-items: center; color: #7784ff; border-radius: 11px; background: rgba(115, 129, 255, 0.1); }
.studio-social-icon-preview svg { width: 100%; height: 100%; }
.studio-collection-copy { display: grid; gap: 9px; min-width: 0; }
.studio-collection-copy strong { overflow: hidden; font-size: 15px; line-height: 1.25; text-overflow: ellipsis; }
.studio-collection-copy small { color: rgba(255, 255, 255, 0.42); font-size: 9px; font-weight: 900; letter-spacing: 0.08em; line-height: 1.45; }
.studio-collection-card > i { color: #8c97ff; font-size: 21px; font-style: normal; }
.studio-collection-empty { grid-column: 1 / -1; padding: 28px; color: rgba(255, 255, 255, 0.4); border: 1px dashed rgba(255, 255, 255, 0.12); border-radius: 16px; font-size: 12px; font-weight: 900; letter-spacing: 0.1em; }

.studio-collection-dialog textarea { width: 100%; min-height: 100px; padding: 13px 15px; color: #fff; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 13px; outline: none; background: rgba(255, 255, 255, 0.055); font: inherit; font-size: 16px; resize: vertical; }
.studio-collection-dialog textarea:focus { border-color: #7582ff; box-shadow: 0 0 0 4px rgba(108, 122, 255, 0.14); }
.studio-collection-check { display: flex !important; grid-template-columns: auto 1fr; gap: 10px !important; align-items: center; min-height: 54px; padding: 0 15px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 13px; background: rgba(255, 255, 255, 0.055); }
.studio-collection-check input { width: 20px !important; min-height: 20px !important; padding: 0 !important; accent-color: #7582ff; }
.studio-schedule-range { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.studio-schedule-range[hidden] { display: none; }
.studio-poll-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; margin: 0; padding: 16px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 13px; }
.studio-poll-options legend { padding: 0 8px; color: rgba(255, 255, 255, 0.62); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; }
.studio-poll-total { display: flex; align-items: center; justify-content: space-between; min-height: 54px; padding: 0 16px; border: 1px solid rgba(117, 130, 255, 0.35); border-radius: 13px; background: rgba(117, 130, 255, 0.08); }
.studio-poll-total span { color: rgba(255, 255, 255, 0.62); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; }
.studio-poll-total strong { color: #fff; font-size: 21px; }
.studio-poll-reset { color: #fff; border-color: rgba(117, 130, 255, 0.65) !important; background: rgba(117, 130, 255, 0.12) !important; }
.studio-collection-upload > span { display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 14px; align-items: center; }
.studio-collection-upload img { width: 90px; height: 90px; border-radius: 12px; object-fit: cover; background: rgba(255, 255, 255, 0.06); }
.studio-collection-upload.is-contain img { object-fit: contain; }
.studio-collection-upload.is-poster > label > span { grid-template-columns: minmax(180px, 240px) minmax(0, 1fr); align-items: start; }
.studio-collection-upload.is-poster img { width: 100%; height: auto; aspect-ratio: 210 / 297; object-fit: contain; border-radius: 14px; }
.studio-collection-upload input[type="file"] { padding: 12px; }
.studio-collection-upload small { color: rgba(255, 255, 255, 0.38); font-size: 10px; }
.studio-collection-image-actions { display: flex; gap: 10px; margin-top: 10px; }
.studio-collection-image-actions[hidden] { display: none; }
.studio-collection-image-actions a,
.studio-collection-image-actions button { padding: 9px 12px; color: #fff; border: 1px solid rgba(117, 130, 255, 0.65); border-radius: 10px; background: rgba(117, 130, 255, 0.12); font: inherit; font-size: 12px; text-decoration: none; cursor: pointer; }
.studio-ad-preview { position: relative; min-height: 300px; overflow: hidden; padding: 18px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; color: #fff; }
.studio-ad-preview .home-ad-copy { min-height: 250px; }
.studio-ad-preview .home-ad-copy h2 { line-height: 1.04; }
.studio-social-preview,
.studio-partner-preview { padding: 18px; border: 1px solid rgba(117, 130, 255, 0.3); border-radius: 14px; background: rgba(117, 130, 255, 0.07); }
.studio-social-preview > p,
.studio-partner-preview > p { margin: 0 0 14px; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.studio-social-preview > div,
.studio-partner-preview > div { display: flex; gap: 28px; align-items: center; }
.studio-social-preview > div > span,
.studio-partner-preview > div > span { display: grid; place-items: center; color: #7885ff; }
.studio-social-preview .is-small { width: 76px; height: 76px; }
.studio-social-preview .is-large { width: 114px; height: 114px; }
.studio-social-preview svg,
.studio-social-preview img { width: 100%; height: 100%; object-fit: contain; }
.studio-social-preview small,
.studio-partner-preview small { display: block; margin-top: 14px; color: rgba(255,255,255,.42); font-size: 11px; }
.studio-partner-preview > div > span { padding: 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.04); }
.studio-partner-preview .is-small { width: 110px; height: 62px; }
.studio-partner-preview .is-large { width: 210px; height: 90px; }
.studio-partner-preview img { width: 100%; height: 100%; object-fit: contain; }

.studio-status-badge {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.studio-status-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42e88c;
  box-shadow: 0 0 14px rgba(66, 232, 140, 0.72);
}

.studio-overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 42px 0;
}

.studio-overview-stats article {
  display: grid;
  gap: 14px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.studio-overview-stats strong {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.06em;
}

.studio-overview-stats span {
  align-self: end;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.studio-content-overview {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) 1.5fr;
  gap: 34px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-content-overview h3 { font-size: clamp(32px, 4vw, 52px); }

.studio-content-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.studio-content-cards article {
  min-height: 176px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.studio-content-cards article > span,
.studio-content-cards small {
  color: #7885ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.studio-content-cards h4 {
  margin: 18px 0 8px;
  font-size: 18px;
}

.studio-content-cards p {
  min-height: 44px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.45;
}

.studio-editor {
  scroll-margin-top: 24px;
  margin-top: 58px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-editor-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.studio-editor-heading h3 { font-size: clamp(38px, 5vw, 66px); }

.studio-profile-picker,
.studio-editor-form label {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.studio-profile-picker select,
.studio-editor-form input,
.studio-editor-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
}

.studio-profile-picker select { min-width: 190px; }
.studio-editor-form textarea { min-height: 120px; resize: vertical; }
.studio-editor-form input:focus,
.studio-editor-form textarea:focus,
.studio-profile-picker select:focus { border-color: #7582ff; box-shadow: 0 0 0 4px rgba(108, 122, 255, 0.14); }
.studio-editor-form label small { color: rgba(255, 255, 255, 0.34); font-size: 10px; letter-spacing: 0.04em; }

.studio-editor-form {
  margin-top: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.028);
}

.studio-editor-form.is-loading { opacity: 0.55; pointer-events: none; }
.studio-editor-section-title { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.studio-editor-section-title > div { display: flex; gap: 14px; align-items: center; }
.studio-editor-section-title span { color: #7885ff; font-size: 10px; font-weight: 900; }
.studio-editor-section-title h4 { margin: 0; font-size: 22px; }
.studio-editor-section-title p { max-width: 430px; margin: 0; color: rgba(255, 255, 255, 0.45); font-size: 13px; line-height: 1.5; }
.studio-editor-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.studio-field-wide { grid-column: 1 / -1; }

.studio-editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
  margin-top: 26px;
}

.studio-editor-actions p { flex: 1; margin: 0; color: #8f9aff; font-size: 11px; font-weight: 900; letter-spacing: 0.08em; }
.studio-editor-actions button {
  display: flex;
  gap: 22px;
  align-items: center;
  min-height: 54px;
  padding: 0 20px;
  color: #fff;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(100deg, #445dff, #853dff 58%, #c027f4);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.studio-editor-actions button:disabled { opacity: 0.5; cursor: wait; }
.studio-editor-actions button span { font-size: 22px; }

.studio-five-editor { display: grid; gap: 12px; }
.studio-five-row { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; background: rgba(0, 0, 0, 0.12); }
.studio-five-number { color: #7885ff; font-family: "Arial Black", Arial, sans-serif; font-size: 24px; }
.studio-five-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.studio-cover-upload span { display: flex; gap: 14px; align-items: center; }
.studio-cover-upload img { width: 72px; height: 72px; flex: 0 0 auto; border-radius: 10px; object-fit: cover; }
.studio-cover-upload input[type="file"] { padding: 12px; }

.studio-quiz-editor { display: grid; gap: 12px; }
.studio-quiz-row { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; background: rgba(0, 0, 0, 0.12); }
.studio-quiz-fields { display: grid; grid-template-columns: minmax(0, 1fr) minmax(210px, 0.42fr); gap: 18px; align-items: start; }
.studio-quiz-fields fieldset { display: grid; gap: 10px; min-width: 0; margin: 0; padding: 14px 16px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 13px; }
.studio-quiz-fields legend { padding: 0 7px; color: rgba(255, 255, 255, 0.52); font-size: 11px; font-weight: 900; letter-spacing: 0.1em; }
.studio-quiz-fields fieldset label { display: flex; grid-template-columns: auto 1fr; gap: 10px; align-items: center; min-height: 30px; color: rgba(255, 255, 255, 0.78); cursor: pointer; }
.studio-quiz-fields input[type="radio"] { width: 19px; min-height: 19px; margin: 0; padding: 0; accent-color: #7885ff; }
.studio-audio-upload { margin-top: 22px; }
.studio-audio-upload > span { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, 0.65fr); gap: 14px; align-items: center; }
.studio-audio-upload input[type="file"] { padding: 12px; }
.studio-audio-upload audio { width: 100%; min-height: 48px; }
.nikol-audio-teaser.is-playing .nikol-audio-play { color: #26d389; }

.studio-program-editor {
  scroll-margin-top: 24px;
  margin-top: 58px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-program-editor .studio-editor-heading h3 {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.studio-program-add {
  min-height: 52px;
  padding: 0 20px;
  color: #fff;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(100deg, #445dff, #853dff 58%, #c027f4);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.studio-program-help { margin: -6px 0 24px; color: rgba(255, 255, 255, 0.48); font-size: 14px; line-height: 1.5; }
.studio-program-board-wrap { overflow-x: auto; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; background: rgba(0, 0, 0, 0.16); }
.studio-program-board { display: grid; grid-template-columns: 82px repeat(7, minmax(190px, 1fr)); min-width: 1440px; }
.studio-program-times,
.studio-program-day { min-width: 0; border-right: 1px solid rgba(255, 255, 255, 0.08); }
.studio-program-times > strong,
.studio-program-day > h4 { display: grid; height: 58px; margin: 0; place-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.72); font-size: 11px; font-weight: 900; letter-spacing: 0.1em; }
.studio-program-times time { display: grid; height: 64px; padding-right: 12px; align-items: start; justify-items: end; transform: translateY(-7px); color: rgba(255, 255, 255, 0.4); font-size: 11px; }
.studio-program-day-track { position: relative; height: 1536px; }
.studio-program-slot { display: block; width: 100%; height: 64px; padding: 0; border: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.065); background: transparent; }
.studio-program-slot:hover,
.studio-program-slot.is-drop-target { background: rgba(112, 124, 255, 0.13); box-shadow: inset 0 0 0 2px rgba(120, 133, 255, 0.4); }
.studio-program-card { position: absolute; z-index: 2; top: calc(var(--program-start) * 64px + 3px); right: 5px; left: 5px; display: flex; height: calc(var(--program-duration) * 64px - 6px); min-height: 52px; padding: 8px 10px; overflow: hidden; flex-direction: column; border: 1px solid hsla(var(--show-hue), 82%, 69%, 0.48); border-radius: 11px; outline: none; color: #fff; background: linear-gradient(145deg, hsla(var(--show-hue), 76%, 52%, 0.7), hsla(calc(var(--show-hue) + 35), 75%, 38%, 0.72)); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2); cursor: grab; }
.studio-program-card:focus-visible { box-shadow: 0 0 0 3px rgba(127, 138, 255, 0.48); }
.studio-program-card.is-dragging { opacity: 0.45; cursor: grabbing; }
.studio-program-card time { font-size: 9px; font-weight: 800; letter-spacing: 0.06em; opacity: 0.72; }
.studio-program-card strong { margin-top: 3px; font-size: 12px; line-height: 1.05; text-transform: uppercase; }
.studio-program-card span { margin-top: 4px; overflow: hidden; font-size: 10px; line-height: 1.2; opacity: 0.78; }
.studio-program-status { min-height: 20px; margin: 14px 0 0; color: #8f9aff; font-size: 11px; font-weight: 900; letter-spacing: 0.07em; }

.studio-program-dialog { width: min(92vw, 720px); max-height: 90vh; padding: 0; overflow: auto; color: #fff; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 24px; background: #12141d; box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62); }
.studio-program-dialog::backdrop { background: rgba(3, 4, 9, 0.78); backdrop-filter: blur(8px); }
.studio-program-dialog-form { padding: clamp(24px, 4vw, 38px); }
.studio-program-dialog-head { display: flex; justify-content: space-between; gap: 24px; align-items: start; margin-bottom: 28px; }
.studio-program-dialog-head h2 { margin: 0; font-family: "Arial Black", Arial, sans-serif; font-size: clamp(28px, 5vw, 44px); letter-spacing: -0.05em; line-height: 0.95; }
.studio-program-dialog-head > button { width: 42px; height: 42px; color: #fff; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 50%; background: transparent; font-size: 24px; cursor: pointer; }
.studio-program-dialog label { display: grid; gap: 9px; color: rgba(255, 255, 255, 0.52); font-size: 11px; font-weight: 900; letter-spacing: 0.1em; }
.studio-program-dialog input,
.studio-program-dialog select { width: 100%; min-height: 54px; padding: 12px 15px; color: #fff; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 13px; outline: none; background: rgba(255, 255, 255, 0.055); font: inherit; font-size: 16px; }
.studio-admin-page select { color-scheme: dark; }
.studio-admin-page select option, .studio-admin-page select optgroup { color: #fff; background-color: #1b1e30; }
.studio-program-dialog input:focus,
.studio-program-dialog select:focus { border-color: #7582ff; box-shadow: 0 0 0 4px rgba(108, 122, 255, 0.14); }
.studio-program-dialog-status { min-height: 20px; margin: 18px 0 0; color: #ff8295; font-size: 12px; font-weight: 800; }
.studio-program-dialog-actions { display: grid; grid-template-columns: auto auto 1fr auto auto; gap: 10px; margin-top: 14px; }
.studio-program-dialog-actions button { min-height: 48px; padding: 0 17px; color: #fff; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 12px; background: rgba(255, 255, 255, 0.06); font: inherit; font-size: 11px; font-weight: 900; letter-spacing: 0.07em; cursor: pointer; }
.studio-program-dialog-actions .studio-program-save { border: 0; background: linear-gradient(100deg, #445dff, #853dff 58%, #c027f4); }
.studio-program-dialog-actions .studio-program-delete { color: #ff8295; border-color: rgba(255, 91, 116, 0.25); }
.studio-program-dialog-actions button:disabled { opacity: 0.5; cursor: wait; }

@media (max-width: 900px) {
  .studio-dashboard { grid-template-columns: 1fr; }
  .studio-dashboard-sidebar { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .studio-dashboard-sidebar nav { grid-template-columns: repeat(4, 1fr); margin-top: 28px; }
  .studio-dashboard-sidebar nav button { justify-content: center; padding: 0 8px; }
  .studio-admin-email { margin-top: 18px; padding-top: 0; }
  .studio-content-overview { grid-template-columns: 1fr; }
  .studio-manager-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .studio-collection-list { grid-template-columns: 1fr; }
  .studio-editor-heading { align-items: start; }
}

@media (max-width: 620px) {
  .studio-admin-header { grid-template-columns: 1fr auto; min-height: 72px; padding: 15px 18px; }
  .studio-admin-header > span { display: none; }
  .studio-admin-header img { width: 98px; }
  .studio-admin-main { min-height: calc(100vh - 72px); padding: 14px; }
  .studio-login-card { margin: 12px auto; padding: 30px 22px; border-radius: 24px; }
  .studio-login-card h1 { font-size: 50px; }
  .studio-dashboard { min-height: calc(100vh - 100px); border-radius: 22px; }
  .studio-dashboard-sidebar { padding: 24px 20px; }
  .studio-dashboard-sidebar h1 { font-size: 34px; }
  .studio-dashboard-sidebar nav { display: flex; overflow-x: auto; }
  .studio-dashboard-sidebar nav button { flex: 0 0 auto; }
  .studio-dashboard-content { padding: 26px 20px; }
  .studio-dashboard-heading { display: grid; }
  .studio-dashboard-heading h2 { font-size: 48px; }
  .studio-status-badge { grid-row: 1; width: max-content; }
  .studio-overview-stats { grid-template-columns: 1fr; margin: 30px 0; }
  .studio-overview-stats article { min-height: 118px; }
  .studio-content-cards { grid-template-columns: 1fr; }
  .studio-manager-heading { display: grid; }
  .studio-manager-grid { grid-template-columns: 1fr; }
  .studio-manager-grid button { min-height: 148px; }
  .studio-editor { margin-top: 42px; padding-top: 36px; }
  .studio-program-editor { margin-top: 42px; padding-top: 36px; }
  .studio-collection-editor { margin-top: 42px; padding-top: 36px; }
  .studio-editor-heading,
  .studio-editor-section-title,
  .studio-editor-actions { display: grid; }
  .studio-profile-picker select { min-width: 0; }
  .studio-editor-grid,
  .studio-five-fields { grid-template-columns: 1fr; }
  .studio-schedule-range,
  .studio-poll-options { grid-template-columns: 1fr; }
  .studio-five-row { grid-template-columns: 1fr; }
  .studio-quiz-row,
  .studio-quiz-fields,
  .studio-audio-upload > span { grid-template-columns: 1fr; }
  .studio-editor-actions button { width: 100%; justify-content: space-between; }
  .studio-program-add { width: 100%; }
  .studio-program-dialog-actions { grid-template-columns: 1fr 1fr; }
  .studio-program-dialog-actions span { display: none; }
  .studio-collection-card { grid-template-columns: 64px minmax(0, 1fr) auto; }
  .studio-collection-card > img,
  .studio-collection-number { width: 64px; height: 64px; }
  .studio-collection-upload > span { grid-template-columns: 1fr; }
}

@keyframes nowPlayingTitleMarquee {
  0%,
  12% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 16px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .home-now-playing-title.is-scrolling .home-now-playing-title-track {
    animation: none !important;
  }
}

/* Show management: one show per row, selectable existing presenters. */
.studio-show-list { display: flex; flex-direction: column; gap: 12px; }
.studio-shows-overview-form { margin: 20px 0 28px; padding-bottom: 28px; border-bottom: 1px solid #ffffff24; }
.studio-page-hero-form { margin: 20px 0 28px; padding-bottom: 28px; border-bottom: 1px solid #ffffff24; }
.studio-program-hero-details { margin: 8px 0; flex: 0 0 auto; }
.studio-program-hero-details > summary { width: fit-content; padding: 9px 13px; border: 1px solid #ffffff30; border-radius: 9px; color: #c9cbff; background: #ffffff08; font-size: 14px; font-weight: 800; cursor: pointer; }
.studio-program-hero-details[open] > summary { margin-bottom: 10px; }
.studio-program-hero-details .studio-page-hero-form { margin: 0 0 12px; padding: 18px; border: 1px solid #ffffff24; border-radius: 14px; }
.studio-editor-section-title h4 { margin: 3px 0 18px; font-family: var(--display); font-size: clamp(24px, 3vw, 34px); }
.studio-show-list-title { margin-top: 8px; }
.studio-show-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px; border: 1px solid #ffffff24; border-radius: 14px; }
.studio-show-row strong { font-size: 18px; overflow-wrap: anywhere; }
.studio-show-row button, [data-show-new] { padding: 14px 18px; border: 1px solid #ffffff40; border-radius: 10px; background: #7479ff; color: #fff; font-weight: 700; cursor: pointer; }
.studio-show-presenters { border: 0; padding: 0; margin: 0; min-width: 0; }
.studio-show-presenters legend { font-size: 14px; margin-bottom: 12px; }
[data-show-presenters] { display: flex; flex-wrap: wrap; gap: 12px; }
.studio-show-presenters label { display: flex; align-items: center; gap: 10px; border: 1px solid #ffffff30; border-radius: 10px; padding: 14px; cursor: pointer; }
.studio-show-presenters label:has(:checked) { border-color: #888cff; background: #7479ff24; }
.studio-show-presenters input { width: 20px; height: 20px; min-height: 0; accent-color: #7479ff; }
[data-show-form][hidden], [data-show-list][hidden], [data-show-new][hidden], [data-show-back][hidden], [data-shows-overview-form][hidden], [data-show-list-status][hidden], .studio-show-list-title[hidden] { display: none; }

@media (max-width: 480px) { .studio-show-row { gap: 12px; padding: 14px; } .studio-show-row button { font-size: 14px; padding: 12px; } }

.studio-row-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.studio-show-row .studio-delete-button { background: transparent; color: #ff9999; border-color: #ff999950; }
[data-moderator-new] { padding: 14px 18px; border: 1px solid #ffffff40; border-radius: 10px; background: #7479ff; color: white; font-weight: 700; cursor: pointer; }
[data-moderator-list][hidden], [data-moderator-back][hidden], [data-moderator-new][hidden], [data-moderator-profile-form][hidden], [data-five-for-life-form][hidden], [data-quiz-editor-form][hidden], [data-page-link][hidden], .show-card[hidden], .nikol-instagram-row[hidden] { display: none; }
[data-moderator-schedule] { white-space: pre-line; font-size: 14px; line-height: 1.6; }
@media (max-width: 600px) { .studio-show-row { flex-wrap: wrap; } .studio-row-actions { width: 100%; } }

/* Keep the timetable inside its grid column; use a day list on small screens. */
.studio-dashboard-content, .studio-program-editor, .studio-editor-heading > div { min-width: 0; }
.studio-program-board-wrap { max-width: 100%; overscroll-behavior-x: contain; }
.studio-program-board { --program-hour-height: 96px; }
.studio-program-times time, .studio-program-slot { height: var(--program-hour-height); }
.studio-program-day-track { height: calc(24 * var(--program-hour-height)); }
.studio-program-card { top: calc(var(--program-start) * var(--program-hour-height) + 3px); height: calc(var(--program-duration) * var(--program-hour-height) - 6px); }
.studio-program-times > strong, .studio-program-day > h4, .studio-program-times time, .studio-program-card time, .studio-program-card span { font-size: 14px; letter-spacing: normal; }
.studio-program-card strong { font-size: 16px; line-height: 1.2; }
.studio-program-status { font-size: 14px; line-height: 1.5; letter-spacing: normal; }
.studio-program-day-picker, .studio-program-mobile-help, .studio-program-day-empty { display: none; }
.studio-program-dialog { box-sizing: border-box; max-width: calc(100vw - 24px); max-height: calc(100dvh - 24px); margin: auto; overscroll-behavior: contain; }
.studio-program-dialog .studio-editor-grid > *, .studio-program-dialog input, .studio-program-dialog select { min-width: 0; box-sizing: border-box; }
.studio-program-dialog label, .studio-program-dialog-actions button { font-size: 14px; letter-spacing: normal; }
.studio-program-dialog-head > button { flex: 0 0 44px; height: 44px; }
@media (max-width: 900px) {
  .studio-program-desktop-help { display: none; }
  .studio-program-mobile-help { display: inline; }
  .studio-program-day-picker { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; margin: 0 0 16px; }
  .studio-program-day-picker button { min-width: 0; min-height: 46px; padding: 8px 0; border: 1px solid #ffffff30; border-radius: 8px; color: white; background: transparent; font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; }
  .studio-program-day-picker button[aria-pressed="true"] { background: #686ff5; border-color: #9297ff; }
  .studio-program-day-picker button:focus-visible { outline: 2px solid white; outline-offset: 2px; }
  .studio-program-board-wrap { overflow: visible; border: 0; border-radius: 0; background: transparent; }
  .studio-program-board { display: block; min-width: 0; width: 100%; }
  .studio-program-times, .studio-program-slot, .studio-program-day:not(.is-selected-day) { display: none; }
  .studio-program-day { border: 0; }
  .studio-program-day > h4 { justify-items: start; height: auto; padding: 8px 0 16px; border: 0; font-size: 16px; }
  .studio-program-day-track { display: flex; flex-direction: column; gap: 10px; height: auto; }
  .studio-program-card { position: static; width: 100%; height: auto; min-height: 94px; padding: 16px; box-sizing: border-box; overflow: visible; cursor: pointer; touch-action: pan-y; }
  .studio-program-card strong { font-size: 18px; overflow-wrap: anywhere; }
  .studio-program-card span { overflow: visible; overflow-wrap: anywhere; line-height: 1.4; }
  .studio-program-day-empty { display: block; margin: 0; padding: 20px 16px; border: 1px solid #ffffff24; border-radius: 12px; font-size: 16px; line-height: 1.5; }
}
@media (max-width: 600px) {
  .studio-dashboard-content { padding: 22px 14px; }
  .studio-program-dialog { width: calc(100vw - 20px); max-width: calc(100vw - 20px); max-height: calc(100dvh - 20px); border-radius: 16px; }
  .studio-program-dialog-form { padding: 20px 16px; }
  .studio-program-dialog-head { gap: 12px; margin-bottom: 24px; }
  .studio-program-dialog-head h2 { font-size: 28px; line-height: 1.12; overflow-wrap: anywhere; }
  .studio-program-dialog .studio-editor-grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .studio-program-dialog input, .studio-program-dialog select { font-size: 16px; }
  .studio-program-dialog-actions { grid-template-columns: minmax(0, 1fr); gap: 10px; padding-bottom: env(safe-area-inset-bottom, 0px); }
  .studio-program-dialog-actions span { display: none; }
  .studio-program-dialog-actions button { min-height: 48px; width: 100%; }
  .studio-program-dialog-actions .studio-program-save { grid-row: 1; }
}

.studio-mobile-navigation { display: none; }
@media (max-width: 900px) {
  .studio-dashboard { grid-template-columns: minmax(0, 1fr); }
  .studio-dashboard-sidebar { min-width: 0; padding: 18px 16px; border-right: 0; }
  .studio-dashboard-sidebar h1 { margin: 0; font-size: 24px; line-height: 1.2; letter-spacing: normal; }
  .studio-dashboard-sidebar h1 br { display: inline; }
  .studio-dashboard-sidebar h1 br::after { content: " "; }
  .studio-dashboard-sidebar > div > .studio-admin-kicker { margin: 0 0 6px; font-size: 12px; }
  .studio-dashboard-sidebar nav { display: none; }
  .studio-mobile-navigation { display: grid; gap: 8px; margin-top: 16px; font-size: 14px; }
  .studio-mobile-navigation select { display: block; width: 100%; max-width: 100%; min-width: 0; min-height: 48px; padding: 10px 12px; color: #fff; background: #1b1e30; border: 1px solid #ffffff40; border-radius: 10px; font: inherit; font-size: 16px; }
  .studio-admin-email { margin: 0; padding-top: 12px; font-size: 14px; }
  .studio-dashboard-heading h2 { font-size: 30px; line-height: 1.1; }
  .studio-dashboard-heading { gap: 16px; }
  .studio-dashboard-content { padding: 22px 16px; }
  .studio-manager-heading h3 { font-size: 28px; overflow-wrap: anywhere; }
  .studio-admin-header { min-height: 64px; padding: 10px 16px; }
  .studio-admin-header img { width: 72px; }
  .studio-admin-logout { padding: 12px 16px; font-size: 14px; }
}

/* Admin navigation above the workspace, with full-width weekly planning. */
.studio-admin-main { padding: clamp(12px, 1.5vw, 24px); }
.studio-dashboard { width: 100%; max-width: none; grid-template-columns: minmax(0, 1fr); }
.studio-dashboard-sidebar { min-width: 0; border-right: 0; border-bottom: 1px solid #ffffff1a; }
.studio-dashboard-content { min-width: 0; padding: clamp(16px, 2vw, 32px); }
@media (min-width: 901px) {
  .studio-dashboard-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 16px 24px; padding: 20px 24px; }
  .studio-dashboard-sidebar h1 { margin: 0; font-size: 24px; line-height: 1.2; letter-spacing: normal; }
  .studio-dashboard-sidebar .studio-admin-kicker { margin: 0 0 6px; font-size: 12px; }
  .studio-dashboard-sidebar .studio-admin-email { grid-column: 2; grid-row: 1; margin: 0; padding: 0; font-size: 14px; }
  .studio-dashboard-sidebar nav { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; overflow: visible; }
  .studio-dashboard-sidebar nav button { flex: 0 1 auto; min-width: 0; min-height: 44px; justify-content: center; gap: 8px; padding: 10px 12px; font-size: 14px; letter-spacing: normal; color: #ffffffb8; }
  .studio-dashboard-sidebar nav button.active { color: #fff; }
  .studio-dashboard-sidebar nav span { font-size: 12px; }
  .studio-program-board { min-width: 0; width: 100%; grid-template-columns: 64px repeat(7, minmax(0, 1fr)); }
  .studio-program-board-wrap { overflow-x: hidden; }
  .studio-program-day > h4 { font-size: 14px; letter-spacing: normal; }
  .studio-program-card { padding: 8px; }
  .studio-program-card strong { overflow-wrap: anywhere; }
  .studio-program-card time { font-size: 13px; letter-spacing: normal; }
}

.studio-program-hour { display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 8px; width: 100%; height: var(--program-hour-height); padding: 10px 8px; box-sizing: border-box; border: 0; border-bottom: 1px solid #ffffff1c; color: #ffffff55; background: transparent; text-align: left; cursor: pointer; touch-action: manipulation; font: inherit; }
.studio-program-hour time { font-size: 13px; }
.studio-program-hour strong { font-size: 14px; line-height: 1.2; overflow-wrap: anywhere; }
.studio-program-hour.is-booked { color: #fff; background: hsla(var(--show-hue),65%,40%,.65); }
.studio-program-hour:hover { box-shadow: inset 0 0 0 2px #969aff; }
.studio-program-hour:focus-visible { outline: 3px solid #a7abff; outline-offset: -3px; }
.studio-program-hour:disabled { cursor: wait; opacity: .6; }
@media (max-width: 900px) {
  .studio-program-day-track { gap: 0; }
  .studio-program-hour { height: auto; min-height: 84px; padding: 14px; }
  .studio-program-hour time { font-size: 14px; }
  .studio-program-hour strong { font-size: 16px; }
}

.program-host-avatar.gregor-le-dahl-avatar, .current-show-host-avatar.gregor-le-dahl-avatar { background-image: url("assets/ksfm-neutral-light.svg"); background-size: cover; background-position: 78% 18%; }
.program-host-avatar.chaiizz-avatar, .current-show-host-avatar.chaiizz-avatar { background-image: url("assets/ksfm-neutral-light.svg"); background-size: cover; background-position: 78% 16%; }
html[data-theme="dark"] .program-host-avatar.gregor-le-dahl-avatar, html[data-theme="dark"] .current-show-host-avatar.gregor-le-dahl-avatar { background-image: url("assets/ksfm-neutral-dark.svg"); }
html[data-theme="dark"] .program-host-avatar.chaiizz-avatar, html[data-theme="dark"] .current-show-host-avatar.chaiizz-avatar { background-image: url("assets/ksfm-neutral-dark.svg"); }

.studio-planned-airtimes { padding: 16px; border: 1px solid #ffffff24; border-radius: 12px; background: #ffffff05; }
.studio-planned-airtimes > strong { font-size: 14px; color: #a5aaff; }
.studio-planned-airtimes > p { margin: 8px 0 0; color: #fff; font-size: 16px; line-height: 1.5; }

/* Fit all 24 hours into the available desktop workspace. */
@media (min-width: 901px) {
  .studio-route.studio-program-active .studio-admin-header { height: 60px; min-height: 60px; padding: 8px 20px; }
  .studio-route.studio-program-active .studio-admin-header img { width: 66px; max-height: 44px; object-fit: contain; }
  .studio-route.studio-program-active .studio-admin-main { height: calc(100dvh - 60px); min-height: 0; padding: 8px 12px; box-sizing: border-box; }
  .studio-route.studio-program-active .studio-dashboard { height: 100%; min-height: 0; grid-template-rows: auto minmax(0, 1fr); border-radius: 16px; }
  .studio-route.studio-program-active .studio-dashboard-sidebar { display: block; padding: 8px 12px; }
  .studio-route.studio-program-active .studio-dashboard-sidebar > div,
  .studio-route.studio-program-active .studio-admin-email { display: none; }
  .studio-route.studio-program-active .studio-dashboard-sidebar nav button { min-height: 36px; padding: 6px 10px; }
  .studio-route.studio-program-active .studio-dashboard-content { display: flex; min-height: 0; padding: 10px 12px; }
  .studio-route.studio-program-active .studio-program-editor { display: flex; flex-direction: column; flex: 1; min-height: 0; margin: 0; padding: 0; border: 0; }
  .studio-route.studio-program-active .studio-program-editor > .studio-view-back { display: none; }
  .studio-route.studio-program-active .studio-program-editor .studio-editor-heading { margin: 0; }
  .studio-route.studio-program-active .studio-program-editor .studio-admin-kicker { display: none; }
  .studio-route.studio-program-active .studio-program-editor .studio-editor-heading h3 { margin: 0; font-size: 20px; line-height: 1.2; letter-spacing: normal; }
  .studio-route.studio-program-active .studio-program-help { margin: 5px 0 8px; font-size: 14px; }
  .studio-route.studio-program-active .studio-program-hero-details { margin: 4px 0; }
  .studio-route.studio-program-active .studio-program-hero-details > summary { padding: 6px 10px; font-size: 12px; }
  .studio-route.studio-program-active .studio-program-board-wrap { flex: 1; min-height: 0; overflow: auto; border-radius: 10px; }
  .studio-route.studio-program-active .studio-program-board { height: 100%; min-height: 560px; }
  .studio-route.studio-program-active .studio-program-day { display: grid; grid-template-rows: 32px minmax(0, 1fr); min-height: 0; }
  .studio-route.studio-program-active .studio-program-day > h4 { height: 32px; }
  .studio-route.studio-program-active .studio-program-day-track { display: grid; grid-template-rows: repeat(24, minmax(22px, 1fr)); height: auto; min-height: 0; }
  .studio-route.studio-program-active .studio-program-times { display: grid; grid-template-rows: 32px repeat(24, minmax(22px, 1fr)); }
  .studio-route.studio-program-active .studio-program-times > strong { height: 32px; }
  .studio-route.studio-program-active .studio-program-times time { height: auto; align-items: center; transform: none; font-size: 13px; }
  .studio-route.studio-program-active .studio-program-hour { height: 100%; min-height: 0; padding: 2px 6px; gap: 0; overflow: hidden; }
  .studio-route.studio-program-active .studio-program-hour time { display: none; }
  .studio-route.studio-program-active .studio-program-hour strong { font-size: 14px; line-height: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .studio-route.studio-program-active .studio-program-status { margin: 5px 0 0; min-height: 0; }
  .studio-route.studio-program-active .studio-program-status:empty { display: none; }
}

[data-show-unavailable] > :not(.show-unavailable-notice) { display: none !important; }

.show-feature-card[hidden] { display: none; }

.mod-hero-preview{width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:12px;margin-top:12px}.mod-crop-previews{display:flex;gap:24px;flex-wrap:wrap;margin:20px 0}.mod-crop-previews canvas{width:min(240px,100%);height:auto;aspect-ratio:1;border-radius:50%;background:#202436;border:2px solid #777cff}.mod-crop-previews canvas:first-child{touch-action:none;cursor:grab}.mod-crop-editor input[type=range]{width:100%;padding:0;min-height:36px}.mod-crop-editor label{display:block;margin:16px 0}.managed-mod-hero{background:var(--mod-light) center/cover no-repeat!important}html[data-theme=dark] .managed-mod-hero{background:var(--mod-dark) center/cover no-repeat!important}

[data-template-kind="profile"] .nikol-quick-facts[hidden] { display: none; }
[data-template-kind="profile"] .powerplay-info-grid:has(.nikol-quick-facts[hidden]) { grid-template-columns: minmax(0, 1.55fr) minmax(260px, .8fr); }
@media (max-width: 940px) { [data-template-kind="profile"] .powerplay-info-grid:has(.nikol-quick-facts[hidden]) { grid-template-columns: 1fr; } }
[data-template-kind]:not([data-show-managed]) .powerplay-hero:not(.managed-mod-hero) { background: #172750; }

.hero-upload-field { min-width: 0; }
.hero-upload-field > label { display: block; }
.hero-image-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.hero-image-actions[hidden] { display: none; }
.hero-image-actions a, .hero-image-actions button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 16px; border: 1px solid #777cff; border-radius: 10px; background: #22243a; color: #fff; font: inherit; font-size: 14px; line-height: 1.4; text-decoration: none; cursor: pointer; }
.hero-image-actions a:hover, .hero-image-actions button:hover { background: #363958; }
.hero-image-actions a:focus-visible, .hero-image-actions button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.hero-image-actions button:disabled { opacity: .6; cursor: wait; }
.hero-image-status { margin: 8px 0 0; font-size: 14px; line-height: 1.5; color: #d5d7ef; }
.hero-image-status:empty { display: none; }

.studio-program-hour { position: relative; }
.program-resize-handle { position: absolute; z-index: 3; touch-action: none; }
.program-resize-handle.is-top, .program-resize-handle.is-bottom { left: 12px; right: 12px; height: 6px; cursor: ns-resize; }
.program-resize-handle.is-top { top: 0; }
.program-resize-handle.is-bottom { bottom: 0; }
.program-resize-handle.is-left, .program-resize-handle.is-right { top: 6px; bottom: 6px; width: 7px; cursor: ew-resize; }
.program-resize-handle.is-left { left: 0; }
.program-resize-handle.is-right { right: 0; }
.studio-program-hour:hover .program-resize-handle, .studio-program-hour:focus-visible .program-resize-handle { background: #ffffff55; }
.studio-program-hour.is-expanding { box-shadow: inset 0 0 0 2px #a8aeff; background: #565bd366; }
.studio-program-hour.is-expansion-conflict { box-shadow: inset 0 0 0 2px #ff727d; background: #a4263c99; }
@media (max-width: 900px) { .program-resize-handle.is-left, .program-resize-handle.is-right { display: none; } .program-resize-handle.is-top, .program-resize-handle.is-bottom { height: 12px; background: #ffffff22; } }
.newsletter-signup > .newsletter-consent { display:flex; align-items:flex-start; gap:.6rem; font:14px/1.5 Arial,sans-serif; margin:1rem 0 .5rem; }
.contact-newsletter .newsletter-consent input { appearance:auto; width:18px; height:18px; min-height:18px; flex:0 0 18px; margin:.15rem 0 0; padding:0; }
.newsletter-admin h2 { line-height:1.15; }
.newsletter-admin form,.newsletter-pagination { display:flex; flex-wrap:wrap; align-items:end; gap:1rem; margin:1rem 0; }
.newsletter-admin label { display:grid; gap:.4rem; }
.newsletter-admin input,.newsletter-admin select,.newsletter-admin button { padding:.7rem; font:inherit; border:1px solid #7973ff; border-radius:.5rem; background:#202030; color:#fff; }
.newsletter-admin select option { background:#202030; color:#fff; }
.newsletter-admin button { cursor:pointer; }
.newsletter-admin button:disabled { opacity:.5; cursor:default; }
.newsletter-subscriber { border:1px solid #ffffff30; border-radius:1rem; padding:1rem; margin:.8rem 0; overflow-wrap:anywhere; font:16px/1.5 Arial,sans-serif; }
.newsletter-subscriber button { margin:.7rem .7rem 0 0; }
.newsletter-subscriber p { line-height:1.5; }

/* iOS zoomt Formularfelder mit Schriftgrößen unter 16 px automatisch heran. */
@media (max-width: 940px) {
  input:not([type="checkbox"]):not([type="radio"]),
  textarea,
  select {
    font-size: 16px;
  }
}

/* Keep unpublished show promotions hidden even when cards use display:grid. */
.program-highlight-card[hidden] { display: none !important; }

/* A failed managed background stays neutral, with no old photo behind it. */
.powerplay-hero, .shows-hero, .program-hero, .booking-hero, .managed-mod-hero,
.program-highlight-card, .show-feature-card, .host-face-link,
.program-host-avatar, .current-show-host-avatar { background-color: #172750 !important; }
