:root {
  --bg: #030910;
  --bg-2: #07131d;
  --surface: rgba(7, 18, 28, 0.82);
  --surface-strong: #091826;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --text: #f7fbff;
  --muted: #a7b6c8;
  --faint: #657487;
  --line: rgba(255, 255, 255, 0.11);
  --blue: #0878ff;
  --blue-2: #31a8ff;
  --violet: #7a5cff;
  --green: #13d47d;
  --amber: #ffb64d;
  --danger: #ff4d5f;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% -8%, rgba(8, 120, 255, 0.22), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(19, 212, 125, 0.08), transparent 28%),
    linear-gradient(180deg, #02070d 0%, #04101a 45%, #02080d 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  padding-bottom: 76px;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

button,
input {
  font: inherit;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 8, 13, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 30px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
}

.logo strong {
  display: block;
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.logo small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.logo-wave,
.mini-wave,
.equalizer {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.logo-wave i,
.mini-wave i,
.equalizer i,
.wave-bg i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
}

.logo-wave i:nth-child(1) { height: 15px; }
.logo-wave i:nth-child(2) { height: 28px; }
.logo-wave i:nth-child(3) { height: 42px; }
.logo-wave i:nth-child(4) { height: 26px; }
.logo-wave i:nth-child(5) { height: 18px; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.main-nav a {
  position: relative;
  padding: 30px 0;
  color: #dbe7f4;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.listen-btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 0;
}

.listen-btn,
.button-primary {
  background: linear-gradient(135deg, var(--blue), #075fe0);
  color: #fff;
  box-shadow: 0 14px 32px rgba(8, 120, 255, 0.28);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.035);
}

.icon-btn,
.menu-btn,
.collapse-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.icon-btn {
  font-size: 1.2rem;
  font-weight: 900;
}

.menu-btn {
  display: none;
  gap: 4px;
}

.menu-btn span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.menu-btn::before {
  display: none;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  content: "☰";
}

.mobile-menu-inline {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-left: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 120, 255, 0.16);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-section {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 13, 0.96) 0%, rgba(2, 8, 13, 0.66) 42%, rgba(2, 8, 13, 0.35) 100%),
    url("../assets/images/baner_final.png") center / cover;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 80px;
  min-height: 690px;
  padding: 74px 0 86px;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 5.9rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 span,
.live-card-top strong,
.section-link,
.eyebrow {
  color: var(--blue);
}

.mobile-break {
  display: none;
}

.hero-copy p {
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
}

.frequency {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.mini-wave i:nth-child(1) { height: 14px; }
.mini-wave i:nth-child(2) { height: 28px; }
.mini-wave i:nth-child(3) { height: 38px; }
.mini-wave i:nth-child(4) { height: 20px; }

.frequency strong,
.frequency small {
  display: block;
}

.frequency strong {
  font-size: 1.35rem;
  font-weight: 900;
}

.frequency small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.glass,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10, 23, 35, 0.92), rgba(7, 17, 27, 0.78));
  box-shadow: var(--shadow);
}

.live-card {
  justify-self: end;
  width: min(100%, 410px);
  overflow: hidden;
  padding: 26px;
}

.live-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.live-card-top strong {
  font-size: 1.45rem;
  font-weight: 900;
}

.equalizer i {
  width: 4px;
  background: rgba(255, 255, 255, 0.38);
}

.equalizer i:nth-child(3n) { height: 30px; background: var(--blue); }
.equalizer i:nth-child(3n+1) { height: 17px; }
.equalizer i:nth-child(3n+2) { height: 24px; }

.live-main {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
}

.big-play,
.sticky-play {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #0664e8);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(8, 120, 255, 0.3);
}

.big-play {
  width: 74px;
  height: 74px;
  font-size: 1.3rem;
}

.live-main small,
.live-main span,
.live-main p,
.contact-row small,
.show-card p,
.event-card p,
.event-card small,
.footer-about p,
.contact-list,
.copyright {
  color: var(--muted);
}

.live-main small {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-main span {
  display: block;
  margin-top: 5px;
  font-size: 0.88rem;
}

.live-main h2 {
  margin: 9px 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.live-main p {
  margin: 0;
  font-size: 0.88rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact-row div {
  position: relative;
  padding-left: 22px;
}

.contact-row div::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "☎";
  color: var(--violet);
}

.contact-row div:nth-child(2)::before {
  content: "◉";
  color: var(--green);
}

.contact-row small,
.contact-row strong {
  display: block;
}

.contact-row strong {
  margin-top: 5px;
  font-size: 0.82rem;
}

.news-ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(1, 9, 15, 0.78);
}

.ticker-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 66px;
}

.ticker-inner > strong,
.section-heading h2 {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-inner > strong {
  color: var(--blue);
}

.ticker-track {
  display: flex;
  gap: 34px;
  overflow: hidden;
  min-width: 0;
}

.ticker-track a {
  flex: 0 0 auto;
  min-width: 0;
  color: #d9e6f2;
  font-size: 0.88rem;
}

.ticker-track span {
  margin-right: 14px;
  color: #fff;
  font-weight: 800;
}

.section-link {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.88fr) minmax(0, 1fr);
  gap: 34px;
  padding: 40px 0 56px;
}

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

.section-heading h2 {
  margin: 0;
}

.lead-news {
  overflow: hidden;
}

.lead-news img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lead-news-body {
  padding: 20px;
}

.category,
.eyebrow {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-news h3,
.small-news h3,
.show-card h3,
.event-card h3 {
  margin: 8px 0;
  line-height: 1.25;
}

.lead-news h3 {
  font-size: 1.32rem;
}

.lead-news p,
.small-news p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
}

.lead-news small,
.small-news time {
  color: var(--faint);
  font-size: 0.78rem;
}

.small-news-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 14px;
}

