html[data-theme="pink"] {
  --accent: #ff0088;
  --accent2: #00eeff;
  --accent3: #ff00ff;
  --glass: rgba(8, 4, 24, 0.82);
  --bg: #050510;
}

html[data-theme="cyan"] {
  --accent: #00eeff;
  --accent2: #ff0088;
  --accent3: #00ffcc;
  --glass: rgba(4, 16, 20, 0.82);
  --bg: #041018;
}

html[data-theme="magenta"] {
  --accent: #ff00ff;
  --accent2: #00eeff;
  --accent3: #ff0088;
  --glass: rgba(16, 4, 16, 0.82);
  --bg: #100510;
}

html[data-theme="electric"] {
  --accent: #00ffcc;
  --accent2: #ff00ff;
  --accent3: #00eeff;
  --glass: rgba(4, 16, 16, 0.82);
  --bg: #041414;
}

html[data-theme="stoned"] {
  --accent: #999900;
  --accent2: #cc9933;
  --accent3: #8c1717;
  --glass: rgba(20, 20, 10, 0.82);
  --bg: #121008;
}

html[data-theme="night"] {
  --accent: #990066;
  --accent2: #009999;
  --accent3: #0099cc;
  --glass: rgba(0, 0, 0, 0.85);
  --bg: #000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: #f1f5f9;
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
}

#bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: brightness(0.45) contrast(1.2) saturate(1.3);
}

#bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(
      ellipse at 20% 80%,
      color-mix(in srgb, var(--accent) 35%, transparent),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      color-mix(in srgb, var(--accent2) 30%, transparent),
      transparent 50%
    ),
    linear-gradient(160deg, rgba(5, 5, 16, 0.9), #000 85%);
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  padding: 8px 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 14px;
  font-size: 0.9rem;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 0;
}

.top-social {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.top-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: 0.3s;
}

.top-social a:hover {
  border: 1px solid var(--accent2);
  box-shadow: 0 0 16px var(--accent2);
  transform: scale(1.08);
}

.top-social img {
  width: 18px;
  height: 18px;
}

/* Centrum: ON AIR + nuta + YT (styl noton.radiodm.pl) */
.top-center {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}

.air-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}

.air-status .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.air-status.status-on {
  color: #34d399;
}

.air-status.status-on .pulse-dot {
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: airPulse 1.4s ease-in-out infinite;
}

.air-status.status-off {
  color: #94a3b8;
}

.air-status.status-off .pulse-dot {
  background: #64748b;
  animation: none;
}

@keyframes airPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

.top-now-playing {
  color: #ff4db8;
  font-weight: 700;
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 auto;
  max-width: min(38vw, 380px);
  transition:
    opacity 0.28s ease,
    color 0.25s,
    text-shadow 0.25s;
}

.top-now-playing.flash {
  color: #fff;
  text-shadow:
    0 0 10px var(--accent2),
    0 0 18px color-mix(in srgb, var(--accent2) 55%, transparent);
}

.top-now-playing.is-fading {
  opacity: 0.3;
}

.top-yt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  color: #ff4444;
  background: rgba(255, 68, 68, 0.12);
  border: 1px solid rgba(255, 68, 68, 0.35);
  transition: 0.25s;
  flex-shrink: 0;
  text-decoration: none;
}

.top-yt-btn:hover {
  background: rgba(255, 68, 68, 0.28);
  box-shadow: 0 0 14px rgba(255, 68, 68, 0.45);
  transform: scale(1.08);
  color: #ff6b6b;
}

.top-yt-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  filter: grayscale(0.4);
}

/* Prawa strona: prezenter/audycja + słuchacze + data */
.top-right {
  display: flex;
  align-items: center;
  gap: 12px 16px;
  flex-shrink: 0;
  min-width: 0;
}

.top-live-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-weight: 600;
  align-items: center;
  min-width: 0;
}

.top-live-meta .lbl {
  color: var(--accent2);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.5px;
}

.top-live-meta .val {
  color: #fff;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition:
    color 0.25s,
    text-shadow 0.25s,
    transform 0.25s;
}

.top-live-meta .val.flash {
  color: #fff;
  text-shadow:
    0 0 10px var(--accent2),
    0 0 18px color-mix(in srgb, var(--accent2) 55%, transparent);
}

.top-listeners {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent2);
  font-weight: 700;
  flex-shrink: 0;
}

.top-listeners .listeners-ico {
  flex-shrink: 0;
  color: var(--accent2);
}

.top-listeners .listeners-val {
  font-variant-numeric: tabular-nums;
  min-width: 1.2em;
  color: #fff;
  display: inline-block;
}

.top-listeners .listeners-val.up {
  color: #00ff9d;
  text-shadow:
    0 0 10px #00ff9d,
    0 0 18px color-mix(in srgb, var(--accent2) 45%, transparent);
  animation: listenersPop 0.45s ease-out;
}

.top-listeners .listeners-val.down {
  color: #ff6b9a;
  text-shadow: 0 0 10px #ff6b9a;
  animation: listenersPop 0.45s ease-out;
}

.top-listeners .lbl-sl {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
}

@keyframes listenersPop {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.28);
  }
  100% {
    transform: scale(1);
  }
}

.top-new {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 6px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent2) 70%, transparent);
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--accent2) 28%, transparent),
    color-mix(in srgb, var(--accent) 18%, transparent)
  );
  cursor: pointer;
  min-width: 0;
  max-width: 100%;
  flex: 1;
  transition: 0.3s;
  animation: newAudPulse 2.2s ease-in-out infinite;
  color: #fff;
  font: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}

.top-new.is-on {
  display: inline-flex;
}

.top-new:hover {
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent2) 50%, transparent);
  transform: scale(1.02);
}

.top-new .badge {
  font-size: 0.68rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  color: #000;
  padding: 3px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

.top-new .info {
  font-size: 0.76rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  color: #fff;
}

.top-date {
  font-weight: 700;
  color: #cbd5e1;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes newAudPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent2) 0%, transparent);
  }
  50% {
    box-shadow: 0 0 14px color-mix(in srgb, var(--accent2) 45%, transparent);
  }
}

@media (max-width: 1100px) {
  .top-live-meta {
    display: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 8px 10px;
  }

  .top-right {
    grid-column: 1 / -1;
    order: 3;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .top-live-meta {
    display: flex;
  }

  .top-new .info {
    max-width: 42vw;
  }
}

@media (max-width: 560px) {
  .top-new .info {
    display: none;
  }

  .top-live-meta {
    display: none;
  }

  .top-listeners .lbl-sl {
    display: none;
  }

  .top-now-playing {
    font-size: 0.82rem;
    max-width: min(48vw, 220px);
  }

  .air-status .status-label {
    font-size: 0.65rem;
  }

  .top-date {
    font-size: 0.78rem;
  }

  .top-new {
    flex: 0 0 auto;
    padding: 5px 8px;
  }
}

.live-chat-float {
  position: fixed;
  top: 62px;
  right: 16px;
  z-index: 9200;
  width: 248px;
  max-width: calc(100vw - 28px);
  background: var(--glass);
  backdrop-filter: blur(18px);
  border: 2px solid color-mix(in srgb, var(--accent2) 65%, transparent);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 28px color-mix(in srgb, var(--accent) 35%, transparent);
  animation: liveChatPulse 2.2s ease-in-out infinite;
  transition:
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.4s,
    border-radius 0.4s,
    transform 0.35s;
}

.live-chat-float.peek {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  animation: liveChatPulse 1.55s ease-in-out infinite;
}

.live-chat-float.peek .live-chat-body,
.live-chat-float.peek .live-chat-close,
.live-chat-float.peek .live-chat-title {
  display: none;
}

.live-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--accent) 35%, transparent),
    color-mix(in srgb, var(--accent2) 22%, transparent)
  );
}

.live-chat-float.peek .live-chat-head {
  padding: 11px;
  justify-content: center;
  height: 58px;
}

.live-chat-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--accent2));
  flex-shrink: 0;
  animation: liveChatLogoSpin 8s linear infinite;
}

.live-chat-title {
  min-width: 0;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  color: #fff;
  line-height: 1.2;
}

.live-chat-title small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent2);
  letter-spacing: 0.4px;
}

.live-chat-close {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.live-chat-body {
  padding: 10px 12px 14px;
  text-align: center;
}

.live-chat-body p {
  font-size: 0.78rem;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.live-chat-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #000;
  font-weight: 900;
  font-size: 0.78rem;
  text-decoration: none;
}

.live-chat-cta:hover {
  transform: scale(1.03);
}

@keyframes liveChatPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 color-mix(in srgb, var(--accent2) 0%, transparent),
      0 0 18px color-mix(in srgb, var(--accent) 30%, transparent);
  }

  50% {
    box-shadow:
      0 0 0 8px color-mix(in srgb, var(--accent2) 0%, transparent),
      0 0 28px var(--accent2);
  }
}

