:root {
  --bg: #050509;
  --card: rgba(255,255,255,.075);
  --line: rgba(255,255,255,.16);
  --text: #ffffff;
  --muted: #c8c8dc;
  --pink: #ff2fd6;
  --violet: #8b5cff;
  --blue: #35d6ff;
  --green: #35ff9b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,47,214,.34), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(53,214,255,.28), transparent 32%),
    radial-gradient(circle at 52% 92%, rgba(139,92,255,.22), transparent 38%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 78%);
}

.page {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 44px;
}

.brand {
  font-weight: 900;
  letter-spacing: .14em;
  text-decoration: none;
  color: #fff;
  text-shadow: 0 0 24px rgba(53,214,255,.45);
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.hero {
  min-height: 58vh;
  display: grid;
  align-items: center;
  padding: 54px 0 64px;
}

.hero-card {
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,47,214,.18), rgba(53,214,255,.12)),
    rgba(5,5,9,.58);
  box-shadow: 0 28px 110px rgba(0,0,0,.46), inset 0 0 0 1px rgba(255,255,255,.045);
  backdrop-filter: blur(16px);
}

.kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 9vw, 112px);
  line-height: .9;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255,47,214,.45),
    0 0 42px rgba(53,214,255,.35);
}

.subbrand {
  display: inline-block;
  margin-top: 12px;
  font-size: clamp(28px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: .08em;
  background: linear-gradient(90deg, var(--pink), var(--violet), var(--blue));
  -webkit-background-clip: text;
  color: transparent;
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  background: rgba(255,255,255,.08);
}

.button--primary {
  border: 0;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  box-shadow: 0 0 34px rgba(53,214,255,.26);
}

.section-title {
  margin: 0 0 20px;
  font-size: clamp(30px, 5vw, 52px);
}

.artists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.artist-card {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,47,214,.45), transparent 36%),
    radial-gradient(circle at 80% 15%, rgba(53,214,255,.35), transparent 34%),
    rgba(255,255,255,.07);
  text-decoration: none;
  color: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
}

.artist-card--green {
  background:
    radial-gradient(circle at 30% 20%, rgba(53,255,155,.42), transparent 36%),
    radial-gradient(circle at 82% 22%, rgba(53,214,255,.28), transparent 34%),
    rgba(255,255,255,.07);
}

.artist-card__image {
  position: absolute;
  inset: 0;
  background: var(--image) center / cover no-repeat;
  opacity: .82;
  transform: scale(1.02);
}

.artist-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.08) 58%, rgba(0,0,0,.38));
}

.artist-card__body {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.artist-card__name {
  margin: 0;
  font-size: 32px;
  line-height: 1;
}

.artist-card__text {
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.45;
}

.artist-card__button {
  display: inline-flex;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  font-weight: 800;
}

.footer {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 850px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .artists { grid-template-columns: 1fr; }
  .artist-card { min-height: 360px; }
}

/* Platform images */
.hero-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0,0,0,.82), rgba(0,0,0,.48)),
    url("/assets/media/platform/hero-desktop.webp") center / cover no-repeat;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 18%, rgba(255,47,214,.28), transparent 32%),
    radial-gradient(circle at 78% 20%, rgba(53,214,255,.24), transparent 34%),
    linear-gradient(to top, rgba(0,0,0,.78), transparent 60%);
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.platform-logo {
  display: block;
  width: min(280px, 70vw);
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 26px rgba(53,214,255,.32));
}

@media (max-width: 850px) {
  .hero-card {
    background:
      linear-gradient(135deg, rgba(0,0,0,.82), rgba(0,0,0,.42)),
      url("/assets/media/platform/hero-mobile.webp") center / cover no-repeat;
  }

  .platform-logo {
    width: min(240px, 76vw);
  }
}


/* Premium platform polish 20260614 START */

/* Убираем старую картинку-логотип с шахматным фоном */
.platform-logo {
  display: none !important;
}

/* Hero: дороже и спокойнее */
.hero {
  min-height: auto;
}

.hero-card {
  isolation: isolate;
}

