: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: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 152px;
  height: 58px;
  overflow: hidden;
  border-radius: 6px;
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.74);
}

.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: 10px;
  min-width: 0;
}

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

.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: 6px;
}

.listen-btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  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-order {
  border-color: rgba(255, 182, 77, 0.62);
  background: linear-gradient(135deg, #ffb64d, #ff7b2f);
  color: #07101a;
  box-shadow: 0 16px 34px rgba(255, 128, 47, 0.24);
}

.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: 34px;
  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.95) 0%, rgba(2, 8, 13, 0.74) 23%, rgba(2, 8, 13, 0.28) 50%, rgba(2, 8, 13, 0.72) 82%, rgba(2, 8, 13, 0.95) 100%),
    radial-gradient(ellipse at 50% 62%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.13) 26%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0.76) 100%),
    url("../assets/images/baner_final_1.png") center 48% / 118% auto no-repeat,
    linear-gradient(180deg, #07131d, #02070d);
  transform: none;
}

.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, 6.35vw, 5.55rem);
  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 h1 span {
  display: inline-block;
  white-space: nowrap;
}

.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; }

.is-playing .equalizer i {
  animation: livePulse 900ms ease-in-out infinite alternate;
}

.is-playing .equalizer i:nth-child(2n) {
  animation-delay: 120ms;
}

.is-playing .equalizer i:nth-child(3n) {
  animation-delay: 240ms;
}

@keyframes livePulse {
  from {
    transform: scaleY(0.55);
    opacity: 0.55;
  }

  to {
    transform: scaleY(1.12);
    opacity: 1;
  }
}

.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;
}

.partner-strip {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.partner-strip-label,
.partner-ad,
.premium-ad {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10, 24, 38, 0.86), rgba(4, 13, 21, 0.82));
}

.partner-strip-label {
  display: grid;
  align-content: center;
  padding: 18px;
}

.partner-strip-label span,
.ad-label,
.ad-tag {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-strip-label strong {
  margin-top: 6px;
  font-size: 1.08rem;
}

.partner-strip-label small,
.partner-ad em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.partner-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.partner-ad {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  padding: 20px;
}

.partner-ad::after {
  position: absolute;
  inset: auto -30px -46px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(8, 120, 255, 0.18);
  content: "";
}

.partner-ad.value::after {
  background: rgba(19, 212, 125, 0.16);
}

.partner-ad strong,
.partner-ad small,
.premium-ad-visual strong,
.premium-ad-visual span {
  display: block;
}

.partner-ad strong {
  margin-top: 12px;
  font-size: 1.28rem;
}

.partner-ad small {
  margin-top: 4px;
  color: var(--muted);
}

.partner-ad em {
  position: relative;
  z-index: 1;
}

.premium-ad {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.72fr);
  gap: 26px;
  align-items: center;
  margin-top: -22px;
  margin-bottom: 58px;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(8, 120, 255, 0.25), rgba(5, 16, 27, 0.88)),
    radial-gradient(ellipse at 75% 50%, rgba(49, 168, 255, 0.22), transparent 44%);
}

.premium-ad-copy h2 {
  margin: 10px 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.premium-ad-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.ad-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ad-meta-row span,
.ad-price-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #dfefff;
  font-size: 0.82rem;
  font-weight: 800;
}

.premium-ad-visual {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 120, 255, 0.32), rgba(0, 0, 0, 0.12)),
    rgba(255, 255, 255, 0.04);
  text-align: center;
}

.premium-ad-visual strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
}

.premium-ad-visual span {
  margin-top: -36px;
  color: var(--muted);
}

.show-sponsor-ad {
  padding: 18px;
  border-style: dashed;
}

.show-sponsor-ad > strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 1.22rem;
}

.show-sponsor-ad h3 {
  margin: 10px 0 8px;
}

.show-sponsor-ad p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.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_1.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_1.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;
}

.show-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.show-card.is-current {
  border-color: rgba(8, 120, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(8, 120, 255, 0.18), rgba(10, 24, 38, 0.86)),
    rgba(255, 255, 255, 0.04);
}

.show-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(19, 212, 125, 0.16);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-section {
  padding: 0 0 58px;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 22px;
}

.archive-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10, 24, 38, 0.86), rgba(4, 13, 21, 0.82));
}

.archive-card.featured {
  box-shadow: var(--shadow);
}