@keyframes liveChatLogoSpin {
  to {
    filter: drop-shadow(0 0 16px var(--accent));
  }
}

@media (max-width: 560px) {
  .live-chat-float {
    top: 108px;
    right: 10px;
  }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 8px;
  flex-wrap: wrap;
}

.logo {
  flex-shrink: 0;
  order: 0;
}

.logo img {
  height: 148px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition:
    transform 0.4s,
    filter 0.4s;
  filter: drop-shadow(
    0 0 18px color-mix(in srgb, var(--accent) 55%, transparent)
  );
}

.logo img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 26px var(--accent2));
}

.logo.logo-on-air img {
  animation: logoOnAir 2s ease-out;
}

.logo.logo-ring img {
  filter: drop-shadow(
    0 0 14px color-mix(in srgb, var(--accent2) 50%, transparent)
  );
}

@keyframes logoOnAir {
  0%,
  100% {
    filter: drop-shadow(
      0 0 18px color-mix(in srgb, var(--accent) 55%, transparent)
    );
  }

  50% {
    filter: drop-shadow(0 0 32px var(--accent2))
      drop-shadow(0 0 18px var(--accent));
  }
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

nav a,
.dropbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}

nav a:hover,
.dropbtn:hover,
.nav-item.open .dropbtn {
  background: color-mix(in srgb, var(--accent) 55%, transparent);
  border-color: var(--accent2);
  box-shadow: 0 0 20px color-mix(in srgb, var(--accent) 40%, transparent);
}

nav a.is-active,
.dropbtn.is-active {
  border-color: var(--accent2);
  background: color-mix(in srgb, var(--accent) 40%, transparent);
}

nav svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-item {
  position: relative;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 110%;
  left: 50%;
  min-width: 240px;
  padding: 6px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition:
    opacity 0.18s,
    transform 0.18s,
    visibility 0.18s;
}

.nav-item.open .dropdown-content,
.nav-item:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  width: 100%;
  justify-content: flex-start;
}

.player-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 12px 0 8px;
  transform: scale(0.8);
  transform-origin: top center;
  width: 125%;
  margin-left: -12.5%;
  margin-bottom: -6%;
}

@media (max-width: 900px) {
  .player-row {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
  }

  .logo {
    flex-shrink: 0;
  }

  .logo img {
    height: 104px;
    min-height: 104px;
  }

  nav {
    width: 100%;
  }
}

.player-card {
  text-align: center;
}

.vinyl-wrap {
  position: relative;
  display: inline-block;
  margin: 36px auto;
  width: 220px;
  height: 220px;
  overflow: visible;
}

.vinyl-player {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #111;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 60px color-mix(in srgb, var(--accent) 50%, transparent);
  transition:
    transform 0.7s cubic-bezier(0.22, 0.7, 0.2, 1),
    box-shadow 0.4s;
  z-index: 2;
  transform: translate(0, 0);
}

.vinyl-player:hover {
  transform: scale(1.05);
  box-shadow: 0 0 90px var(--accent);
}

.vinyl-player.idle-magic {
  animation: idleVinylGlow 4s ease-in-out infinite;
}

.vinyl-player.idle-magic:hover {
  animation: none;
}

.vinyl-player.idle-cue .vinyl-disc {
  animation-duration: 0.4s;
}

.vinyl-player.playing.presenter-live {
  box-shadow:
    0 0 86px var(--accent2),
    0 0 36px var(--accent);
  animation: presenterVinylPulse 1.6s ease-in-out infinite;
}

.idle-note {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -18px;
  z-index: 8;
  pointer-events: none;
  font-size: 20px;
  font-weight: 700;
  color: #ff7a1a;
  text-shadow:
    0 0 10px #ff9a3a,
    0 0 18px var(--accent);
  animation: idleNoteFly 1.55s ease-out forwards;
}

@keyframes idleVinylGlow {
  0%,
  100% {
    box-shadow:
      0 0 48px color-mix(in srgb, var(--accent) 55%, transparent),
      0 0 18px color-mix(in srgb, #ff7a1a 35%, transparent);
  }

  50% {
    box-shadow:
      0 0 78px color-mix(in srgb, var(--accent2) 70%, transparent),
      0 0 28px color-mix(in srgb, var(--accent) 40%, transparent);
  }
}

@keyframes idleNoteFly {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(132px, -6px) scale(0.55);
  }
}

@keyframes presenterVinylPulse {
  0%,
  100% {
    box-shadow:
      0 0 70px color-mix(in srgb, var(--accent2) 70%, transparent),
      0 0 28px var(--accent);
  }

  50% {
    box-shadow:
      0 0 110px var(--accent2),
      0 0 48px var(--accent);
  }
}

.vinyl-disc {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #0a0a0a;
  box-shadow: inset 0 0 30px #222;
  animation: spinIdle 50s linear infinite;
}

.vinyl-player.playing .vinyl-disc {
  animation: spin 3.5s linear infinite;
}

.vinyl-grooves {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 3%,
    rgba(255, 255, 255, 0.1) 3% 5%
  );
  opacity: 0.7;
}

.vinyl-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #111;
  overflow: hidden;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 0 16px color-mix(in srgb, var(--accent) 45%, transparent);
}

.vinyl-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.vinyl-center {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  z-index: 3;
  pointer-events: none;
}

.vinyl-center-hole {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  opacity: 0.55;
}

.visualizer {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.vinyl-player.playing .visualizer {
  opacity: 0.95;
}

.stats-card {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent2) 34%, transparent);
  border-radius: 22px;
  padding: 36px 18px 14px;
  margin-bottom: 14px;
  width: 100%;
  max-width: 520px;
  box-shadow: none;
  position: relative;
}

.stats-card.on-air-glow,
.stats-card.on-air-glow::after {
  filter: none;
  box-shadow: none;
}

.tonearm-dock {
  position: absolute;
  left: 168px;
  top: -34px;
  width: 260px;
  height: 78px;
  pointer-events: none;
  z-index: 6;
  overflow: visible;
}

.needle-contact {
  position: absolute;
  left: 118px;
  top: 48px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 210, 120, 0.75) 0%,
    rgba(255, 140, 40, 0.18) 45%,
    transparent 70%
  );
  opacity: 0;
  z-index: 7;
  pointer-events: none;
  transform: scale(0.4);
}

.stats-card.under-needle .needle-contact {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.35s,
    transform 0.35s;
}

.stats-card.playing-needle .needle-contact {
  animation: needleGlow 1.4s ease-in-out infinite;
}

.needle-wave {
  position: absolute;
  left: 118px;
  top: 52px;
  width: 48px;
  height: 22px;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 0) scale(0.6);
  transform-origin: center top;
}

.stats-card.under-needle .needle-wave {
  opacity: 0.55;
  transform: translate(-50%, 0) scale(0.85);
  transition:
    opacity 0.4s,
    transform 0.4s;
}

.stats-card.playing-needle .needle-wave {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.needle-wave i {
  position: absolute;
  left: 50%;
  top: 4px;
  width: 18px;
  height: 8px;
  margin-left: -9px;
  border: 1.5px solid color-mix(in srgb, var(--accent2) 70%, #ffd27a);
  border-radius: 50%;
  border-top-color: transparent;
  border-left-color: transparent;
  opacity: 0;
  filter: drop-shadow(
    0 0 6px color-mix(in srgb, var(--accent2) 45%, transparent)
  );
}

.stats-card.playing-needle .needle-wave i {
  animation: needleRipple 2.4s ease-out infinite;
}

.stats-card.playing-needle .needle-wave i:nth-child(2) {
  animation-delay: 0.8s;
}

.stats-card.playing-needle .needle-wave i:nth-child(3) {
  animation-delay: 1.6s;
}

.needle-wave:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2px;
  width: 28px;
  height: 10px;
  margin-left: -14px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 210, 120, 0.35),
    transparent 70%
  );
  opacity: 0;
}

.stats-card.playing-needle .needle-wave:before {
  opacity: 1;
  animation: needleWavePulse 1.8s ease-in-out infinite;
}

@keyframes needleRipple {
  0% {
    transform: scale(0.55) translateY(0);
    opacity: 0;
  }

  18% {
    opacity: 0.7;
  }

  100% {
    transform: scale(2.15) translateY(7px);
    opacity: 0;
  }
}

@keyframes needleWavePulse {
  0%,
  100% {
    transform: scaleX(0.85) scaleY(0.7);
    opacity: 0.25;
  }

  50% {
    transform: scaleX(1.15) scaleY(1);
    opacity: 0.55;
  }
}

.tonearm {
  position: absolute;
  left: 0;
  top: 0;
  width: 210px;
  height: 90px;
  pointer-events: none;
  z-index: 8;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.55));
  transform: scale(0.7);
  transform-origin: 16px 28px;
}