@media (min-width: 851px) {
  .page {
    width: min(1120px, calc(100% - 48px));
    padding-top: 24px;
  }

  .topbar {
    margin-bottom: 24px;
  }

  .hero {
    padding: 22px 0 44px;
  }

  .hero-card {
    min-height: 520px;
    display: grid;
    place-items: center;
    padding: 54px 44px;
    background:
      linear-gradient(90deg, rgba(5,5,9,.94) 0%, rgba(5,5,9,.76) 48%, rgba(5,5,9,.46) 100%),
      url("/assets/media/platform/hero-desktop.webp") center / cover no-repeat;
  }

  h1 {
    font-size: clamp(58px, 7vw, 86px);
    letter-spacing: .09em;
  }

  .subbrand {
    font-size: clamp(30px, 4vw, 48px);
  }

  .lead {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
  }

  .actions {
    justify-content: center;
  }
}

/* Карточки артистов: единый премиальный вид */
.artist-card {
  isolation: isolate;
}

.artist-card__image {
  opacity: .9;
}

.artist-card__shade {
  background:
    linear-gradient(to top, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 34%, rgba(0,0,0,.16) 66%, rgba(0,0,0,.46) 100%);
}

.artist-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 150px;
}

.artist-card__text {
  color: #ececff;
}

.artist-card__button {
  min-width: 144px;
  justify-content: center;
  margin-top: auto;
  background: rgba(255,255,255,.16);
}