.archive-art {
  position: relative;
  min-height: 178px;
  background:
    linear-gradient(135deg, rgba(8, 120, 255, 0.38), rgba(2, 8, 13, 0.28)),
    url("../assets/images/baner_final_1.png") center / cover;
}

.archive-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 8, 13, 0.72));
  content: "";
}

.archive-art.green {
  filter: hue-rotate(88deg) saturate(0.9);
}

.archive-art.warm {
  filter: sepia(0.3) saturate(1.05);
}

.archive-art span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(4, 13, 21, 0.78);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-art button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(8, 120, 255, 0.3);
}

.archive-body {
  padding: 20px;
}

.archive-body small,
.archive-meta {
  color: var(--muted);
}

.archive-body h3 {
  margin: 8px 0;
  font-size: 1.24rem;
  line-height: 1.25;
}

.archive-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  font-size: 0.82rem;
}

.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_1.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);
}

.orders-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 58px;
  padding: 30px;
  border: 1px solid rgba(8, 120, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 120, 255, 0.2), rgba(4, 13, 21, 0.9)),
    rgba(255, 255, 255, 0.04);
}

.orders-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.orders-copy p {
  max-width: 760px;
  margin: 0;
  color: #c8d5e4;
  line-height: 1.72;
}

.orders-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.orders-actions span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.wishes-page {
  background:
    radial-gradient(circle at 80% 4%, rgba(255, 182, 77, 0.12), transparent 28%),
    radial-gradient(circle at 15% 18%, rgba(8, 120, 255, 0.16), transparent 30%);
}

.wishes-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  align-items: end;
  padding-bottom: 34px;
}

.wishes-hero h1 {
  max-width: 900px;
  margin: 12px 0 18px;
  font-size: clamp(2.35rem, 5.5vw, 5.1rem);
  line-height: 1;
}

.wishes-hero p {
  max-width: 780px;
  margin: 0;
  color: #c8d5e4;
  font-size: 1.12rem;
  line-height: 1.72;
}

.wishes-summary {
  display: grid;
  gap: 12px;
  padding: 22px;
  box-shadow: none;
}

.wishes-summary strong {
  color: var(--blue);
  font-size: 1.24rem;
}

.wishes-summary span {
  color: #dce9f6;
  font-weight: 800;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.order-form {
  padding: 30px;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 20px;
}

.form-section-title span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(8, 120, 255, 0.18);
  color: var(--blue);
  font-weight: 900;
}

.form-section-title h2 {
  margin: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

.order-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.order-field > span {
  color: #eef7ff;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-field small {
  color: var(--muted);
  line-height: 1.45;
}

.order-field input,
.order-field select,
.order-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
}

.order-field input,
.order-field select {
  min-height: 48px;
  padding: 0 14px;
}

.order-field textarea {
  resize: vertical;
  min-height: 150px;
  padding: 14px;
  line-height: 1.55;
}

.order-field input:focus,
.order-field select:focus,
.order-field textarea:focus {
  border-color: rgba(8, 120, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(8, 120, 255, 0.16);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.payment-options label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.payment-options input {
  margin-top: 4px;
  accent-color: var(--blue);
}

.payment-options strong,
.payment-options small {
  display: block;
}

.payment-options small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-top: 8px;
}

.form-actions p {
  flex: 1 1 260px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.order-side {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.order-note,
.price-preview {
  padding: 22px;
  box-shadow: none;
}

.order-note h2 {
  margin: 10px 0;
  font-size: 1.55rem;
  line-height: 1.12;
}

.order-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.price-preview {
  display: grid;
  gap: 12px;
}

.price-preview > strong {
  color: var(--blue);
  font-size: 1.1rem;
}

.price-preview div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.price-preview span {
  color: #eaf4ff;
  font-weight: 800;
}

.price-preview b {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.invoice-note {
  margin: 4px 0 20px;
  padding: 16px;
  border: 1px solid rgba(255, 182, 77, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 182, 77, 0.075);
}

.invoice-note strong {
  color: var(--amber);
  text-transform: uppercase;
}

.invoice-note p {
  margin: 8px 0 0;
  color: #d8e4f0;
  line-height: 1.58;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: 48px;
  align-items: center;
  padding: 4px 0 62px;
}

.about-copy h2 {
  max-width: 780px;
  margin: 12px 0 22px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.about-copy p {
  max-width: 820px;
  margin: 0 0 16px;
  color: #c8d5e4;
  font-size: 1.03rem;
  line-height: 1.78;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.mission-vision article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.mission-vision h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.mission-vision p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
}

.about-facts {
  display: grid;
  gap: 16px;
}

.about-facts article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 120, 255, 0.16), rgba(4, 13, 21, 0.84)),
    rgba(255, 255, 255, 0.035);
}

.about-facts strong,
.about-facts span {
  display: block;
}

.about-facts strong {
  color: #fff;
  font-size: 1.24rem;
}

.about-facts span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.team-section {
  padding: 0 0 62px;
}

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

.team-card {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10, 24, 38, 0.86), rgba(4, 13, 21, 0.82));
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.team-card:hover,
.team-card.is-active {
  border-color: rgba(8, 120, 255, 0.72);
  background: linear-gradient(180deg, rgba(13, 35, 56, 0.92), rgba(4, 13, 21, 0.86));
  transform: translateY(-2px);
}

.team-photo {
  display: grid;
  min-height: 210px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(8, 120, 255, 0.45), rgba(3, 9, 16, 0.78)),
    url("../assets/images/baner_final_1.png") center / cover;
}