.small-news {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  min-width: 0;
}

.thumb,
.show-image,
.event-image {
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 120, 255, 0.34), rgba(255, 182, 77, 0.18)),
    url("../assets/images/baner_final.png") center / cover;
}

.thumb {
  min-height: 82px;
}

.thumb-2 {
  filter: hue-rotate(38deg) saturate(0.85);
}

.thumb-3 {
  filter: hue-rotate(140deg) saturate(0.9);
}

.small-news h3 {
  margin-top: 4px;
  font-size: 0.95rem;
}

.small-news p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0;
  font-size: 0.82rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.program-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  padding: 42px 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f9fbff, #dcecff);
  color: #062348;
  text-align: center;
  box-shadow: var(--shadow);
}

.mic-icon {
  font-size: 4.4rem;
}

.program-card h3 {
  margin: 48px 0 14px;
  color: #052b5b;
  font-size: 1.55rem;
}

.program-card strong {
  display: block;
  font-size: 1.22rem;
}

.program-card p {
  margin: 16px 0 58px;
  color: #31506f;
}

.program-card .button {
  position: relative;
  z-index: 2;
}

.wave-bg {
  position: absolute;
  right: 22px;
  bottom: 24px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  height: 70px;
  opacity: 0.28;
}

.wave-bg i {
  width: 5px;
  background: var(--blue);
}

.wave-bg i:nth-child(4n) { height: 62px; }
.wave-bg i:nth-child(4n+1) { height: 24px; }
.wave-bg i:nth-child(4n+2) { height: 44px; }
.wave-bg i:nth-child(4n+3) { height: 32px; }

.shows-list {
  display: grid;
  gap: 14px;
}

.show-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px;
}

.show-image {
  min-height: 92px;
}

.show-mic {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.8), transparent 13%),
    radial-gradient(circle, rgba(255, 77, 95, 0.76), transparent 38%),
    linear-gradient(135deg, #063d8c, #17042c);
}

.show-studio {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(8, 120, 255, 0.25)),
    url("../assets/images/baner_final.png") center / cover;
  filter: saturate(0.8) brightness(0.85);
}

