:root {
  --dfm-bg: #08070d;
  --dfm-panel: #11101a;
  --dfm-card: #171425;
  --dfm-purple: #7c3aed;
  --dfm-purple-2: #a855f7;
  --dfm-lime: #b6ff00;
  --dfm-white: #fff;
  --dfm-muted: #a8a6b3;
  --dfm-border: rgba(255,255,255,0.08);
  --dfm-shadow: 0 24px 70px rgba(0,0,0,0.36);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--dfm-bg);
  color: var(--dfm-white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--dfm-lime); outline-offset: 4px; }

.dfm-player {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 88px;
  display: grid;
  grid-template-columns: 88px 88px minmax(180px, 1fr) 118px minmax(220px, 0.7fr);
  align-items: center;
  background: linear-gradient(90deg, #22123f, var(--dfm-purple) 52%, #1d1830);
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
}
.dfm-player-signal {
  height: 88px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.14);
  cursor: pointer;
}
.dfm-player-signal span {
  display: inline-block;
  width: 5px;
  margin: 0 2px;
  border-radius: 999px;
  background: var(--dfm-lime);
  animation: dfm-eq 1.1s infinite ease-in-out;
}
.dfm-player-signal span:nth-child(1) { height: 18px; }
.dfm-player-signal span:nth-child(2) { height: 34px; animation-delay: .12s; }
.dfm-player-signal span:nth-child(3) { height: 25px; animation-delay: .22s; }
@keyframes dfm-eq { 0%,100% { transform: scaleY(.55); } 50% { transform: scaleY(1); } }
.dfm-player-art {
  width: 88px;
  height: 88px;
  background: #050409;
  overflow: hidden;
}
.dfm-player-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dfm-player-track {
  min-width: 0;
  padding: 0 24px;
}
.dfm-player-track strong,
.dfm-player-track small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dfm-player-track strong { font-size: 19px; font-weight: 900; }
.dfm-player-track small { margin-top: 8px; color: rgba(255,255,255,0.78); font-size: 14px; font-weight: 700; }
.dfm-main-play {
  justify-self: center;
  width: 88px;
  height: 88px;
  transform: translateY(24px);
  border: 5px solid rgba(255,255,255,0.92);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, var(--dfm-lime), #84c600 70%);
  box-shadow: 0 18px 42px rgba(182,255,0,0.24);
  cursor: pointer;
}
.dfm-player.is-loading .dfm-main-play,
.is-loading .dfm-hero-play,
.dfm-play-control:disabled {
  opacity: .72;
  cursor: wait;
}
.dfm-player.is-error {
  background: linear-gradient(90deg, #2b1022, #7c1d44 52%, #19121d);
}
.dfm-main-play span,
.dfm-hero-play span {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #08070d;
  transform: translateX(3px);
}
.is-playing .dfm-main-play span,
.is-playing .dfm-hero-play span {
  width: 22px;
  height: 28px;
  border: 0;
  border-left: 8px solid #08070d;
  border-right: 8px solid #08070d;
  transform: none;
}
.dfm-player-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 0 24px;
}
.dfm-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(182,255,0,0.36);
  border-radius: 999px;
  color: var(--dfm-lime);
  font-size: 12px;
  font-weight: 900;
}
.dfm-live-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dfm-lime);
  box-shadow: 0 0 18px var(--dfm-lime);
}
.dfm-listeners { color: rgba(255,255,255,0.78); font-size: 13px; font-weight: 800; }
.dfm-volume input { width: 86px; accent-color: var(--dfm-lime); }
.dfm-player audio { display: none; }

.dfm-header {
  position: sticky;
  top: 88px;
  z-index: 900;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 0 clamp(22px, 4vw, 56px);
  background: rgba(8,7,13,0.74);
  border-bottom: 1px solid var(--dfm-border);
  backdrop-filter: blur(18px);
}
.dfm-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 164px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
}
.dfm-brand img { max-width: 190px; max-height: 54px; object-fit: contain; }
.dfm-brand span { color: var(--dfm-lime); }
.dfm-brand em {
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--dfm-lime);
  color: #08070d;
  font-size: 14px;
  font-style: normal;
}
.dfm-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.dfm-menu a {
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.dfm-menu a:hover { color: var(--dfm-lime); }
.dfm-header-actions { display: flex; align-items: center; gap: 14px; }
.dfm-topbar { color: var(--dfm-muted); font-size: 12px; font-weight: 700; white-space: nowrap; }
.dfm-live-button,
.dfm-cta a,
.dfm-contact-form button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: linear-gradient(90deg, var(--dfm-lime), #e1ff6a);
  color: #08070d;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}
.dfm-hamburger {
  display: none;
  width: 48px;
  height: 44px;
  border: 1px solid var(--dfm-border);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
}
.dfm-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--dfm-white);
}