/* Телефон: не ломаем, только делаем аккуратнее */
@media (max-width: 850px) {
  .page {
    width: min(100% - 24px, 520px);
    padding-top: 20px;
  }

  .topbar {
    margin-bottom: 22px;
  }

  .hero {
    padding: 12px 0 30px;
  }

  .hero-card {
    min-height: 520px;
    padding: 34px 20px;
    border-radius: 28px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .subbrand {
    font-size: clamp(26px, 8vw, 36px);
  }

  .lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .actions {
    justify-content: center;
  }

  .button {
    min-width: 150px;
  }

  .artists {
    gap: 16px;
  }

  .artist-card {
    min-height: 380px;
    border-radius: 26px;
  }

  .artist-card__body {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .artist-card__name {
    font-size: 30px;
  }

  .artist-card__button {
    width: 100%;
  }
}

/* Premium platform polish 20260614 END */


/* Premium platform polish 20260614 STEP2 START */

/* Hero делаем плотнее и дороже */
.hero-card {
  box-shadow:
    0 28px 110px rgba(0,0,0,.52),
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 0 70px rgba(139,92,255,.14);
}

.button {
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

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

.button:not(.button--primary) {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.30);
}

@media (min-width: 851px) {
  .hero-card {
    min-height: 460px;
    padding: 46px 42px;
  }

  .lead {
    margin-top: 18px;
  }

  .actions {
    margin-top: 24px;
  }

  .artists {
    gap: 20px;
  }

  .artist-card {
    min-height: 370px;
  }
}

/* Карточки артистов: кнопки ближе к общему стилю платформы */
.artist-card {
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.artist-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.30);
  box-shadow: 0 30px 100px rgba(0,0,0,.42);
}

.artist-card__button {
  color: #fff;
  background: linear-gradient(90deg, rgba(255,47,214,.72), rgba(53,214,255,.72));
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 0 26px rgba(53,214,255,.18);
}

/* Телефон: убираем лишнюю высоту hero */
@media (max-width: 850px) {
  .hero-card {
    min-height: 430px;
    padding: 30px 18px;
    background-position: center top;
  }

  .kicker {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .lead {
    margin-top: 18px;
  }

  .actions {
    margin-top: 22px;
    gap: 12px;
  }

  .button {
    min-height: 46px;
  }

  .artist-card {
    min-height: 360px;
  }

  .artist-card__text {
    margin-bottom: 14px;
  }
}

/* Premium platform polish 20260614 STEP2 END */


/* Premium platform polish 20260614 STEP3 HERO START */

/* Первый блок: меньше баннера, больше премиального входа */
.hero-card {
  text-align: left;
}

.hero-card::before {
  background:
    radial-gradient(circle at 24% 22%, rgba(255,47,214,.24), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(53,214,255,.22), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.58) 52%, rgba(0,0,0,.34));
}

.hero-card > * {
  max-width: 620px;
}

.subbrand {
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.actions {
  justify-content: flex-start;
}

@media (min-width: 851px) {
  .hero {
    padding-top: 18px;
    padding-bottom: 36px;
  }

  .hero-card {
    min-height: 390px;
    place-items: center start;
    padding: 46px 52px;
    background:
      linear-gradient(90deg, rgba(5,5,9,.95) 0%, rgba(5,5,9,.78) 47%, rgba(5,5,9,.38) 100%),
      url("/assets/media/platform/hero-desktop.webp") center / cover no-repeat;
  }

  h1 {
    font-size: clamp(54px, 6vw, 76px);
  }

  .subbrand {
    font-size: 28px;
  }

  .lead {
    margin-left: 0;
    margin-right: 0;
    max-width: 560px;
  }
}

@media (max-width: 850px) {
  .hero {
    padding: 8px 0 26px;
  }

  .hero-card {
    min-height: 360px;
    padding: 28px 22px;
    text-align: left;
    background:
      linear-gradient(90deg, rgba(5,5,9,.94) 0%, rgba(5,5,9,.76) 55%, rgba(5,5,9,.42) 100%),
      url("/assets/media/platform/hero-mobile.webp") center / cover no-repeat;
  }

  .hero-card::before {
    background:
      radial-gradient(circle at 18% 20%, rgba(255,47,214,.26), transparent 36%),
      radial-gradient(circle at 80% 22%, rgba(53,214,255,.20), transparent 36%),
      linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.52));
  }

  h1 {
    font-size: clamp(40px, 11vw, 52px);
    line-height: .96;
  }

  .subbrand {
    margin-top: 12px;
    font-size: 20px;
  }

  .lead {
    max-width: 340px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .actions {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .button {
    min-width: 170px;
  }
}

/* Premium platform polish 20260614 STEP3 HERO END */


/* Premium platform polish 20260614 STEP4 START */

/* Лого только для мобилы */
.hero-logo-mobile {
  display: none;
}

/* Чиним subbrand: убираем пустую плашку */
.subbrand {
  display: block;
  margin-top: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: #d9dcff;
  -webkit-text-fill-color: #d9dcff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .05em;
}

/* ПК: без логотипа, аккуратная кнопка */
@media (min-width: 851px) {
  .hero-card {
    min-height: 360px;
    padding: 42px 52px;
  }

  .hero-card > * {
    max-width: 560px;
  }

  h1 {
    font-size: clamp(52px, 5.8vw, 74px);
  }

  .subbrand {
    font-size: 22px;
  }

  .lead {
    font-size: 18px;
    line-height: 1.5;
    max-width: 520px;
  }

  .actions {
    margin-top: 22px;
  }

  .button.button--primary {
    min-width: 190px;
    min-height: 50px;
    padding: 0 28px;
    font-size: 17px;
    box-shadow: 0 0 34px rgba(53,214,255,.24);
  }
}

/* Мобила: логотип вместо большого текста */
@media (max-width: 850px) {
  .hero-card {
    min-height: 340px;
    padding: 24px 20px 26px;
  }

  .hero-logo-mobile {
    display: block;
    width: min(240px, 72vw);
    height: auto;
    margin: 0 0 14px;
    filter: drop-shadow(0 0 18px rgba(53,214,255,.20));
  }

  .hero-card h1,
  .hero-card .subbrand {
    display: none;
  }

  .lead {
    max-width: 300px;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.45;
  }

  .actions {
    margin-top: 18px;
  }

  .button.button--primary {
    min-width: 168px;
    min-height: 48px;
  }
}

/* Premium platform polish 20260614 STEP4 END */



/* DJS.DANCE live radio block START */
.radio-panel {
  width: min(720px, 100%);
  margin: 28px auto 0;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,47,214,.16), rgba(53,214,255,.12)),
    rgba(0,0,0,.42);
  box-shadow:
    0 20px 70px rgba(0,0,0,.32),
    0 0 48px rgba(53,214,255,.10) inset;
  backdrop-filter: blur(14px);
}

.radio-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  font-size: 18px;
}

.radio-panel__live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
}

.radio-panel__live span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(53,255,155,.9);
}

.radio-panel__text {
  max-width: 620px;
  margin: 14px auto 18px;
  color: #ececff;
  line-height: 1.55;
}

.radio-panel__audio {
  width: 100%;
  display: block;
  margin: 0 auto;
  accent-color: var(--pink);
}

.radio-panel__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.radio-panel__links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.20);
}

.radio-panel__links a:first-child {
  border: 0;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  box-shadow: 0 0 28px rgba(53,214,255,.22);
}