.show-headphones {
  background: radial-gradient(circle at 45% 45%, #d8eaff 0 18%, transparent 19% 38%, #06234a 39% 100%);
}

.show-retro {
  background: radial-gradient(circle at 45% 36%, #ffb64d, transparent 23%), linear-gradient(135deg, #522018, #06111d);
}

.show-card h3 {
  font-size: 1rem;
}

.show-card p {
  margin: 0;
  font-size: 0.88rem;
}

.app-promo {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 280px 0.9fr;
  align-items: center;
  gap: 34px;
  overflow: hidden;
  margin-bottom: 58px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(8, 120, 255, 0.28), rgba(7, 18, 28, 0.78)),
    radial-gradient(circle at 58% 50%, rgba(49, 168, 255, 0.18), transparent 27%),
    var(--surface-strong);
}

.app-promo h2 {
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.05;
}

.app-promo p {
  color: #d9e6f4;
  font-size: 1.15rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.36);
}

.store-button span {
  font-size: 1.34rem;
}

.phone-mock {
  justify-self: center;
  width: 190px;
  height: 360px;
  padding: 14px;
  border: 8px solid #161b22;
  border-radius: 32px;
  background: #070b10;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.48);
  transform: rotate(8deg);
}

.phone-screen {
  display: grid;
  place-items: center;
  height: 100%;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(4, 15, 25, 0.46), rgba(4, 15, 25, 0.94)),
    url("../assets/images/baner_final.png") center / cover;
}

.phone-screen strong {
  font-size: 1.35rem;
  text-transform: uppercase;
}

.phone-screen small {
  color: var(--muted);
  font-weight: 800;
}

.phone-screen button {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.tiny i:nth-child(1) { height: 12px; }
.tiny i:nth-child(2) { height: 20px; }
.tiny i:nth-child(3) { height: 30px; }
.tiny i:nth-child(4) { height: 18px; }
.tiny i:nth-child(5) { height: 13px; }

.promo-benefits {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promo-benefits li {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  color: #eaf4ff;
  font-weight: 800;
}

.promo-benefits span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--blue);
}

.events-section {
  padding-bottom: 64px;
}

.section-heading.wide {
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.event-card {
  overflow: hidden;
}

.event-image {
  position: relative;
  min-height: 170px;
}

.event-card.warm .event-image {
  background: radial-gradient(circle at 50% 40%, rgba(255, 182, 77, 0.78), transparent 28%), linear-gradient(135deg, #2b1308, #101923);
}

.event-card.mono .event-image {
  filter: grayscale(1);
}

.event-card.green .event-image {
  background: linear-gradient(135deg, rgba(19, 212, 125, 0.2), rgba(8, 120, 255, 0.2)), url("../assets/images/baner_final.png") center / cover;
}

.event-card.blue .event-image {
  background: linear-gradient(135deg, rgba(8, 120, 255, 0.42), rgba(0, 0, 0, 0.12)), url("../assets/images/baner_final.png") center / cover;
}

.event-image time {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 58px;
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(4, 12, 20, 0.78);
}

.event-image strong,
.event-image span {
  display: block;
  text-align: center;
  text-transform: uppercase;
}

.event-image strong {
  font-size: 1.55rem;
}

.event-image span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
}

.event-body {
  padding: 18px;
}

.event-body h3 {
  font-size: 1.05rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(3, 10, 16, 0.96);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.58fr 0.58fr 1.15fr;
  gap: 70px;
  padding: 48px 0 36px;
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about p {
  max-width: 320px;
  line-height: 1.65;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3,
.social-box h3 {
  margin: 0 0 18px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
}

.facebook-placeholder {
  min-height: 140px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(4, 13, 21, 0.48), rgba(4, 13, 21, 0.92)),
    url("../assets/images/baner_final.png") center / cover;
}

.facebook-placeholder strong,
.facebook-placeholder span {
  display: block;
}

.facebook-placeholder span {
  margin-top: 8px;
  color: var(--muted);
}

.facebook-placeholder button {
  margin-top: 18px;
  padding: 9px 12px;
  border: 0;
  border-radius: 5px;
  background: #fff;
  color: #123;
  font-weight: 800;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

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

.copyright {
  padding: 20px 0 104px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.sticky-player {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto minmax(200px, 1fr) auto minmax(160px, 280px) auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 10px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: rgba(4, 13, 21, 0.96);
  backdrop-filter: blur(18px);
}

.sticky-player.is-collapsed {
  grid-template-columns: auto 1fr auto;
}

.sticky-player.is-collapsed .sticky-tabs,
.sticky-player.is-collapsed .volume-control {
  display: none;
}

.sticky-play {
  width: 48px;
  height: 48px;
}

.sticky-meta strong,
.sticky-meta span {
  display: block;
}

.sticky-meta span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.sticky-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sticky-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d8e8f8;
  font-size: 0.82rem;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.volume-control input {
  width: 100%;
  accent-color: var(--blue);
}

@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 14, 22, 0.98);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 16px;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    display: none;
  }

  .header-actions {
    display: none;
    justify-self: end;
  }

  .mobile-menu-inline {
    display: grid;
  }

  .menu-btn {
    display: grid;
  }

  .hero-content,
  .content-grid,
  .app-promo,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 34px;
    min-height: auto;
    padding-top: 54px;
  }

  .hero-section {
    min-height: auto;
  }

  .live-card {
    justify-self: stretch;
  }

  .app-promo {
    overflow: visible;
  }

  .phone-mock {
    order: 3;
    transform: rotate(0deg);
  }

  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-player {
    grid-template-columns: auto 1fr auto;
  }

  .sticky-tabs,
  .volume-control {
    display: none;
  }
}