.tonearm-plinth {
  position: absolute;
  left: 0;
  top: 4px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(160deg, #4a4a52, #16161a 70%);
  border: 2px solid #cfcfd6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 8px 16px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.tonearm-rest {
  position: absolute;
  left: 40px;
  top: 10px;
  width: 12px;
  height: 28px;
  border-radius: 5px 5px 10px 10px;
  background: linear-gradient(180deg, #f0f0f4, #7a7a82 55%, #222);
  border: 1px solid #cfcfd6;
  z-index: 2;
}

.tonearm-rest:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffb26a, #d45500 60%, #4a1400);
  box-shadow: 0 0 8px #ff7a1a;
}

.tonearm-base {
  position: absolute;
  left: 6px;
  top: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 28%,
    #fff,
    #c9c9d0 28%,
    #6b6b73 68%,
    #1a1a1e
  );
  border: 3px solid #111;
  box-shadow:
    0 0 0 2px #bbb,
    0 8px 14px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.tonearm-base:before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #111;
  box-shadow: inset 0 0 8px #000;
}

.tonearm-base:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #777);
  border: 1px solid #222;
}

.tonearm-pivot {
  position: absolute;
  left: 12px;
  top: 16px;
  width: 20px;
  height: 20px;
  transform-origin: 10px 10px;
  transform: rotate(-38deg);
  transition: transform 1.15s cubic-bezier(0.45, 0.08, 0.18, 1);
  z-index: 6;
  will-change: transform;
}

.tonearm.cue .tonearm-pivot {
  transform: rotate(-26deg);
  transition-duration: 0.42s;
  transition-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tonearm.on .tonearm-pivot {
  transform: rotate(7.2deg);
  transition-duration: 1.05s;
  transition-timing-function: cubic-bezier(0.22, 0.7, 0.12, 1);
}

.tonearm.playing .tonearm-pivot {
  transform: rotate(7.4deg);
  animation: tonearmSweep 16.8s ease-in-out infinite;
}

.tonearm.magic .tonearm-pivot {
  animation: tonearmMagicPulse 1.15s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.tonearm.magic .tonearm-stylus {
  animation: needleShake 0.12s linear 8;
}

.tonearm.magic .tonearm-needle-glow {
  opacity: 1;
  animation: needleGlow 0.45s ease-in-out 4;
}

.tonearm.magic {
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.55))
    drop-shadow(
      6px 8px 10px color-mix(in srgb, var(--accent2) 40%, transparent)
    )
    drop-shadow(0 0 12px color-mix(in srgb, var(--accent) 45%, transparent));
}

@keyframes tonearmMagicPulse {
  0% {
    transform: rotate(8deg);
  }

  25% {
    transform: rotate(2deg);
  }

  55% {
    transform: rotate(16deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

.tonearm-counterweight {
  position: absolute;
  left: -30px;
  top: -5px;
  width: 28px;
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #b7b7bf 40%, #4c4c54);
  border: 2px solid #222;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.55),
    0 4px 8px rgba(0, 0, 0, 0.4);
}

.tonearm-counterweight:before {
  content: "";
  position: absolute;
  inset: 5px 4px auto;
  height: 4px;
  border-radius: 2px;
  background: repeating-linear-gradient(90deg, #222 0 3px, transparent 3px 6px);
}

.tonearm-tube {
  position: absolute;
  left: 10px;
  top: 4px;
  width: 150px;
  height: 10px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #d8d8e0 22%,
    #8a8a94 58%,
    #2b2b30 100%
  );
  border: 1px solid #eee;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.8),
    0 4px 8px rgba(0, 0, 0, 0.45);
  transform-origin: 8px 50%;
  transform: rotate(-16deg) translateY(-18px);
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tonearm.cue .tonearm-tube {
  transform: rotate(-10deg) translateY(-10px);
}

.tonearm.on .tonearm-tube,
.tonearm.playing .tonearm-tube {
  transform: rotate(1deg) translateY(14px);
  animation: none;
}

.tonearm.magic .tonearm-tube {
  transform: rotate(-6deg) translateY(-6px);
}

.tonearm-tube:before {
  content: "";
  position: absolute;
  left: 18px;
  top: -4px;
  width: 22px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(180deg, #efeff4, #555);
  border: 1px solid #111;
}

.tonearm-wire {
  position: absolute;
  left: 14px;
  top: -7px;
  width: 100px;
  height: 12px;
  border-top: 2px solid rgba(230, 230, 240, 0.75);
  border-radius: 60% 60% 0 0;
}

.tonearm-headshell {
  position: absolute;
  right: -26px;
  top: -10px;
  width: 42px;
  height: 20px;
  border-radius: 4px 12px 12px 4px;
  background: linear-gradient(180deg, #fff8e8, #c2b48a 46%, #5c5338);
  border: 2px solid #2a2416;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 6px 10px rgba(0, 0, 0, 0.4);
  transform: rotate(14deg);
}

.tonearm-headshell:before {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 18px;
  height: 3px;
  background: repeating-linear-gradient(90deg, #222 0 3px, #c9b887 3px 6px);
}

.tonearm-finger {
  position: absolute;
  right: 5px;
  top: -7px;
  width: 14px;
  height: 5px;
  border-radius: 6px;
  background: linear-gradient(180deg, #fff, #888);
  border: 1px solid #222;
}

.tonearm-cartridge {
  position: absolute;
  right: 3px;
  bottom: -8px;
  width: 18px;
  height: 11px;
  border-radius: 3px;
  background: linear-gradient(180deg, #3a3a40, #09090c);
  border: 1px solid #000;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.45);
}

.tonearm-stylus {
  position: absolute;
  left: 8px;
  bottom: -10px;
  width: 3px;
  height: 11px;
  border-radius: 1px;
  background: linear-gradient(180deg, #fff, #bbb 40%, #ffd27a);
  box-shadow: 0 0 8px rgba(255, 210, 120, 0.7);
  transform-origin: top center;
}

.tonearm.playing .tonearm-stylus {
  animation: needleShake 0.32s ease-in-out infinite;
}

.tonearm-needle-glow {
  position: absolute;
  left: 168px;
  top: 52px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 200, 110, 0.7),
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
}

.tonearm.playing .tonearm-needle-glow,
.tonearm.on .tonearm-needle-glow {
  opacity: 1;
}

.tonearm.playing .tonearm-needle-glow {
  animation: needleGlow 1.6s ease-in-out infinite;
}

@keyframes tonearmSweep {
  0% {
    transform: rotate(7.2deg);
  }
  18% {
    transform: rotate(8.05deg);
  }
  42% {
    transform: rotate(10.6deg);
  }
  63% {
    transform: rotate(11.4deg);
  }
  82% {
    transform: rotate(9.2deg);
  }
  100% {
    transform: rotate(7.2deg);
  }
}

@keyframes needleShake {
  0%,
  100% {
    transform: rotate(0) translateX(0);
  }
  22% {
    transform: rotate(0.28deg) translateX(0.12px);
  }
  48% {
    transform: rotate(-0.18deg) translateX(-0.1px);
  }
  73% {
    transform: rotate(0.2deg) translateX(0.08px);
  }
}

@keyframes needleGlow {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 0.9;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinIdle {
  to {
    transform: rotate(360deg);
  }
}

.play-hint {
  margin-top: 12px;
  padding: 10px 16px;
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 44px;
  min-height: 44px;
  border-radius: 999px;
  border: 2px solid var(--accent2);
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.4px;
  font-size: 0.78rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s,
    transform 0.55s cubic-bezier(0.22, 0.7, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  vertical-align: top;
}

.play-hint.show {
  opacity: 1;
  pointer-events: auto;
  animation: hintBreathe 0.58s ease-in-out infinite;
}

.play-hint.nudge {
  transform: translateY(-8px);
}

@keyframes hintBreathe {
  0%,
  100% {
    box-shadow:
      0 0 0 0 color-mix(in srgb, var(--accent2) 55%, transparent),
      0 0 10px color-mix(in srgb, var(--accent) 35%, transparent);
  }

  50% {
    box-shadow:
      0 0 0 7px color-mix(in srgb, var(--accent2) 0%, transparent),
      0 0 22px var(--accent2);
  }
}

.volume-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s,
    box-shadow 0.35s,
    border-color 0.35s;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent2) 42%, transparent);
  background: color-mix(in srgb, var(--accent) 10%, rgba(8, 4, 24, 0.28));
  box-shadow:
    0 0 18px color-mix(in srgb, var(--accent2) 14%, transparent),
    inset 0 0 10px rgba(255, 255, 255, 0.04);
}

.volume-control.show {
  opacity: 1;
  pointer-events: auto;
}

.volume-control:hover {
  border-color: color-mix(in srgb, var(--accent2) 70%, transparent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--accent2) 22%, transparent);
}

.vol-ico {
  font-size: 0.78rem;
  color: var(--accent2);
  text-shadow: 0 0 10px var(--accent2);
  line-height: 1;
  user-select: none;
}

.vol-pct {
  min-width: 2.1em;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #cbd5e1;
  font-variant-numeric: tabular-nums;
}

#volumeSlider {
  -webkit-appearance: none;
  appearance: none;
  width: 148px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  outline: none;
  margin: 0;
}

#volumeSlider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

#volumeSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--accent2);
  border: 2px solid var(--accent);
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent2) 55%, transparent);
  cursor: pointer;
}

#volumeSlider::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

#volumeSlider::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

#volumeSlider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent2);
  border: 2px solid var(--accent);
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent2) 55%, transparent);
  cursor: pointer;
}