.team-card.green .team-photo {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(19, 212, 125, 0.34), rgba(3, 9, 16, 0.8)),
    url("../assets/images/baner_final_1.png") center / cover;
}

.team-card.warm .team-photo {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(255, 182, 77, 0.34), rgba(3, 9, 16, 0.82)),
    url("../assets/images/baner_final_1.png") center / cover;
}

.team-card.violet .team-photo {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(122, 92, 255, 0.38), rgba(3, 9, 16, 0.82)),
    url("../assets/images/baner_final_1.png") center / cover;
}

.team-photo span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(3, 9, 16, 0.68);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.team-body {
  padding: 20px;
}

.team-body small {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-body h3 {
  margin: 9px 0;
  font-size: 1.16rem;
}

.team-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.team-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(8, 120, 255, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 120, 255, 0.14), rgba(4, 13, 21, 0.9)),
    rgba(255, 255, 255, 0.035);
}

.team-detail-visual {
  display: grid;
  min-height: 300px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.22), transparent 25%),
    linear-gradient(135deg, rgba(8, 120, 255, 0.4), rgba(3, 9, 16, 0.78)),
    url("../assets/images/baner_final_1.png") center / cover;
}

.team-detail.green .team-detail-visual {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.2), transparent 25%),
    linear-gradient(135deg, rgba(19, 212, 125, 0.34), rgba(3, 9, 16, 0.82)),
    url("../assets/images/baner_final_1.png") center / cover;
}

.team-detail.warm .team-detail-visual {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.18), transparent 25%),
    linear-gradient(135deg, rgba(255, 182, 77, 0.35), rgba(3, 9, 16, 0.82)),
    url("../assets/images/baner_final_1.png") center / cover;
}

.team-detail.violet .team-detail-visual {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.2), transparent 25%),
    linear-gradient(135deg, rgba(122, 92, 255, 0.38), rgba(3, 9, 16, 0.82)),
    url("../assets/images/baner_final_1.png") center / cover;
}

.team-detail-visual span {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(3, 9, 16, 0.7);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.team-detail-copy {
  align-self: center;
  padding: 34px 34px 34px 0;
}

.team-detail-copy h3 {
  margin: 10px 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.team-detail-copy strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
}

.team-detail-copy p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #c8d5e4;
  line-height: 1.72;
}

.team-info-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.team-info-panel div {
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.team-info-panel small,
.team-info-panel strong {
  display: block;
}

.team-info-panel small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-info-panel strong {
  margin-top: 8px;
  color: #fff;
  line-height: 1.35;
}

.team-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.team-detail-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #dfefff;
  font-size: 0.82rem;
  font-weight: 800;
}

.team-cta {
  margin-top: 24px;
}

.subpage-main {
  padding: 56px 0 68px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
  margin-top: 18px;
}

.article-main {
  min-width: 0;
}

.article-main h1,
.team-detail-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.02;
}