.dfm-main { overflow: hidden; }
.dfm-hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  padding: 110px clamp(22px, 5vw, 64px) 150px;
  background:
    linear-gradient(90deg, rgba(8,7,13,var(--dfm-hero-overlay)), rgba(8,7,13,0.58) 42%, rgba(8,7,13,0.18)),
    var(--dfm-hero-image),
    linear-gradient(135deg, #08070d, #171425 52%, #201142);
  background-size: cover;
  background-position: var(--dfm-hero-position);
}
.dfm-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--dfm-bg), transparent);
}
.dfm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}
.dfm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--dfm-lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dfm-broadcast-icon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--dfm-lime);
  box-shadow: 0 0 0 8px rgba(182,255,0,0.12), 0 0 26px var(--dfm-lime);
}
.dfm-hero h1,
.dfm-page-hero h1 {
  margin: 0;
  max-width: 980px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(54px, 7vw, 112px);
  line-height: .9;
  letter-spacing: 0;
}
.dfm-show-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.dfm-show-meta span,
.dfm-show-meta time,
.dfm-chart-card b,
.dfm-schedule-card b,
.dfm-schedule-row b {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--dfm-border);
  border-radius: 999px;
  color: var(--dfm-lime);
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}
.dfm-hero-desc {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 19px;
  line-height: 1.65;
}
.dfm-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}
.dfm-hero-play {
  width: 96px;
  height: 96px;
  border: 4px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  background: var(--dfm-lime);
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(182,255,0,0.22);
}
.dfm-hero-actions strong { font-weight: 900; }
.dfm-hero-actions a,
.dfm-section-heading a,
.dfm-track-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--dfm-border);
  border-radius: 999px;
  color: var(--dfm-white);
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.dfm-today {
  position: relative;
  z-index: 3;
  margin-top: -96px;
  padding: 0 clamp(22px, 5vw, 64px) 72px;
}
.dfm-section,
.dfm-page-hero {
  padding: 86px clamp(22px, 5vw, 64px);
}
.dfm-page-hero {
  background:
    linear-gradient(135deg, rgba(124,58,237,.28), transparent 46%),
    var(--dfm-bg);
  border-bottom: 1px solid var(--dfm-border);
}
.dfm-page-hero p:not(.dfm-kicker) {
  max-width: 720px;
  color: var(--dfm-muted);
  font-size: 20px;
  line-height: 1.55;
}
.dfm-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.dfm-section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1;
}
.dfm-schedule-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 20px;
  scroll-snap-type: x proximity;
}
.dfm-schedule-card,
.dfm-empty-card {
  flex: 0 0 min(390px, 82vw);
  min-height: 178px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--dfm-border);
  border-radius: 18px;
  background: rgba(23,20,37,.86);
  box-shadow: var(--dfm-shadow);
  scroll-snap-align: start;
}
.dfm-schedule-card.is-current {
  border-color: rgba(182,255,0,0.42);
  background: linear-gradient(135deg, rgba(182,255,0,.12), rgba(124,58,237,.18)), var(--dfm-card);
}
.dfm-schedule-image,
.dfm-cover,
.dfm-news-image,
.dfm-recent-card img {
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,.72), rgba(182,255,0,.22));
}
.dfm-schedule-image { width: 112px; height: 112px; }
.dfm-schedule-image img,
.dfm-cover img,
.dfm-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dfm-schedule-image span,
.dfm-news-image span,
.dfm-cover span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--dfm-lime);
  font-size: 14px;
  font-weight: 900;
}
.dfm-schedule-card time,
.dfm-schedule-row time { display: block; color: var(--dfm-muted); font-size: 13px; font-weight: 800; }
.dfm-schedule-card h3 { margin: 8px 0 6px; font-size: 24px; line-height: 1.12; }
.dfm-schedule-card p,
.dfm-schedule-row p { margin: 0; color: var(--dfm-muted); }