.now-block {
  position: relative;
  margin-top: 24px;
}

.live-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 8px;
  animation: liveBadgeIdle 1.05s ease-in-out infinite;
}

.live-badge.on-air {
  animation: liveBadgeOnAir 0.42s ease-in-out infinite;
  box-shadow:
    0 0 16px var(--accent),
    0 0 28px color-mix(in srgb, var(--accent2) 45%, transparent);
}

.live-badge.presenter-on {
  animation: liveBadgeOnAir 0.32s ease-in-out infinite;
  box-shadow:
    0 0 22px var(--accent2),
    0 0 34px var(--accent);
}

@keyframes liveBadgeIdle {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
  }

  50% {
    opacity: 0.42;
    filter: brightness(1.35);
  }
}

@keyframes liveBadgeOnAir {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1.05);
  }

  50% {
    opacity: 0.72;
    filter: brightness(1.45);
  }
}

.now-playing {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent2),
    var(--accent3)
  );
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(12px);
  transition: 1s;
}

.now-playing.show {
  opacity: 1;
  transform: none;
}

.now-sub {
  margin-top: 8px;
  color: #94a3b8;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

#nowTease {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  color: #64748b;
  transition:
    color 0.45s,
    text-shadow 0.45s;
}

#nowTease.on-air {
  color: #cbd5e1;
  text-shadow: 0 0 10px color-mix(in srgb, var(--accent2) 45%, transparent);
}

#nowTease.presenter-on {
  color: #fff;
  text-shadow: 0 0 14px var(--accent2);
}

.mute-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: rgba(255, 0, 102, 0.15);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.mute-btn svg {
  width: 22px;
  height: 22px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.mute-btn.muted #muteSlash {
  opacity: 1 !important;
}

.mute-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 50%;
}

.mute-waves i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent2) 70%, transparent);
  opacity: 0;
}

.mute-btn.idle-waves .mute-waves i {
  animation: muteRipple 1.6s ease-out infinite;
}

.mute-btn.idle-waves .mute-waves i:nth-child(2) {
  animation-delay: 0.55s;
}

.mute-btn.idle-waves .mute-waves i:nth-child(3) {
  animation-delay: 1.1s;
}

.player-card:hover .mute-btn.idle-waves .mute-waves i {
  animation-duration: 0.55s;
}

@keyframes muteRipple {
  0% {
    transform: scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(2.35);
    opacity: 0;
  }
}

.stat-row {
  display: grid;
  grid-template-columns: 130px 2px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  min-height: 2.42em;
  position: relative;
  z-index: 4;
}

.stat-row:last-child {
  margin-bottom: 0;
}

.stat-row .label {
  min-width: 0;
  width: 100%;
  text-align: right;
  font-size: 0.86rem;
  font-weight: 900;
  color: var(--accent2);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 0 10px color-mix(in srgb, var(--accent2) 22%, transparent);
  position: relative;
  z-index: 5;
}

.stat-sep {
  width: 2px;
  height: 18px;
  background: linear-gradient(
    180deg,
    transparent,
    color-mix(in srgb, var(--accent2) 55%, transparent),
    transparent
  );
  opacity: 0.7;
  justify-self: center;
}

.stat-scroll {
  min-width: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 2.31em;
  display: flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent2) 45%, transparent);
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--accent) 16%, transparent),
    color-mix(in srgb, var(--accent2) 12%, transparent) 55%,
    transparent
  );
  padding: 0 20px;
  z-index: 3;
  box-sizing: border-box;
}

.stats-card.playing-needle .stat-row:first-of-type .stat-scroll,
.stats-card.on-air-glow #statScrollPrezenter,
.stats-card.on-air-glow #statScrollAudycja,
#statScrollPrezenter,
#statScrollAudycja {
  box-shadow: none;
  border: 1px solid color-mix(in srgb, var(--accent2) 45%, transparent);
}

.stat-scroll::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  pointer-events: none;
  z-index: 5;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--bg) 18%, transparent) 70%,
    color-mix(in srgb, var(--bg) 32%, transparent)
  );
}

.stat-scroll .value {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  font-size: clamp(0.95rem, 1.7vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.25px;
  line-height: 1;
  max-width: none;
  width: max-content;
  transform: translateZ(0);
  vertical-align: middle;
  position: relative;
  z-index: 2;
  will-change: transform;
  backface-visibility: hidden;
}

#stats-prezenter,
#stats-audycja {
  will-change: transform;
  max-width: none;
  overflow: visible;
  text-overflow: clip;
}

.stat-scroll .value.scrolling {
  animation: marqueeRtl 12s linear infinite;
}

.stat-scroll:hover .value,
.stat-scroll:focus-visible .value {
  animation-play-state: paused;
}

@keyframes marqueeRtl {
  0% {
    transform: translate3d(var(--scroll-from, 100%), 0, 0);
  }

  100% {
    transform: translate3d(var(--scroll-to, -100%), 0, 0);
  }
}

.player-restart {
  display: block;
  margin: 10px auto 2px;
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent2) 26%, transparent);
  background: color-mix(in srgb, var(--accent) 7%, rgba(8, 4, 24, 0.18));
  color: #94a3b8;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.62;
  transition:
    opacity 0.3s,
    border-color 0.3s,
    color 0.3s;
}

.player-restart:hover,
.player-restart:focus-visible {
  opacity: 0.95;
  color: #e2e8f0;
  border-color: color-mix(in srgb, var(--accent2) 48%, transparent);
  outline: none;
}

.live-text {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  color: transparent;
  margin: 12px 0;
  letter-spacing: 2px;
}

.live-presenter-now {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px auto 0;
  width: fit-content;
}

.live-presenter-now.show {
  display: flex;
}

.live-presenter-now.show.on-air-magic .live-presenter-avatar-wrap {
  animation: presenterConnectPop 0.85s cubic-bezier(0.18, 0.86, 0.22, 1);
}

.live-presenter-now.show.on-air-magic .live-presenter-ring {
  animation:
    liveRingPulse 0.7s ease-in-out infinite,
    presenterRingBurst 0.9s ease-out;
}

.live-presenter-avatar-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: visible;
  transform-origin: center center;
  will-change: transform;
}

.live-presenter-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid var(--accent2);
  box-shadow:
    0 0 18px color-mix(in srgb, var(--accent2) 55%, transparent),
    0 0 36px color-mix(in srgb, var(--accent) 35%, transparent);
  animation: liveRingPulse 1.15s ease-in-out infinite;
  pointer-events: none;
}

.live-presenter-avatar-wrap img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  display: block;
  background: #111;
}

.live-presenter-live {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #000;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 999px;
  z-index: 2;
  animation: liveBadgePulse 1s ease-in-out infinite;
}

.live-presenter-name {
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  letter-spacing: 0.4px;
}

@keyframes liveRingPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes liveBadgePulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes presenterConnectPop {
  0% {
    transform: scale(0.18) rotate(-28deg);
    filter: blur(10px) brightness(2.2);
  }

  55% {
    transform: scale(1.18) rotate(8deg);
    filter: blur(0) brightness(1.25);
  }

  100% {
    transform: scale(1) rotate(0);
    filter: none;
  }
}

@keyframes presenterRingBurst {
  0% {
    transform: scale(0.55);
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.presenter-burst {
  position: fixed;
  z-index: 8600;
  pointer-events: none;
  font-weight: 900;
  color: var(--accent2);
  text-shadow:
    0 0 12px var(--accent2),
    0 0 18px var(--accent);
  animation: presenterBurstFly 1.15s ease-out forwards;
}

@keyframes presenterBurstFly {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0);
  }

  100% {
    opacity: 0;
    transform: translate(var(--dx, 40px), var(--dy, -54px)) scale(0.35)
      rotate(18deg);
  }
}

.stats-side {
  position: relative;
}

.magic-avatar-dock {
  position: absolute;
  top: -18px;
  right: -6px;
  width: 87px;
  height: 87px;
  z-index: 16;
  pointer-events: none;
}