@media (max-width: 680px) {
  body::after {
    position: fixed;
    top: 16px;
    right: 14px;
    z-index: 95;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(8, 120, 255, 0.16);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    content: "☰";
    pointer-events: none;
    backdrop-filter: blur(10px);
  }

  body {
    padding-bottom: 92px;
  }

  .shell {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    display: flex;
    min-height: 72px;
    gap: 12px;
    justify-content: space-between;
  }

  .header-actions {
    display: flex !important;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .mobile-menu-inline {
    display: grid;
  }

  .logo {
    min-width: 0;
  }

  .logo strong {
    font-size: 1.08rem;
  }

  .logo-wave i {
    width: 2px;
  }

  .listen-btn {
    display: none;
  }

  .icon-btn {
    width: 32px;
  }

  .header-actions .icon-btn {
    display: none;
  }

  .header-actions {
    display: none !important;
  }

  .menu-btn {
    display: grid !important;
    position: fixed;
    top: 16px;
    right: 14px;
    z-index: 90;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(8, 120, 255, 0.16);
    backdrop-filter: blur(10px);
  }

  .menu-btn span {
    display: none;
  }

  .menu-btn::before {
    display: block;
  }

  .main-nav {
    top: 72px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(2, 8, 13, 0.7), rgba(2, 8, 13, 0.96) 68%),
      url("../assets/images/baner_final.png") center / cover;
  }

  .hero-content {
    padding: 38px 0 42px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12.4vw, 3.25rem);
  }

  .mobile-break {
    display: block;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-buttons .button {
    width: 100%;
    padding-inline: 12px;
  }

  .live-card {
    padding: 18px;
  }

  .live-main {
    grid-template-columns: 56px 1fr;
  }

  .big-play {
    width: 56px;
    height: 56px;
  }

  .contact-row,
  .ticker-inner {
    grid-template-columns: 1fr;
  }

  .ticker-inner {
    gap: 12px;
    padding: 16px 0;
  }

  .ticker-track {
    display: grid;
    gap: 10px;
    overflow: visible;
    min-width: 0;
  }

  .ticker-track a {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .equalizer i:nth-child(n+10) {
    display: none;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .small-news {
    grid-template-columns: 86px 1fr;
  }

  .show-card {
    grid-template-columns: 82px 1fr;
  }

  .show-image {
    min-height: 74px;
  }

  .program-card {
    min-height: 390px;
  }

  .app-promo {
    padding: 24px;
  }

  .phone-mock {
    width: 160px;
    height: 306px;
  }

  .promo-benefits li {
    grid-template-columns: 38px 1fr;
  }

  .promo-benefits span {
    width: 38px;
    height: 38px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 32px;
  }

  .sticky-player {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: 72px;
    padding-inline: 14px;
  }

  .sticky-meta strong {
    font-size: 0.9rem;
  }

  .sticky-meta span {
    font-size: 0.76rem;
  }
}