.article-lead {
  max-width: 860px;
  margin: 0;
  color: #d7e4f1;
  font-size: 1.2rem;
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-image {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-body {
  max-width: 860px;
  margin-top: 28px;
}

.article-body p {
  color: #c8d5e4;
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.article-sidebar h2 {
  margin: 0 0 4px;
  font-size: 1rem;
  text-transform: uppercase;
}

.related-news {
  display: grid;
  gap: 8px;
  padding: 16px;
  box-shadow: none;
}

.related-news small,
.related-news span {
  color: var(--muted);
  font-size: 0.78rem;
}

.related-news strong {
  line-height: 1.35;
}

.news-list-page > h1,
.program-page > h1 {
  margin: 12px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.events-page > h1,
.archive-page > h1,
.contact-hero > h1 {
  margin: 12px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.news-list-page > p,
.program-page > p,
.events-page > p,
.archive-page > p,
.contact-hero > p {
  max-width: 760px;
  margin: 0 0 32px;
  color: #c8d5e4;
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.news-list-card {
  overflow: hidden;
  display: grid;
  box-shadow: none;
}

.news-list-card.featured {
  grid-column: span 2;
}

.news-list-image {
  min-height: 210px;
  background-position: center;
  background-size: cover;
}

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

.news-list-body h2 {
  margin: 8px 0 10px;
  font-size: 1.35rem;
  line-height: 1.22;
}

.news-list-body p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.news-list-body small {
  color: var(--faint);
}

.program-timeline {
  display: grid;
  gap: 16px;
}

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

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.contact-form {
  padding: 30px;
}

.contact-side {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.contact-card,
.contact-mail {
  padding: 22px;
  box-shadow: none;
}

.contact-card h2 {
  margin: 10px 0 14px;
  font-size: 1.55rem;
}

.contact-card p {
  margin: 8px 0;
  color: var(--muted);
}

.contact-mail-grid {
  display: grid;
  gap: 14px;
}

.contact-mail h3 {
  margin: 0 0 8px;
}

.contact-mail a {
  color: var(--blue);
  font-weight: 900;
}

.contact-mail p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.timeline-show {
  display: grid;
  grid-template-columns: 170px 112px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  box-shadow: none;
}

.timeline-show.is-current {
  border-color: rgba(8, 120, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(8, 120, 255, 0.18), rgba(10, 24, 38, 0.86)),
    rgba(255, 255, 255, 0.04);
}

.timeline-time strong,
.timeline-time span {
  display: block;
}

.timeline-time strong {
  font-size: 1.1rem;
}

.timeline-time span {
  width: fit-content;
  margin-top: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(19, 212, 125, 0.16);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-copy h2 {
  margin: 0 0 8px;
}

.timeline-copy p {
  margin: 0 0 6px;
  color: #dce9f6;
  font-weight: 800;
}

.timeline-copy small {
  color: var(--muted);
}

.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_1.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_1.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_1.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,
  .article-layout,
  .news-list-grid,
  .events-list-grid,
  .archive-list-grid,
  .contact-layout,
  .wishes-hero,
  .timeline-show,
  .order-layout,
  .app-promo,
  .about-section,
  .partner-strip,
  .premium-ad,
  .orders-section,
  .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));
  }

  .news-list-card.featured {
    grid-column: auto;
  }

  .mission-vision,
  .team-grid,
  .team-detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .partner-items {
    grid-template-columns: 1fr;
  }

  .orders-actions {
    justify-items: start;
  }

  .article-sidebar {
    position: static;
  }

  .order-side {
    position: static;
  }

  .contact-side {
    position: static;
  }

  .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 {
    width: 138px;
    height: 48px;
  }

  .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%),
      radial-gradient(ellipse at 50% 38%, rgba(255, 255, 255, 0.12) 0%, rgba(0, 0, 0, 0.66) 82%),
      url("../assets/images/baner_final_1.png") center top / auto 100% no-repeat;
  }

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

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

  .hero-copy h1 span {
    white-space: normal;
  }

  .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;
  }

  .archive-section {
    padding-bottom: 42px;
  }

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

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

  .app-promo {
    padding: 24px;
  }

  .premium-ad {
    padding: 22px;
  }

  .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;
  }

  .mission-vision,
  .form-grid.two,
  .payment-options,
  .timeline-show,
  .team-grid,
  .team-detail {
    grid-template-columns: 1fr;
  }

  .team-detail-copy {
    padding: 24px;
  }

  .team-detail-visual {
    min-height: 220px;
  }

  .team-info-panel {
    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;
  }
}