.magic-avatar-dock .magic-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent2) 75%, transparent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--accent2) 45%, transparent);
  opacity: 0.7;
  animation: magicDockPulse 2s ease-in-out infinite;
}

.magic-avatar-dock img {
  width: 87px;
  height: 87px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent) 90%, #fff);
  box-shadow:
    0 0 28px color-mix(in srgb, var(--accent) 55%, transparent),
    0 0 12px rgba(255, 255, 255, 0.25);
  background: #111;
  display: block;
}

.magic-avatar-dock.pop img {
  animation: magicPop 0.7s cubic-bezier(0.18, 0.86, 0.22, 1);
}

.magic-avatar-dock.off {
  opacity: 0.22;
  filter: grayscale(0.6);
}

.magic-spark {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #fff 0%,
    var(--accent2) 40%,
    transparent 70%
  );
  box-shadow:
    0 0 16px var(--accent2),
    0 0 28px var(--accent);
  z-index: 8600;
  pointer-events: none;
  opacity: 0;
}

.stat-mini-stack {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-right: 8px;
  overflow: hidden;
}

.stat-mini-av {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid color-mix(in srgb, var(--accent2) 80%, #fff);
  opacity: 0;
  transform: translateX(16px) scale(0.85);
  filter: blur(3px);
  box-shadow: 0 0 8px color-mix(in srgb, var(--accent2) 30%, transparent);
  z-index: 3;
  pointer-events: none;
}

.stat-mini-av.in {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition:
    opacity 0.45s,
    transform 0.5s cubic-bezier(0.18, 0.86, 0.22, 1),
    filter 0.45s;
}

.stat-mini-av.out {
  opacity: 0;
  transform: translateX(-16px) scale(0.8);
  filter: blur(4px);
  transition:
    opacity 0.45s,
    transform 0.5s cubic-bezier(0.18, 0.86, 0.22, 1),
    filter 0.45s;
}

.stat-scroll.has-mini {
  padding-left: 20px;
}

@keyframes magicDockPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.07);
  }
}

@keyframes magicPop {
  0% {
    transform: scale(0.15) rotate(-30deg);
    filter: blur(10px) brightness(2);
  }

  55% {
    transform: scale(1.16) rotate(8deg);
    filter: blur(0) brightness(1.2);
  }

  100% {
    transform: scale(1) rotate(0);
    filter: none;
  }
}

@media (max-width: 700px) {
  .stats-card {
    max-width: 100%;
    padding-top: 42px;
  }

  .stat-row {
    grid-template-columns: 106px 2px minmax(0, 1fr);
    gap: 8px;
  }

  .stat-row .label {
    font-size: 0.77rem;
  }

  .stat-scroll {
    height: 2.15em;
    padding: 0 15px;
  }

  .stat-scroll .value {
    font-size: 0.95rem;
  }

  .tonearm-dock {
    left: 122px;
    top: -28px;
    width: 200px;
  }

  .tonearm {
    transform: scale(0.58);
  }

  .magic-avatar-dock {
    width: 70px;
    height: 70px;
    top: -8px;
    right: 0;
  }

  .magic-avatar-dock img {
    width: 70px;
    height: 70px;
  }

  .stat-mini-stack,
  .stat-mini-av {
    width: 18px;
    height: 18px;
  }
}

.sidebar-buttons {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 800;
}

.sidebar-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 40%, transparent);
  transition: 0.3s;
}

.sidebar-btn:hover {
  transform: scale(1.1);
  background: var(--accent);
}

.sidebar-btn img,
.sidebar-btn svg {
  width: 28px;
  height: 28px;
}

.section {
  padding: 56px 0 52px;
  position: relative;
}

.section + .section {
  margin-top: 8px;
}

.section + .section::before {
  content: "";
  display: block;
  width: min(420px, 72%);
  height: 1px;
  margin: 0 auto 40px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent) 15%, transparent) 18%,
    color-mix(in srgb, var(--accent2) 70%, transparent) 50%,
    color-mix(in srgb, var(--accent) 15%, transparent) 82%,
    transparent
  );
  box-shadow: 0 0 12px color-mix(in srgb, var(--accent2) 22%, transparent);
  opacity: 0.45;
}

.section-title {
  font-family: "Outfit", system-ui, sans-serif;
  text-align: center;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #f8fafc;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.section-title::after,
.section > h2::after,
.promo-card h2::after,
.czat-copy h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.section-sub {
  font-family: "Manrope", system-ui, sans-serif;
  text-align: center;
  color: #94a3b8;
  margin-bottom: 32px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.team-member {
  width: 120px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition:
    opacity 0.35s,
    filter 0.35s,
    transform 0.35s;
}

.team-avatar-container {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent);
  box-shadow: 0 0 28px color-mix(in srgb, var(--accent) 45%, transparent);
  transition: 0.3s;
  position: relative;
}

.team-member:hover .team-avatar-container {
  transform: scale(1.08);
  border-color: var(--accent2);
}

.team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playing-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  font-size: 0.62rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.3s;
}

.team-member.playing {
  transform: translateY(-6px);
}

.team-member.playing:hover {
  transform: translateY(-6px) scale(1.02);
}

.team-member.playing .playing-badge {
  opacity: 1;
  transform: scale(1);
}

.team-member.playing .team-avatar-container,
.team-member.playing:hover .team-avatar-container {
  border-color: var(--accent2);
  box-shadow:
    0 0 40px var(--accent2),
    0 0 18px var(--accent);
  animation: playingMemberGlow 1.8s ease-in-out infinite;
}

@keyframes playingMemberGlow {
  0%,
  100% {
    box-shadow:
      0 0 40px var(--accent2),
      0 0 18px var(--accent);
  }

  50% {
    box-shadow:
      0 0 62px var(--accent2),
      0 0 30px var(--accent);
  }
}

.team-grid.live-lock .team-member:not(.playing) {
  opacity: 0.55;
  filter: grayscale(0.25);
}

.team-name {
  margin-top: 10px;
  font-weight: 800;
  font-size: 0.9rem;
}

.team-bio-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(340px, 92vw);
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 3px solid var(--accent2);
  border-radius: 20px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  z-index: 9500;
  transition: 0.35s;
  pointer-events: none;
  max-height: 80vh;
  overflow: auto;
}

.team-member:hover .team-bio-window {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.team-bio-window h3 {
  font-family: "Outfit", system-ui, sans-serif;
  text-align: center;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  color: transparent;
}

.team-bio-window p {
  font-size: 0.92rem;
  color: #cbd5e1;
  text-align: center;
}

.promo-card {
  max-width: 1080px;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 8px 0;
  backdrop-filter: none;
  overflow: visible;
}

.promo-row {
  display: flex;
  align-items: stretch;
  gap: 28px;
}

.promo-left {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.promo-latest {
  flex: 1.15;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 18px 228px 18px 0;
  gap: 14px;
  position: relative;
  overflow: visible;
  isolation: isolate;
  min-height: 230px;
}

.promo-how {
  gap: 10px;
}

.promo-how-copy {
  position: relative;
  z-index: 2;
}

.promo-magic {
  position: absolute;
  right: 0;
  top: 50%;
  width: 210px;
  height: 210px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.78;
  filter: none;
}

.promo-magic-orb {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 38% 32%,
    color-mix(in srgb, var(--accent2) 55%, transparent),
    color-mix(in srgb, var(--accent) 28%, transparent) 46%,
    transparent 72%
  );
  animation: promoOrbPulse 4.6s ease-in-out infinite;
}

.promo-magic-disc {
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background: repeating-radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.08) 0 2px,
      transparent 2px 7px
    ),
    radial-gradient(circle at 50% 50%, #1a1220 0 18%, #07060c 19% 100%);
  box-shadow:
    0 0 28px color-mix(in srgb, var(--accent2) 35%, transparent),
    inset 0 0 18px rgba(0, 0, 0, 0.55);
  animation: promoDiscSpin 18s linear infinite;
}

.promo-magic-disc:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  background: #111 url("https://radiodm.pl/image/logo_stop.png") center/cover
    no-repeat;
  box-shadow: 0 0 12px var(--accent2);
  border: 1px solid color-mix(in srgb, var(--accent2) 40%, transparent);
}

.promo-magic-ring {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent2) 45%, transparent);
  animation: promoRingSpin 9s linear infinite;
}

.promo-magic-note {
  position: absolute;
  font-weight: 800;
  color: var(--accent2);
  text-shadow: 0 0 12px var(--accent2);
  opacity: 0.75;
  animation: promoNoteFloat 3.4s ease-in-out infinite;
}

.promo-magic-note.n1 {
  left: 12px;
  top: 28px;
  font-size: 22px;
  animation-delay: 0.2s;
}