.dfm-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(240px, .75fr));
  gap: 22px;
}
.dfm-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.dfm-news-card {
  overflow: hidden;
  border: 1px solid var(--dfm-border);
  border-radius: 20px;
  background: var(--dfm-card);
  box-shadow: var(--dfm-shadow);
}
.dfm-news-card a { display: block; height: 100%; }
.dfm-news-image { height: 220px; border-radius: 0; }
.dfm-news-card.is-featured .dfm-news-image { height: 360px; }
.dfm-news-body { padding: 26px; }
.dfm-news-body p { margin: 0 0 12px; color: var(--dfm-lime); font-size: 12px; font-weight: 900; letter-spacing: .04em; }
.dfm-news-body h2,
.dfm-news-body h3 { margin: 0 0 14px; font-size: 25px; line-height: 1.16; }
.dfm-news-card.is-featured h3 { font-size: clamp(30px, 3.4vw, 48px); }
.dfm-news-body span { display: block; color: var(--dfm-muted); line-height: 1.62; }
.dfm-news-body strong { display: inline-block; margin-top: 20px; color: var(--dfm-lime); font-size: 13px; }

.dfm-recent { background: #0c0a13; }
.dfm-recent-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, .8fr));
  gap: 18px;
}
.dfm-recent-card {
  min-height: 146px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--dfm-border);
  border-radius: 18px;
  background: var(--dfm-panel);
}
.dfm-recent-card.is-current,
.dfm-recent-card.is-featured {
  grid-row: span 2;
  grid-template-columns: 1fr;
  align-content: end;
  min-height: 382px;
  background: linear-gradient(135deg, rgba(124,58,237,.28), rgba(182,255,0,.08)), var(--dfm-card);
}
.dfm-recent-card img { width: 92px; height: 92px; object-fit: cover; }
.dfm-recent-card.is-current img,
.dfm-recent-card.is-featured img { width: 100%; height: 210px; }
.dfm-recent-card b { color: var(--dfm-lime); font-size: 12px; }
.dfm-recent-card h3 { margin: 6px 0; font-size: 22px; line-height: 1.12; }
.dfm-recent-card p,
.dfm-recent-card time { margin: 0; color: var(--dfm-muted); font-size: 13px; }

.dfm-chart-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.dfm-chart-grid.is-home {
  grid-template-columns: minmax(230px, 1.25fr) repeat(4, minmax(160px, 1fr));
}
.dfm-chart-grid.is-full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dfm-chart-grid.is-proposals {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.dfm-chart-card {
  min-height: 218px;
  display: grid;
  grid-template-columns: 54px 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--dfm-border);
  border-radius: 20px;
  background: var(--dfm-card);
}
.dfm-chart-card.is-number-one {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(124,58,237,.46), rgba(182,255,0,.13)), var(--dfm-card);
}
.dfm-chart-grid.is-home .dfm-chart-card {
  min-height: 310px;
  grid-template-columns: 1fr;
  align-content: start;
}
.dfm-chart-grid.is-home .dfm-chart-card.is-number-one {
  grid-column: auto;
}
.dfm-chart-grid.is-home .dfm-cover {
  width: 100%;
  height: 136px;
}
.dfm-chart-grid.is-proposals .dfm-chart-card {
  min-height: 280px;
  grid-template-columns: 1fr;
}
.dfm-chart-grid.is-proposals .dfm-cover {
  width: 100%;
  height: 132px;
}
.dfm-voting-status,
.dfm-section-heading > span {
  color: var(--dfm-lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dfm-chart-card em {
  color: var(--dfm-lime);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 800;
}
.dfm-cover { width: 92px; height: 92px; }
.dfm-cover span::before {
  content: "";
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 10px solid rgba(255,255,255,0.22);
}
.dfm-chart-card h2,
.dfm-chart-card h3 { margin: 10px 0 6px; font-size: 23px; line-height: 1.14; }
.dfm-chart-card p { margin: 0; color: var(--dfm-muted); }
.dfm-chart-card b.is-up { color: var(--dfm-lime); }
.dfm-chart-card b.is-down { color: #ff7a9a; }
.dfm-chart-card b.is-same { color: var(--dfm-muted); }
.dfm-track-links { display: flex; gap: 8px; margin-top: 14px; }
.dfm-vote-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.dfm-vote-row button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--dfm-border);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255,255,255,.04);
  color: var(--dfm-white);
  cursor: pointer;
  font-weight: 900;
}
.dfm-vote-row button:hover,
.dfm-vote-row button.is-selected {
  border-color: rgba(182,255,0,.5);
  color: var(--dfm-lime);
}
.dfm-vote-row.has-voted button:not(.is-selected),
.dfm-vote-row.is-loading button { opacity: .55; }
.dfm-vote-row.is-disabled span {
  color: var(--dfm-muted);
  font-size: 12px;
  font-weight: 900;
}