@media (max-width: 850px) {
  .radio-panel {
    margin-top: 24px;
    padding: 18px;
    border-radius: 22px;
  }

  .radio-panel__top {
    flex-direction: column;
    justify-content: center;
  }

  .radio-panel__links a {
    width: 100%;
    justify-content: center;
  }
}
/* DJS.DANCE live radio block END */


/* DJS.DANCE radio Play/Stop button START */
.radio-play-button {
  width: 88px;
  min-width: 88px;
  min-height: 112px;
  margin: 8px auto 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 0;
  color: #fff;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  background: transparent;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.radio-play-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.radio-play-button.is-playing {
  background: transparent;
}

.radio-play-button:focus-visible {
  outline: 3px solid rgba(255,255,255,.88);
  outline-offset: 8px;
  border-radius: 999px;
}

.radio-play-button__icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.36);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  text-indent: 3px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.32), transparent 28%),
    linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow:
    0 0 0 8px rgba(255,255,255,.06),
    0 0 34px rgba(53,214,255,.36),
    0 18px 42px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.34);
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.radio-play-button__label {
  min-width: 150px;
  color: #f7f7ff;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-shadow: 0 2px 14px rgba(0,0,0,.42);
}

.radio-play-button.is-playing .radio-play-button__icon {
  text-indent: 0;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.30), transparent 28%),
    linear-gradient(135deg, var(--green), var(--blue));
  box-shadow:
    0 0 0 8px rgba(53,255,155,.10),
    0 0 44px rgba(53,255,155,.38),
    0 18px 46px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.32);
}

.radio-play-button.is-on-air .radio-play-button__label {
  color: #d9ffe9;
  text-shadow: 0 0 18px rgba(53,255,155,.42);
}

@media (max-width: 850px) {
  .radio-play-button {
    width: 76px;
    min-width: 76px;
    min-height: 100px;
  }

  .radio-play-button__icon {
    width: 76px;
    height: 76px;
    font-size: 25px;
  }

  .radio-play-button__label {
    min-width: 140px;
    font-size: 12px;
  }
}
/* DJS.DANCE radio Play/Stop button END */


/* DJS.DANCE mobile radio polish 20260627 START */
.hero-logo-mobile {
  display: block;
  width: min(220px, 70vw);
  height: auto;
  margin: 0 auto 18px;
  filter:
    drop-shadow(0 0 22px rgba(255,47,214,.25))
    drop-shadow(0 0 28px rgba(53,214,255,.18));
}

.radio-panel {
  width: min(620px, 100%);
  margin-top: 24px;
  padding: 18px;
  border-radius: 24px;
}

.radio-panel__text {
  max-width: 420px;
  margin: 12px auto 16px;
  font-size: 16px;
  line-height: 1.5;
}

.radio-play-button {
  width: 88px;
  min-width: 88px;
  min-height: 112px;
}

@media (max-width: 850px) {
  .hero-card {
    padding: 28px 18px;
  }

  .hero-logo-mobile {
    width: min(190px, 68vw);
    margin-bottom: 16px;
  }

  .lead {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

  .actions {
    margin-top: 22px;
  }

  .radio-panel {
    margin-top: 22px;
    padding: 16px;
    border-radius: 22px;
  }

  .radio-panel__text {
    max-width: 260px;
    font-size: 15px;
  }

  .radio-play-button {
    width: 76px;
    min-width: 76px;
    min-height: 100px;
  }

  .artist-card__body {
    bottom: 22px;
  }

  .artist-card__text {
    margin-bottom: 20px;
  }
}
/* DJS.DANCE mobile radio polish 20260627 END */


/* DJS.DANCE final hero polish 20260627 START */
.hero-logo-mobile {
  border-radius: 18px;
  overflow: hidden;
  opacity: .96;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 18px 55px rgba(0,0,0,.36);
}

@media (max-width: 850px) {
  .hero-logo-mobile {
    width: min(178px, 64vw);
    border-radius: 16px;
  }

  .lead {
    max-width: 270px;
  }
}
/* DJS.DANCE final hero polish 20260627 END */


/* DJS.DANCE hero button centering 20260627 START */
.hero .actions {
  justify-content: center !important;
}

.hero .actions .button {
  min-width: 190px;
  justify-content: center;
}
/* DJS.DANCE hero button centering 20260627 END */


/* DJS.DANCE language switch 20260627 START */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.lang-switch a {
  min-width: 32px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.lang-switch a.is-active {
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--blue));
}