.promo-magic-note.n2 {
  right: 22px;
  top: 18px;
  font-size: 16px;
  animation-delay: 1.1s;
}

.promo-magic-note.n3 {
  right: 8px;
  bottom: 36px;
  font-size: 20px;
  animation-delay: 1.8s;
}

@keyframes promoDiscSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes promoRingSpin {
  0% {
    transform: rotate(0) scale(1);
    opacity: 0.35;
  }

  50% {
    transform: rotate(180deg) scale(1.06);
    opacity: 0.8;
  }

  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.35;
  }
}

@keyframes promoOrbPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes promoNoteFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
    opacity: 0.35;
  }

  50% {
    transform: translateY(-10px) rotate(8deg);
    opacity: 0.9;
  }
}

.promo-how-label {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--accent2);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.promo-how-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.45;
  margin: 0;
}

.promo-how-text {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.65;
}

.promo-how-slogan {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.55;
  text-shadow: 0 0 14px color-mix(in srgb, var(--accent2) 35%, transparent);
}

.promo-how-slogan strong {
  color: var(--accent2);
  font-weight: 900;
}

.promo-how-steps {
  margin: 16px auto 0;
  padding-left: 20px;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.65;
  text-align: left;
  display: inline-block;
  max-width: 360px;
}

.promo-how-steps li {
  margin-bottom: 4px;
}

.promo-how-steps strong {
  color: var(--accent2);
}

.promo-latest-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--accent2);
  text-transform: uppercase;
  margin-bottom: 2px;
}

#muzaLatestTitle,
#muzaLatestTitle2 {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(0.88rem, 2.2vw, 1.02rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  text-decoration: none;
}

#muzaLatestTitle.slide-in {
  animation: muzaSlideIn 0.28s ease-out;
}

@keyframes muzaSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#muzaLatestTitle:hover,
#muzaLatestTitle2:hover {
  color: var(--accent2);
}

#muzaLatestFrom,
#muzaLatestFrom2 {
  margin-top: 4px;
  font-size: 0.82rem;
  color: #94a3b8;
}

.wasza-track {
  min-width: 0;
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.promo-badge.hot-pulse {
  animation: hintBreathe 0.58s ease-in-out infinite;
}

.promo-card h2 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  color: transparent;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.12em;
}

.promo-card p {
  color: #cbd5e1;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.promo-card p strong {
  color: var(--accent2);
}

.cta {
  display: inline-flex;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #000;
  font-weight: 900;
  text-decoration: none;
  transition: 0.3s;
}

.cta:hover {
  transform: scale(1.05);
}

@media (max-width: 700px) {
  .promo-row {
    flex-direction: column;
    gap: 16px;
  }

  .promo-latest {
    text-align: center;
    padding: 150px 0 0;
    min-height: 0;
  }

  .promo-how-steps {
    text-align: left;
    display: inline-block;
  }

  .promo-magic {
    right: 50%;
    top: 0;
    transform: translateX(50%);
    width: 150px;
    height: 150px;
    opacity: 0.55;
  }
}

.czat-card {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  min-height: 280px;
  padding: 12px 0 8px 220px;
}

.czat-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.czat-copy h2 {
  margin-bottom: 12px;
}

.czat-copy p {
  color: #cbd5e1;
  margin: 0 auto 12px;
  max-width: 40em;
  font-size: 0.95rem;
  line-height: 1.65;
}

.czat-copy p strong {
  color: var(--accent2);
}

.czat-copy a {
  color: var(--accent2);
  font-weight: 800;
  text-decoration: none;
}

.czat-copy a:hover {
  text-decoration: underline;
}

.czat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.czat-magic {
  position: absolute;
  left: 0;
  top: 50%;
  width: 210px;
  height: 210px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.92;
}

.czat-wood {
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  background: repeating-linear-gradient(
      118deg,
      rgba(90, 48, 18, 0.18) 0 3px,
      transparent 3px 8px
    ),
    repeating-linear-gradient(
      98deg,
      rgba(255, 214, 150, 0.12) 0 2px,
      transparent 2px 11px
    ),
    radial-gradient(circle at 36% 28%, #e8c089 0 12%, transparent 28%),
    radial-gradient(circle at 50% 50%, #c8894a 0 38%, #8a4e22 62%, #4a2612 100%);
  box-shadow:
    0 0 28px rgba(166, 92, 32, 0.45),
    inset 0 0 18px rgba(40, 18, 6, 0.55);
  border: 7px solid #6b3b18;
  animation: promoDiscSpin 26s linear infinite;
}

.czat-wood:before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    rgba(90, 48, 18, 0.22) 0 2px,
    transparent 2px 9px
  );
  opacity: 0.7;
}

.czat-wood:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  border-radius: 50%;
  background: #3a1d0b url("https://radiodm.pl/image/logo_stop.png") center/cover
    no-repeat;
  box-shadow:
    0 0 12px rgba(196, 138, 70, 0.55),
    inset 0 0 8px rgba(0, 0, 0, 0.2);
  border: 2px solid #8a5424;
}

.czat-wood-ring {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 2px dashed rgba(210, 150, 80, 0.55);
  animation: promoRingSpin 14s linear infinite;
}

.czat-bubble {
  position: absolute;
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent) 22%, rgba(8, 4, 24, 0.55));
  border: 1px solid color-mix(in srgb, var(--accent2) 45%, transparent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 10px;
  white-space: nowrap;
  box-shadow: 0 0 16px color-mix(in srgb, var(--accent2) 25%, transparent);
  animation: czatBubbleFloat 3.6s ease-in-out infinite;
}

.czat-bubble.b1 {
  left: 18px;
  top: 28px;
  animation-delay: 0.2s;
}

.czat-bubble.b2 {
  right: 16px;
  top: 62px;
  animation-delay: 1.1s;
}

.czat-bubble.b3 {
  left: 36px;
  bottom: 34px;
  animation-delay: 1.9s;
}

@keyframes czatBubbleFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .czat-card {
    padding: 150px 0 0;
    min-height: 0;
  }

  .czat-magic {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    opacity: 0.7;
  }
}

.foto-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.foto-item {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--accent);
  aspect-ratio: 16/10;
  position: relative;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.foto-item:hover img {
  transform: scale(1.08);
}

.foto-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  font-size: 0.85rem;
  font-weight: 700;
  transform: translateY(100%);
  transition: 0.3s;
}

.foto-item:hover .foto-caption {
  transform: none;
}

.foto-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.foto-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: rgba(255, 0, 136, 0.2);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.foto-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.foto-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--accent);
  cursor: pointer;
}

.foto-dot.active {
  background: var(--accent2);
  transform: scale(1.2);
}

@keyframes fadeUp {
  to {
    opacity: 1;
  }
}

.opinie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.opinia-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 6px 4px 10px;
  text-align: left;
  box-shadow: none;
  backdrop-filter: none;
}

.opinia-quote {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 2px solid color-mix(in srgb, var(--accent2) 55%, transparent);
  text-shadow: 0 0 18px color-mix(in srgb, var(--accent) 18%, transparent);
}

.opinia-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.opinia-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--accent2) 50%, transparent);
  opacity: 0.92;
  filter: drop-shadow(
    0 0 10px color-mix(in srgb, var(--accent2) 28%, transparent)
  );
}

.opinia-nick {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.opinia-rank {
  font-size: 0.72rem;
  color: #94a3b8;
  letter-spacing: 0.2px;
}

.opinia-sign {
  margin-top: 2px;
  font-size: 0.7rem;
  font-style: italic;
  color: color-mix(in srgb, var(--accent2) 70%, #fff);
  opacity: 0.85;
}

.btn-ghost {
  margin: 20px auto 0;
  display: inline-flex;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  background: rgba(255, 0, 136, 0.15);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.btn-ghost.is-active {
  border-color: var(--accent2);
}

.btn-ghost:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.feature-card {
  max-width: 920px;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.about-rdm {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  min-height: 280px;
  padding: 12px 0 8px 220px;
}

.about-rdm-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.about-rdm-copy p {
  color: #cbd5e1;
  margin: 0 auto 12px;
  max-width: 40em;
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-rdm-copy p strong {
  color: var(--accent2);
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 16px 0 4px;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent2) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #fff;
  text-shadow: 0 0 10px color-mix(in srgb, var(--accent2) 35%, transparent);
}

.about-magic {
  position: absolute;
  left: 0;
  top: 50%;
  width: 210px;
  height: 210px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.88;
}

.about-orb {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 38% 32%,
    color-mix(in srgb, var(--accent2) 55%, transparent),
    color-mix(in srgb, var(--accent) 28%, transparent) 46%,
    transparent 72%
  );
  animation: promoOrbPulse 4.6s ease-in-out infinite;
}

.about-ring {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent2) 45%, transparent);
  animation: promoRingSpin 9s linear infinite;
}

.about-disc {
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background: repeating-radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.08) 0 2px,
      transparent 2px 7px
    ),
    radial-gradient(circle at 50% 50%, #1a1220 0 18%, #07060c 19% 100%);
  box-shadow:
    0 0 28px color-mix(in srgb, var(--accent2) 35%, transparent),
    inset 0 0 18px rgba(0, 0, 0, 0.55);
  animation: promoDiscSpin 18s linear infinite;
}