.dfm-day-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 28px;
}
.dfm-day-tabs button {
  min-height: 54px;
  border: 1px solid var(--dfm-border);
  border-radius: 999px;
  padding: 0 20px;
  background: rgba(255,255,255,.04);
  color: var(--dfm-white);
  cursor: pointer;
  font-weight: 900;
}
.dfm-day-tabs button.is-active { background: var(--dfm-lime); color: var(--dfm-bg); }
.dfm-day-panel { display: none; }
.dfm-day-panel.is-active { display: grid; gap: 14px; }
.dfm-schedule-row {
  display: grid;
  grid-template-columns: 140px 92px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--dfm-border);
  border-radius: 18px;
  background: var(--dfm-panel);
}
.dfm-schedule-row.is-current {
  border-color: rgba(182,255,0,.42);
  background: linear-gradient(135deg, rgba(182,255,0,.1), rgba(124,58,237,.22)), var(--dfm-card);
}
.dfm-schedule-row h2 { margin: 8px 0 6px; font-size: 26px; }
.dfm-schedule-row small { color: var(--dfm-muted); line-height: 1.55; }

.dfm-cta {
  margin: 0 clamp(22px, 5vw, 64px) 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(182,255,0,.2);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(124,58,237,.36), rgba(182,255,0,.09)), var(--dfm-card);
}
.dfm-cta > div {
  min-width: 0;
}
.dfm-cta h2 {
  max-width: 900px;
  margin: 0 0 10px;
  font-size: clamp(34px, 3.25vw, 64px);
  line-height: 1.02;
}
.dfm-cta p { margin: 0; color: var(--dfm-muted); font-size: 18px; }
.dfm-cta > a {
  display: inline-flex;
  align-items: center;
  min-width: 176px;
  min-height: 58px;
  padding: 0 28px;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.dfm-contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 28px;
}
.dfm-contact-card,
.dfm-contact-form {
  border: 1px solid var(--dfm-border);
  border-radius: 22px;
  background: var(--dfm-card);
  padding: 28px;
}
.dfm-contact-card h2 { margin-top: 0; font-size: 34px; }
.dfm-contact-card p strong { display: block; color: var(--dfm-lime); margin-bottom: 6px; }
.dfm-contact-form {
  display: grid;
  gap: 16px;
}
.dfm-contact-form label { display: grid; gap: 8px; color: var(--dfm-muted); font-weight: 800; }
.dfm-contact-form input,
.dfm-contact-form textarea,
.dfm-contact-form select {
  width: 100%;
  border: 1px solid var(--dfm-border);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  color: var(--dfm-white);
}
.dfm-consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
}
.dfm-consent input { width: auto; margin-top: 4px; }
.dfm-form-success { color: var(--dfm-lime); font-weight: 900; }
.dfm-form-error { color: #ff7a9a; font-weight: 900; }

.dfm-single {
  max-width: 980px;
  margin: 0 auto;
  padding: 86px 22px;
}
.dfm-single h1 { margin: 0 0 28px; font-size: clamp(44px, 6vw, 86px); line-height: .95; }
.dfm-single-image img { width: 100%; border-radius: 22px; }
.dfm-single-content {
  color: rgba(255,255,255,.86);
  font-size: 19px;
  line-height: 1.78;
}
.dfm-single-content a { color: var(--dfm-lime); }
.dfm-pagination { margin-top: 34px; }
.dfm-pagination .page-numbers { display: inline-flex; padding: 10px 14px; border: 1px solid var(--dfm-border); border-radius: 10px; margin-right: 8px; }
.dfm-pagination .current { background: var(--dfm-lime); color: var(--dfm-bg); }

.dfm-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) 1fr 1fr;
  gap: 32px;
  padding: 58px clamp(22px, 5vw, 64px) 32px;
  border-top: 1px solid var(--dfm-border);
  background: #050409;
}
.dfm-footer-brand strong { font-family: "Space Grotesk", Inter, sans-serif; font-size: 38px; }
.dfm-footer-brand span { color: var(--dfm-lime); }
.dfm-footer-brand img { max-width: 190px; max-height: 64px; object-fit: contain; }
.dfm-footer p,
.dfm-footer-contact span { color: var(--dfm-muted); }
.dfm-footer-menu { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.dfm-footer .dfm-menu { display: grid; justify-content: start; gap: 10px; }
.dfm-footer-menu a,
.dfm-footer .dfm-menu a,
.dfm-footer-contact a { color: rgba(255,255,255,.86); font-weight: 800; }
.dfm-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.dfm-socials a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--dfm-border);
  border-radius: 999px;
  color: var(--dfm-lime);
  font-size: 12px;
  font-weight: 900;
}
.dfm-copyright {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.48);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .dfm-player {
    grid-template-columns: 70px 70px minmax(120px, 1fr) 86px auto;
    min-height: 74px;
  }
  .dfm-player-signal,
  .dfm-player-art { width: 70px; height: 74px; }
  .dfm-player-signal { height: 74px; }
  .dfm-main-play { width: 66px; height: 66px; transform: translateY(14px); }
  .dfm-volume { display: none; }
  .dfm-topbar { display: none; }
  .dfm-header { top: 74px; }
  .dfm-news-grid,
  .dfm-archive-grid,
  .dfm-recent-grid,
  .dfm-chart-grid,
  .dfm-chart-grid.is-full,
  .dfm-chart-grid.is-proposals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dfm-news-card.is-featured,
  .dfm-chart-card.is-number-one { grid-column: span 2; }
  .dfm-chart-grid.is-home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .dfm-player {
    grid-template-columns: 48px minmax(0, 1fr) 58px 78px;
    min-height: 66px;
  }
  .dfm-player-signal { width: 48px; height: 66px; }
  .dfm-player-art { display: none; }
  .dfm-player-track { padding: 0 10px; }
  .dfm-player-track strong { font-size: 14px; }
  .dfm-player-track small { font-size: 11px; margin-top: 4px; }
  .dfm-main-play { width: 50px; height: 50px; border-width: 3px; transform: none; }
  .dfm-player-right { padding: 0 10px; gap: 8px; }
  .dfm-listeners { display: none; }
  .dfm-live-pill { min-height: 28px; padding: 0 8px; font-size: 10px; }
  .dfm-header {
    top: 66px;
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 0 16px;
  }
  .dfm-brand { min-width: 0; font-size: 24px; }
  .dfm-brand img { max-width: 150px; }
  .dfm-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(8,7,13,.98);
    border-bottom: 1px solid var(--dfm-border);
  }
  .dfm-menu-open .dfm-nav { display: block; }
  .dfm-menu { display: grid; justify-content: stretch; gap: 18px; }
  .dfm-header-actions { gap: 8px; }
  .dfm-live-button { min-height: 38px; padding: 0 14px; font-size: 11px; }
  .dfm-hamburger { display: block; }
  .dfm-hero {
    min-height: 620px;
    padding: 86px 20px 140px;
    background:
      linear-gradient(90deg, rgba(8,7,13,var(--dfm-hero-overlay)), rgba(8,7,13,.62)),
      var(--dfm-hero-mobile),
      linear-gradient(135deg, #08070d, #171425 52%, #201142);
    background-size: cover;
    background-position: var(--dfm-hero-mobile-position);
  }
  .dfm-hero h1,
  .dfm-page-hero h1 { font-size: 48px; }
  .dfm-hero-desc { font-size: 16px; }
  .dfm-hero-play { width: 78px; height: 78px; }
  .dfm-today { margin-top: -82px; padding: 0 16px 56px; }
  .dfm-section,
  .dfm-page-hero { padding: 58px 16px; }
  .dfm-section-heading { display: grid; gap: 16px; }
  .dfm-news-grid,
  .dfm-archive-grid,
  .dfm-recent-grid,
  .dfm-chart-grid,
  .dfm-chart-grid.is-full,
  .dfm-chart-grid.is-proposals,
  .dfm-contact-layout,
  .dfm-footer {
    grid-template-columns: 1fr;
  }
  .dfm-news-card.is-featured,
  .dfm-chart-card.is-number-one { grid-column: auto; }
  .dfm-chart-grid.is-home { grid-template-columns: 1fr; }
  .dfm-news-card.is-featured .dfm-news-image,
  .dfm-news-image { height: 220px; }
  .dfm-recent-card.is-current,
  .dfm-recent-card.is-featured { grid-row: auto; min-height: 0; }
  .dfm-chart-card {
    grid-template-columns: 46px 76px 1fr;
    gap: 12px;
    padding: 16px;
  }
  .dfm-cover { width: 76px; height: 76px; }
  .dfm-chart-card em { font-size: 32px; }
  .dfm-schedule-row {
    grid-template-columns: 1fr;
  }
  .dfm-cta {
    margin: 0 16px 58px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .dfm-cta > a { width: 100%; white-space: normal; }
  .dfm-copyright { display: grid; gap: 8px; }
}