@media (max-width: 850px) {
  .nav {
    gap: 10px;
    align-items: center;
  }

  .lang-switch {
    margin-left: 0;
  }
}
/* DJS.DANCE language switch 20260627 END */


/* DJS.DANCE desktop hero radio layout 20260627 START */
@media (min-width: 851px) {
  .topbar {
    align-items: center;
    margin-bottom: 22px;
  }

  .nav {
    gap: 18px;
    align-items: center;
  }

  .lang-switch {
    margin-left: 8px;
  }

  .hero {
    padding-top: 14px;
    padding-bottom: 34px;
  }

  .hero-card {
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 36px;
    align-items: center;
    place-items: center stretch;
    padding: 42px 48px;
    text-align: left;
  }

  .hero-card > * {
    max-width: none;
  }

  .hero-logo-mobile {
    grid-column: 1;
    display: block;
    width: 170px;
    margin: 0 0 22px 0;
    border-radius: 16px;
  }

  .hero-card h1,
  .hero-card .subbrand,
  .hero-card .lead,
  .hero-card .actions {
    grid-column: 1;
    max-width: 560px;
  }

  .hero-card h1 {
    font-size: clamp(54px, 5.4vw, 78px);
  }

  .hero-card .lead {
    max-width: 500px;
  }

  .hero .actions {
    justify-content: flex-start !important;
  }

  .radio-panel {
    grid-column: 2;
    grid-row: 1 / span 5;
    width: 100%;
    max-width: 420px;
    margin: 0;
    justify-self: end;
    text-align: center;
  }

  .radio-panel__top {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .radio-play-button {
    width: 88px;
    max-width: none;
  }
}
/* DJS.DANCE desktop hero radio layout 20260627 END */


/* DJS.DANCE desktop compact hero 20260627 START */
@media (min-width: 851px) {
  .page {
    padding-top: 18px;
  }

  .topbar {
    margin-bottom: 14px;
  }

  .hero {
    padding-top: 8px;
    padding-bottom: 26px;
  }

  .hero-card {
    min-height: 380px;
    padding: 34px 46px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: 30px;
  }

  .hero-logo-mobile {
    width: 145px;
    margin-bottom: 18px;
  }

  .hero-card h1 {
    font-size: clamp(48px, 5vw, 68px);
    letter-spacing: .11em;
  }

  .hero-card .subbrand {
    font-size: 20px;
    margin-top: 10px;
  }

  .hero-card .lead {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.45;
    max-width: 480px;
  }

  .hero .actions {
    margin-top: 18px;
  }

  .hero .actions .button {
    min-height: 46px;
  }

  .radio-panel {
    max-width: 385px;
    padding: 18px;
  }

  .radio-panel__text {
    margin: 10px auto 14px;
    font-size: 15px;
  }

  .radio-play-button {
    min-height: 112px;
    max-width: none;
  }
}
/* DJS.DANCE desktop compact hero 20260627 END */

/* DJS.DANCE mobile radio control polish 20260630 START */
@media (max-width: 850px) {
  .radio-panel {
    width: min(100%, 360px);
    margin: 24px auto 0;
    padding: 20px 18px 22px;
    text-align: center;
    border-radius: 24px;
  }

  .radio-panel__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .radio-panel__top strong {
    font-size: 18px;
    line-height: 1.2;
  }

  .radio-panel__live {
    padding: 7px 11px;
    font-size: 11px;
  }

  .radio-panel__text {
    max-width: 280px;
    margin: 14px auto 20px;
    font-size: 15px;
    line-height: 1.45;
  }

  .radio-play-button {
    width: min(190px, 100%);
    min-width: 0;
    min-height: 112px;
    margin: 0 auto;
    gap: 11px;
  }

  .radio-play-button__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    font-size: 26px;
    box-shadow:
      0 0 0 7px rgba(255,255,255,.055),
      0 0 30px rgba(53,214,255,.30),
      0 16px 38px rgba(0,0,0,.34),
      inset 0 1px 0 rgba(255,255,255,.34);
  }

  .radio-play-button__label {
    width: 100%;
    min-width: 0;
    max-width: 190px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: .08em;
  }

  .radio-play-button.is-playing .radio-play-button__icon {
    box-shadow:
      0 0 0 7px rgba(53,255,155,.10),
      0 0 36px rgba(53,255,155,.34),
      0 16px 40px rgba(0,0,0,.36),
      inset 0 1px 0 rgba(255,255,255,.32);
  }

  .radio-play-button:focus-visible {
    outline-offset: 7px;
  }
}
/* DJS.DANCE mobile radio control polish 20260630 END */