.about-disc:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border-radius: 50%;
  background: #111 url("https://radiodm.pl/image/logo_stop.png") center/cover
    no-repeat;
  box-shadow: 0 0 12px var(--accent2);
  border: 1px solid color-mix(in srgb, var(--accent2) 40%, transparent);
}

.about-note {
  position: absolute;
  font-weight: 800;
  color: var(--accent2);
  text-shadow: 0 0 12px var(--accent2);
  animation: promoNoteFloat 3.4s ease-in-out infinite;
}

.about-note.n1 {
  left: 12px;
  top: 28px;
  font-size: 22px;
  animation-delay: 0.2s;
}

.about-note.n2 {
  right: 22px;
  top: 18px;
  font-size: 16px;
  animation-delay: 1.1s;
}

.about-note.n3 {
  right: 8px;
  bottom: 36px;
  font-size: 20px;
  animation-delay: 1.8s;
}

@media (max-width: 700px) {
  .about-rdm {
    padding: 150px 0 0;
    min-height: 0;
  }

  .about-magic {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    opacity: 0.65;
  }
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.partner-item img {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(0.8);
  transition: 0.4s;
}

.partner-item:hover img {
  opacity: 1;
  filter: none;
  transform: scale(1.15);
}

footer {
  margin-top: 60px;
  background: #0a0a12;
  border-top: 2px solid color-mix(in srgb, var(--accent) 40%, transparent);
  padding: 36px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}

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

.footer-logo-bottom img {
  width: 70px;
  cursor: pointer;
}

.footer-desc {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 8px 0;
}

.theme-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  font-size: 0.85rem;
}

.theme-selector select {
  background: #111;
  border: 1px solid #333;
  color: #ddd;
  padding: 4px 8px;
  border-radius: 6px;
}

.footer-links {
  list-style: none;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.9;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: #151515;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.footer-social img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.dm-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.dm-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.dm-popup {
  width: 94%;
  max-width: 860px;
  height: 90%;
  max-height: 840px;
  background: var(--glass);
  border: 4px solid var(--accent);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.dm-popup-header {
  height: 60px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-weight: 900;
  letter-spacing: 2px;
}

.dm-popup-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 24px;
}

.dm-popup iframe {
  width: 100%;
  height: calc(100% - 60px);
  border: none;
  background: #000;
}

.side-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  overflow: hidden;
}

.side-panel-overlay.show {
  opacity: 1;
  visibility: visible;
}

.side-panel-overlay.show::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
      circle at 18% 72%,
      color-mix(in srgb, var(--accent) 38%, transparent),
      transparent 42%
    ),
    radial-gradient(
      circle at 82% 22%,
      color-mix(in srgb, var(--accent2) 34%, transparent),
      transparent 46%
    );
  animation: magicFog 6s ease-in-out infinite;
  pointer-events: none;
}

.side-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(94vw, 720px);
  height: 100%;
  background: var(--glass);
  border-left: 4px solid var(--accent);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transition:
    right 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s,
    filter 0.45s;
  overflow: hidden;
}

.side-panel.open {
  right: 0;
  box-shadow:
    -18px 0 48px color-mix(in srgb, var(--accent) 42%, transparent),
    -4px 0 0 var(--accent2);
}

.side-panel.magic-ramowka {
  --magicA: var(--accent2);
  --magicB: var(--accent);
}
.side-panel.magic-ekipa {
  --magicA: var(--accent);
  --magicB: var(--accent3);
}
.side-panel.magic-pozdrowienia {
  --magicA: #ffd27a;
  --magicB: var(--accent2);
}

.side-panel.open.magic-cast {
  animation: panelPortalIn 0.7s cubic-bezier(0.18, 0.86, 0.22, 1);
}

.side-panel-header {
  height: 60px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  letter-spacing: 1.4px;
}

.side-panel.magic-cast .side-panel-header {
  background: linear-gradient(
    90deg,
    var(--magicB),
    var(--magicA),
    var(--magicB)
  );
  background-size: 200% 100%;
  animation: headerShine 2.4s linear infinite;
}

.side-panel-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  opacity: 0.55;
}

.side-panel-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 26px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.side-panel-close:hover {
  transform: rotate(90deg) scale(1.08);
  box-shadow: 0 0 16px #fff;
}

.side-panel-iframe {
  flex: 1;
  border: none;
  background: #000;
  position: relative;
  z-index: 1;
}

.side-panel-veil {
  position: absolute;
  inset: 60px 0 0;
  z-index: 4;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 50% 40%,
    color-mix(in srgb, var(--magicA, var(--accent2)) 22%, rgba(5, 5, 16, 0.86)),
    rgba(5, 5, 16, 0.94)
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s;
}

.side-panel.open.magic-cast .side-panel-veil.busy {
  opacity: 1;
  pointer-events: none;
}

.veil-disc {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 2px dashed color-mix(in srgb, var(--magicA, var(--accent2)) 70%, #fff);
  box-shadow:
    0 0 24px color-mix(in srgb, var(--magicA, var(--accent2)) 40%, transparent),
    inset 0 0 18px rgba(0, 0, 0, 0.45);
  background: radial-gradient(
    circle at 50% 50%,
    #1a1220 0 18%,
    #07060c 19% 100%
  );
  animation: promoDiscSpin 2.4s linear infinite;
}

.veil-label {
  margin-top: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  font-size: 0.78rem;
  color: #fff;
  text-shadow: 0 0 12px var(--accent2);
}

.side-panel-magic {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.side-panel-magic .orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 38% 32%,
    color-mix(in srgb, var(--magicA) 55%, transparent),
    transparent 70%
  );
  filter: blur(8px);
  opacity: 0;
  animation: orbDrift 5.5s ease-in-out infinite;
}

.side-panel.open .side-panel-magic .orb {
  opacity: 0.55;
}

.side-panel-magic .orb.o1 {
  top: 70px;
  left: -40px;
}
.side-panel-magic .orb.o2 {
  bottom: 40px;
  right: -50px;
  animation-delay: -2s;
}

.side-panel-magic .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  border: 2px dashed color-mix(in srgb, var(--magicA) 55%, transparent);
  opacity: 0;
  transform: scale(0.4);
}

.side-panel.open.magic-cast .side-panel-magic .ring {
  animation: ringBurst 0.9s ease-out forwards;
}

.magic-sparkle,
.magic-rune,
.magic-note {
  position: fixed;
  z-index: 100000;
  pointer-events: none;
  font-weight: 900;
  text-shadow:
    0 0 12px var(--accent2),
    0 0 18px var(--accent);
}

.magic-sparkle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #fff,
    var(--accent2) 55%,
    transparent 72%
  );
  animation: sparkFly 0.95s ease-out forwards;
}

.magic-rune,
.magic-note {
  color: var(--accent2);
  animation: runeFly 1.15s ease-out forwards;
}

@keyframes magicFog {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-3%, 2%) scale(1.06);
    opacity: 1;
  }
}

@keyframes panelPortalIn {
  0% {
    filter: blur(16px) brightness(1.8);
    transform: translateX(40px) scale(0.96);
  }
  60% {
    filter: blur(0) brightness(1.15);
  }
  100% {
    filter: none;
    transform: none;
  }
}

@keyframes headerShine {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(28px, -18px) scale(1.12);
  }
}

@keyframes ringBurst {
  0% {
    opacity: 0;
    transform: scale(0.35) rotate(0);
  }
  35% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: scale(1.7) rotate(140deg);
  }
}

@keyframes sparkFly {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx, 40px), var(--dy, -70px)) scale(0.2);
  }
}

@keyframes runeFly {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx, 30px), var(--dy, -80px)) scale(0.4)
      rotate(24deg);
  }
}

.new-audycja-item {
  padding: 12px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid color-mix(in srgb, var(--accent2) 30%, transparent);
}
.new-audycja-title {
  font-weight: 800;
  color: var(--accent2);
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  gap: 8px;
}
.new-audycja-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #cbd5e1;
}
.page-view-lead {
  text-align: center;
  color: #94a3b8;
  max-width: 40em;
  margin: 0 auto 22px;
  line-height: 1.6;
  font-size: 0.95rem;
}
.page-view-pane {
  min-height: 50vh;
}
.ramowka-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
}
.ramowka-tab {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent2) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  font: inherit;
}
.ramowka-tab.is-on {
  border-color: var(--accent2);
  background: color-mix(in srgb, var(--accent) 40%, transparent);
}
.ramowka-row {
  display: grid;
  grid-template-columns: 120px 72px minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--accent2) 18%, transparent);
}
.ramowka-row.is-now {
  background: color-mix(in srgb, var(--accent2) 12%, transparent);
  border-radius: 12px;
}
.ramowka-now {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  color: #000;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  padding: 3px 8px;
  border-radius: 999px;
  width: fit-content;
}
.ramowka-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.ekipa-view-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.ekipa-card {
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent2) 35%, transparent);
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  text-align: center;
}
.ekipa-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}
.ekipa-card h3 {
  margin: 10px 0 6px;
}
.ekipa-card .ekipa-bio {
  display: none;
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.92rem;
  text-align: left;
  margin-top: 8px;
}
.ekipa-card.open .ekipa-bio {
  display: block;
}
@media (max-width: 700px) {
  .ramowka-row {
    grid-template-columns: 1fr;
  }
}

.new-audycja-panel {
  position: fixed;
  top: 62px;
  left: 16px;
  z-index: 9200;
  width: 248px;
  max-width: calc(100vw - 28px);
  background: var(--glass);
  backdrop-filter: blur(18px);
  border: 2px solid color-mix(in srgb, var(--accent2) 65%, transparent);
  border-radius: 18px;
  overflow: hidden;
  display: none;
  box-shadow: 0 0 28px color-mix(in srgb, var(--accent) 35%, transparent);
  animation: liveChatPulse 2.2s ease-in-out infinite;
  transition:
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.4s,
    border-radius 0.4s;
}
.new-audycja-panel.is-on {
  display: block;
}
.new-audycja-panel.peek {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}
.new-audycja-panel.peek .new-audycja-body,
.new-audycja-panel.peek .new-audycja-close,
.new-audycja-panel.peek .new-audycja-title-block {
  display: none;
}
.new-audycja-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--accent) 35%, transparent),
    color-mix(in srgb, var(--accent2) 22%, transparent)
  );
}
.new-audycja-panel.peek .new-audycja-head {
  padding: 11px;
  justify-content: center;
  height: 58px;
}
.new-audycja-panel.peek .new-audycja-head::before {
  content: "🆕";
  font-size: 22px;
}
.new-audycja-title-block {
  min-width: 0;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  color: #fff;
  line-height: 1.2;
}
.new-audycja-title-block small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent2);
}
.new-audycja-close {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.new-audycja-body {
  padding: 10px 12px 14px;
  max-height: 280px;
  overflow: auto;
}
@media (max-width: 560px) {
  .new-audycja-panel {
    top: 108px;
    left: 10px;
  }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  background: rgba(10, 0, 30, 0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 2, 25, 0.96);
  border-top: 2px solid var(--accent);
  padding: 16px 20px;
  z-index: 99999;
  transform: translateY(110%);
  transition: 0.5s;
}

.cookie-banner.show {
  transform: none;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

.cookie-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 800;
  cursor: pointer;
}

.cookie-btn.accept {
  background: var(--accent);
  color: #fff;
}

.cookie-btn.essential {
  background: rgba(255, 255, 255, 0.1);
  color: #ccc;
  border: 1px solid var(--accent);
}

.buycoffee-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 99998;
  max-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.55s ease,
    visibility 0.55s,
    transform 0.55s ease;
}

.buycoffee-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.buycoffee-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
}

.buycoffee-close:hover {
  background: var(--accent);
}

.buycoffee-wrapper {
  position: relative;
  padding: 14px 12px 12px;
  background: var(--glass);
  border: 2px solid var(--accent);
  border-radius: 16px;
  text-align: center;
  font-size: 0.85rem;
}

/* Hint „CZAT NA ŻYWO” – delikatny, obok schowanego bubble */
.live-chat-hint {
  position: fixed;
  top: 72px;
  right: 78px;
  z-index: 9190;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(8, 4, 24, 0.88);
  border: 1px solid color-mix(in srgb, var(--accent2) 55%, transparent);
  color: var(--accent2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition:
    opacity 0.6s ease,
    visibility 0.6s,
    transform 0.6s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 0 16px color-mix(in srgb, var(--accent) 25%, transparent);
}

.live-chat-hint.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 560px) {
  .live-chat-hint {
    top: 118px;
    right: 72px;
    font-size: 0.65rem;
    padding: 5px 10px;
  }
}

#android-widget-popup {
  position: fixed;
  bottom: 22px;
  left: 18px;
  z-index: 99998;
  width: 280px;
  max-width: 88vw;
  background: #fff;
  color: #222;
  border: 3px solid var(--accent);
  border-radius: 14px;
  padding: 14px;
  font-size: 13px;
  text-align: center;
  opacity: 0;
  transition: 0.5s;
  display: none;
}

#android-widget-popup.show {
  display: block;
  opacity: 1;
}

#android-widget-popup .widget-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
}

#rdm-now {
  display: none !important;
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.czat-actions .btn-ghost {
  margin: 0;
}

/* view-router + mobile nav: in-page RAMÓWKA/EKIPA/POZDROWIENIA, hamburger */

.rdm-embed-section {
  scroll-margin-top: 88px;
}

#ekipa {
  scroll-margin-top: 88px;
}
nav a.nav-pulse {
  animation: hintBreathe 0.58s ease-in-out 2;
}
#ramowka.rdm-embed-section {
  padding: 20px 0 0;
}
#ramowka.rdm-embed-section .section-title {
  margin-bottom: 8px;
}
#ramowka.rdm-embed-section + .section {
  padding-top: 8px;
  margin-top: 0;
}
#ramowka.rdm-embed-section + .section::before {
  display: none;
}
#pozdrowienia {
  display: none !important;
}

.rdm-embed-frame {
  width: 100%;
  border: 0;
  background: transparent;
  display: block;
  min-height: 280px;
  height: 280px;
  border-radius: 16px;
}
.rdm-embed-frame.is-tall {
  min-height: 560px;
  height: 560px;
}
@media (max-width: 700px) {
  .rdm-embed-frame {
    min-height: 260px;
    height: 260px;
  }
  .rdm-embed-frame.is-tall {
    min-height: 480px;
    height: 480px;
  }
}
body.view-open .homepage-only {
  display: none !important;
}
body.view-open .back-to-top,
body.view-open #android-widget-popup {
  display: none !important;
}
body.nav-open {
  overflow: hidden;
}
#contentView {
  display: none;
  padding: 12px 0 40px;
}
body.view-open #contentView {
  display: block;
}
.content-view-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.content-view-title {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  color: transparent;
}
.content-view-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 2px solid var(--accent2);
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  font: inherit;
}
.content-view-close:hover {
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent2) 45%, transparent);
}
.content-view-frame-wrap {
  position: relative;
  border: 2px solid color-mix(in srgb, var(--accent) 55%, transparent);
  border-radius: 18px;
  overflow: hidden;
  background: var(--glass);
  min-height: 70vh;
  height: calc(100vh - 220px);
}
.content-view-frame {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  border: 0;
  background: transparent;
  display: block;
}
.content-view-veil {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  background: radial-gradient(
    circle at 50% 40%,
    color-mix(in srgb, var(--accent2) 22%, rgba(5, 5, 16, 0.86)),
    rgba(5, 5, 16, 0.94)
  );
  z-index: 2;
}
.content-view-veil.busy {
  display: grid;
}
#navToggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  z-index: 9100;
}
#navToggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s;
}
body.nav-open #navToggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open #navToggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open #navToggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9050;
}
body.nav-open .nav-overlay {
  display: block;
}
nav#mainNav a,
nav#mainNav .dropbtn {
  position: relative;
}
nav#mainNav a.is-active::after,
nav#mainNav .dropbtn.is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 999px;
}
.dropbtn .nav-caret {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s;
}
.nav-item.open .dropbtn .nav-caret {
  transform: rotate(180deg);
}
@media (max-width: 900px) {
  #navToggle {
    display: flex;
  }
  .site-header {
    align-items: center;
  }
  nav#mainNav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100vh;
    background: var(--glass);
    backdrop-filter: blur(18px);
    border-left: 3px solid var(--accent);
    z-index: 9080;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 8px;
    padding: 72px 16px 24px;
    overflow: auto;
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.nav-open nav#mainNav {
    transform: translateX(0);
  }
  nav#mainNav a,
  nav#mainNav .dropbtn {
    width: 100%;
    justify-content: flex-start;
  }
  .dropdown-content {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    display: none;
    padding: 0 0 0 10px;
  }
  .nav-item.open .dropdown-content {
    display: flex;
  }
}

.footer-heading {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer-onair {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
}
.footer-bottom {
  grid-column: 1 / -1;
}
.footer-bottom a {
  color: #77ccff;
}