/* DJS.DANCE footer documents 20260627 START */
.footer {
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.footer-docs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
  margin-top: 6px;
}

.footer-docs a {
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-docs a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (min-width: 851px) {
  .footer-docs {
    width: auto;
    justify-content: flex-end;
    margin-top: 0;
  }
}
/* DJS.DANCE footer documents 20260627 END */


/* DJS.DANCE main about booking 20260627 START */
.main-info-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.info-panel {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,47,214,.12), rgba(53,214,255,.07)),
    rgba(8,10,24,.66);
  box-shadow:
    0 24px 80px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}

.info-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: .02em;
}

.info-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

.main-email-link {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 14px;
  border: 1px solid rgba(53,214,255,.38);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255,47,214,.22), rgba(53,214,255,.18));
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.main-socials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.main-socials a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.main-socials a:hover,
.main-email-link:hover {
  border-color: rgba(53,214,255,.55);
  box-shadow: 0 0 30px rgba(53,214,255,.16);
}

@media (min-width: 760px) {
  .main-info-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    align-items: stretch;
    margin-top: 30px;
  }

  .info-panel {
    padding: 30px;
  }

  .booking-panel {
    display: flex;
    flex-direction: column;
  }

  .booking-panel .main-socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: auto;
  }
}
/* DJS.DANCE main about booking 20260627 END */

/* PWA install suggestion */
.pwa-install-card {
  width: min(100%, 560px);
  margin-top: 18px;
  padding: 18px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,47,214,.14), rgba(53,214,255,.10)),
    rgba(255,255,255,.075);
  box-shadow:
    0 18px 56px rgba(0,0,0,.28),
    0 0 38px rgba(53,214,255,.12),
    inset 0 0 0 1px rgba(255,255,255,.035);
  backdrop-filter: blur(14px);
}

.pwa-install-card[hidden] {
  display: none !important;
}

.pwa-install-copy {
  min-width: 0;
  flex: 1;
}

.pwa-install-kicker {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pwa-install-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.pwa-install-card p:not(.pwa-install-kicker) {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.pwa-install-button {
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
}

.pwa-install-close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.pwa-install-close:hover {
  border-color: rgba(255,255,255,.30);
  background: rgba(255,255,255,.13);
}

@media (max-width: 850px) {
  .pwa-install-card {
    margin-top: 16px;
    padding: 16px;
    padding-right: 44px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
  }

  .pwa-install-card h2 {
    font-size: 20px;
  }

  .pwa-install-button {
    width: 100%;
  }
}

/* DJS.DANCE mobile radio centered control fix START */
@media (max-width: 850px) {
  .radio-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .radio-play-button {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(210px, 100%);
    min-width: 0;
    min-height: 126px;
    margin: 2px auto 0;
    padding: 6px 10px 0;
    gap: 12px;
    text-align: center;
  }

  .radio-play-button__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .radio-play-button__label {
    display: block;
    width: 100%;
    max-width: 210px;
    margin: 0 auto;
    text-align: center;
    white-space: normal;
  }
}
/* DJS.DANCE mobile radio centered control fix END */

/* DJS.DANCE radio CSS icon fix START */
.radio-play-button__icon {
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px;
  overflow: hidden;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

.radio-play-button__icon::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid rgba(255,255,255,.94);
  transform: translateX(3px);
  filter: drop-shadow(0 2px 8px rgba(255,255,255,.20));
}

.radio-play-button__icon::after {
  content: none;
}

.radio-play-button.is-on-air .radio-play-button__icon::before {
  width: 8px;
  height: 28px;
  border: 0;
  border-radius: 5px;
  background: rgba(255,255,255,.92);
  transform: none;
  filter: drop-shadow(0 2px 8px rgba(255,255,255,.20));
}

.radio-play-button.is-on-air .radio-play-button__icon::after {
  content: "";
  display: block;
  width: 8px;
  height: 28px;
  border-radius: 5px;
  background: rgba(255,255,255,.92);
  filter: drop-shadow(0 2px 8px rgba(255,255,255,.20));
}
/* DJS.DANCE radio CSS icon fix END */
