body {
  margin: 0;
  font-family: "Roboto", system-ui, sans-serif;
  background: radial-gradient(circle at top, #606d8e14, transparent 28%),
    #090b10;
  color: #f2f2f2;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
}

html {
  scroll-behavior: smooth;
  --site-header-height: 0px;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

.container {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.site-header {
  background: #0c0d11;
  border-bottom: 1px solid #ff7a00aa;
  position: sticky;
  top: 0;
  z-index: 120;
}

.header-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 30px;
  padding: 11px 0;
}

.site-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 0;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 3px;
  grid-column: 5 / span 4;
  grid-row: 1;
  justify-self: center;
}

.site-logo:hover {
  background: transparent;
  border-color: transparent;
}

.site-logo img {
  display: block;
  height: 72px;
  width: auto;
}

.header-brand-text {
  color: #ffffff;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 8px #7cff6b66;
}

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

.header-menu {
  grid-column: 9 / span 4;
  grid-row: 1;
  justify-self: end;
  position: relative;
}

.header-menu-toggle {
  display: none;
}

.menu-overlay,
.menu-close {
  display: none;
}

.header-menu-toggle:focus,
.header-menu-toggle:focus-visible,
.menu-close:focus,
.menu-close:focus-visible,
.site-header .main-nav a:focus,
.site-header .main-nav a:focus-visible,
.site-header a:focus,
.site-header a:focus-visible,
.site-header button:focus,
.site-header button:focus-visible {
  outline: 0;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

body.menu-open {
  overflow: hidden;
}

.site-header .nav-contact {
  display: none;
}

.nav-icon {
  display: none;
}

.nav-icon svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
}

.header-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: opacity 120ms ease;
  transform-origin: center;
}

.header-menu.is-open .header-menu-toggle span:nth-child(1) {
  animation: menu-line-top-squidge 400ms ease forwards;
}

.header-menu.is-open .header-menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.35);
}

.header-menu.is-open .header-menu-toggle span:nth-child(3) {
  animation: menu-line-bottom-squidge 400ms ease forwards;
}

.header-menu.is-closing .header-menu-toggle span:nth-child(1) {
  animation: menu-line-top-squidge-close 400ms ease forwards;
}

.header-menu.is-closing .header-menu-toggle span:nth-child(2) {
  animation: menu-line-middle-squidge-close 400ms ease forwards;
}

.header-menu.is-closing .header-menu-toggle span:nth-child(3) {
  animation: menu-line-bottom-squidge-close 400ms ease forwards;
}

@keyframes menu-line-top-squidge {
  0% {
    transform: translateY(0) scaleX(1) rotate(0);
  }

  45% {
    transform: translateY(6px) scaleX(0.35) rotate(0);
  }

  100% {
    transform: translateY(6px) scaleX(1) rotate(45deg);
  }
}

@keyframes menu-line-bottom-squidge {
  0% {
    transform: translateY(0) scaleX(1) rotate(0);
  }

  45% {
    transform: translateY(-6px) scaleX(0.35) rotate(0);
  }

  100% {
    transform: translateY(-6px) scaleX(1) rotate(-45deg);
  }
}

@keyframes menu-line-top-squidge-close {
  0% {
    transform: translateY(6px) scaleX(1) rotate(45deg);
  }

  55% {
    transform: translateY(6px) scaleX(0.35) rotate(0);
  }

  100% {
    transform: translateY(0) scaleX(1) rotate(0);
  }
}

@keyframes menu-line-middle-squidge-close {
  0% {
    opacity: 0;
    transform: scaleX(0.35);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes menu-line-bottom-squidge-close {
  0% {
    transform: translateY(-6px) scaleX(1) rotate(-45deg);
  }

  55% {
    transform: translateY(-6px) scaleX(0.35) rotate(0);
  }

  100% {
    transform: translateY(0) scaleX(1) rotate(0);
  }
}

.site-header .main-nav {
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  justify-content: center;
}

.offcanvas-logo {
  display: none;
}

.offcanvas-search {
  display: none;
}

.offcanvas-search-form {
  display: none;
}

.offcanvas-popular {
  display: none;
}

.offcanvas-share {
  display: none;
}

.site-search-highlight {
  background: linear-gradient(90deg, #ffd84d 0%, #ff8c5a 100%);
  color: #090b10;
  box-shadow: 0 0 0 2px #ffd84d66;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0;
  color: #eaff00cc;
  border: 0;
  border-radius: 3px;
  background: transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.site-header .main-nav a {
  font-size: 15px;
  text-transform: uppercase;
}

.site-header .main-nav .nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55em;
  margin-right: 3px;
  color: currentColor;
  font-size: 16px;
  line-height: 1;
  text-shadow: 0 0 10px #ff7a0066;
}

.main-nav a:hover {
  transform: none;
  background: transparent;
  color: #eaff00cc;
}

.site-header .main-nav a.is-active {
  background: transparent;
  color: #7cff6b;
}

@media (min-width: 1071px) {
  .site-header .main-nav .nav-home {
    display: none;
  }
}

.topbar-button,
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
}

.topbar-tools {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 10px;
  grid-column: 1 / span 3;
  grid-row: 1;
  justify-self: start;
}

.topbar-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 31px;
  min-height: 32px;
  color: #eaff00;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.topbar-home-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 0;
  color: currentColor;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  line-height: 1;
  transform: translateY(-1px);
}

.topbar-home svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
  transform: translateY(-1px);
}

.topbar-home span:not(.topbar-home-icon) {
  display: inline-block;
  line-height: 1;
}

.topbar-home:hover {
  color: #eaff00;
  transform: none;
}

.grid-toggle {
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid #ff6bd6aa;
  border-radius: 999px;
  background: #171117;
  color: #ffb8ea;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.grid-toggle.is-active {
  background: #ff6bd6;
  color: #090b10;
}

.grid-toggle.is-undocked {
  position: relative;
  opacity: 0.46;
  filter: grayscale(1);
  cursor: not-allowed;
}

.grid-toggle.is-undocked::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

/* Dev Layout Grid */
.dev-grid-tool {
  position: relative;
}

.dev-grid-panel {
  --dev-grid-color: #f59acb;
  position: fixed;
  top: 78px;
  right: 20px;
  width: 410px;
  padding: 18px;
  color: #f3f4f6;
  font-family: "Roboto", system-ui, sans-serif;
  background: #2f323a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  display: grid;
  gap: 9px;
  font-size: 13px;
  z-index: 1100;
}

.dev-grid-panel.is-undocked {
  z-index: 1200;
}

.dev-grid-panel[hidden] {
  display: none;
}

.dev-grid-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 24px;
  cursor: move;
  user-select: none;
}

.dev-grid-panel.is-dragging,
.dev-grid-panel.is-dragging .dev-grid-panel-header {
  cursor: move;
}

.dev-grid-panel-title {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dev-grid-shortcut {
  color: #b9beca;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.dev-grid-collapse {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #1f2229;
  color: #f3f4f6;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

.dev-grid-panel-body {
  display: grid;
  gap: 9px;
  padding-top: 10px;
}

.dev-grid-panel.is-collapsed .dev-grid-panel-body {
  display: none;
}

.dev-grid-panel.is-collapsed .dev-grid-collapse {
  font-size: 12px;
}

.dev-grid-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
}

.dev-grid-dock-action {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 7px;
}

.dev-grid-dock-button {
  min-height: 22px;
  padding: 0 9px;
  color: #f3f4f6;
  background: #1f2229;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.dev-grid-dock-button[aria-pressed="true"] {
  color: #090b10;
  background: #b957e6;
  border-color: #c76cff;
}

.dev-grid-dock-button[aria-pressed="false"] {
  color: #cfd4df;
  background: #3a3d45;
}

.dev-grid-switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.dev-grid-switch input[type="checkbox"] {
  width: 30px;
  height: 16px;
  margin: 0;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: radial-gradient(circle at 7px 50%, #ffffff 0 4px, transparent 4.5px), #9da3af;
  cursor: pointer;
}

.dev-grid-switch input[type="checkbox"]:checked {
  border-color: #c76cff;
  background: radial-gradient(circle at 21px 50%, #ffffff 0 4px, transparent 4.5px), #b957e6;
}

.dev-grid-row {
  display: grid;
  grid-template-columns: 68px 1fr 78px;
  align-items: center;
  gap: 22px;
}

.dev-grid-css-row {
  grid-template-columns: 68px minmax(0, 1fr);
}

.dev-grid-row.is-disabled {
  opacity: 0.42;
}

.dev-grid-row.is-disabled input {
  cursor: not-allowed;
}

.dev-grid-panel input[type="range"] {
  width: 100%;
  accent-color: #2f80ff;
}

.dev-grid-panel input[type="number"],
.dev-grid-panel input[type="text"] {
  width: 62px;
  justify-self: end;
  height: 28px;
  color: #f3f4f6;
  background: #1f2229;
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 4px 5px;
  font-size: 13px;
}

.dev-grid-panel input.dev-grid-css-logic[type="text"] {
  grid-column: 2;
  width: 100%;
  justify-self: stretch;
}

.dev-grid-panel input[type="number"] {
  appearance: textfield;
}

.dev-grid-panel input[type="number"]::-webkit-inner-spin-button,
.dev-grid-panel input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.dev-grid-value-unit {
  position: relative;
  display: block;
  width: 62px;
  justify-self: end;
}

.dev-grid-value-unit input[type="number"] {
  width: 100%;
  padding-right: 18px;
}

.dev-grid-value-unit span {
  position: absolute;
  top: 50%;
  right: 6px;
  color: #f3f4f6;
  font-size: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

.dev-grid-panel input[type="number"]:focus,
.dev-grid-panel input[type="text"]:focus,
.dev-grid-panel input[type="color"]:focus {
  border-color: rgba(255, 255, 255, 0.88);
  outline: none;
}

.dev-grid-panel input[type="color"] {
  width: 62px;
  justify-self: end;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.dev-grid-panel input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 2px;
}

.dev-grid-panel input[type="color"]::-webkit-color-swatch {
  border: 0;
}

.dev-grid-panel input[type="color"]::-moz-color-swatch {
  border: 0;
}

.dev-grid-credit {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 11px;
  padding-top: 9px;
  color: #f2f2f27a;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
}

.dev-grid-credit a {
  color: inherit;
  text-decoration: none;
}

.dev-grid-credit a:hover {
  color: #ffffff;
}

.topbar-button {
  min-height: 30px;
  padding: 3px 16px;
  border: 1px solid #ff8c5a;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff8c5a 0%, #ffd84d 38%, #ffd84d 100%);
  color: #090b10;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px #ff7a0033;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.topbar-button:hover {
  transform: translateY(-1px) scale(1.06);
  box-shadow: 0 10px 22px #ff7a0040;
  filter: brightness(1.05);
}

.layout-grid-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

body.show-layout-grid .layout-grid-overlay {
  display: block;
}

.layout-grid-inner {
  width: min(1200px, 100%);
  height: 100%;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.layout-grid-inner span {
  display: block;
  min-height: 100%;
  background: #f59acb;
  opacity: 0.12;
}

/* End of Dev Layout Grid */

.hero {
  background: url("images/DJ decks 03.png") center center / cover no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 64px 0;
  margin-bottom: 0rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  inset: 0 0 -3px 0;
  background: linear-gradient(90deg, #090b10 0%, #090b10e0 35%, #090b108c 62%, #090b1000 100%);
  z-index: 0;
}

.hero::after {
  background:
    linear-gradient(180deg, #090b10 0%, #090b1000 100%) top / 100% 80px no-repeat,
    linear-gradient(180deg, #090b1000 0%, #090b10 100%) bottom / 100% 80px no-repeat;
  z-index: 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.hero-content {
  width: 100%;
  max-width: none;
  text-align: left;
}

.hero h1 {
  margin: 0 0 16px;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.03em;
  max-width: none;
  color: #eaff00;
  text-shadow: 0 2px 18px #0000008c;
}

.hero-text {
  margin: 0 0 24px;
  max-width: 48ch;
  color: transparent;
  line-height: 1.7;
  background: linear-gradient(90deg, #ffd84d 0%, #f2f2f2 62%, #f2f2f2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 1px 10px #00000073;
}

.hero-button {
  background: transparent;
  color: #f5f5f7;
  padding: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-action:hover {
  transform: translateY(-1px) scale(1.06);
  filter: brightness(1.05);
}

.hero-action-primary {
  color: #090b10;
  background: linear-gradient(90deg, #ff8c5a 0%, #ffd84d 100%);
}

.hero-action-secondary {
  color: #090b10;
  background: linear-gradient(90deg, #8b5cf6 0%, #00d1ff 100%);
}

#videos-and-news,
#tracks,
#blog {
  scroll-margin-top: 90px;
}

#videos-and-news {
  margin-bottom: 1rem;
}

#tracks {
  margin-bottom: 4rem;
}

.edm-banner {
  padding: 48px 0 3rem;
  background: #090b10;
}

.edm-banner-inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 30px;
}

.edm-banner-panel {
  padding: 15px;
  border: 1px solid #00d1ffb3;
  border-radius: 3px;
  background: linear-gradient(135deg, #ffd84d 0%, #ff8c5a 46%, #00d1ff 100%);
  box-shadow: 0 18px 42px #00d1ff24;
  text-align: center;
}

.edm-banner-panel:nth-of-type(1) {
  grid-column: 1 / span 4;
}

.edm-banner-panel:nth-of-type(2) {
  grid-column: 5 / span 4;
}

.edm-banner-panel:nth-of-type(3) {
  grid-column: 9 / span 4;
}

.feature-section-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 1rem;
  color: #00ff7b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-section-heading span {
  padding: 4px 10px;
  border: 1px solid #7cff6b55;
  border-radius: 3px;
}

.feature-section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #6d7680;
}

.edm-banner-panel h2 {
  margin: 0 0 8px;
  color: #090b10;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.edm-banner-panel p {
  margin: 0;
  color: #11131a;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.feature-track-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.feature-track-image {
  position: relative;
  width: 100%;
  min-height: 148px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #00d1ff66;
  border-radius: 3px;
  background: #0c0d11;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.feature-track-card:nth-of-type(2) .feature-track-image {
  border-color: #7cff6b66;
}

.feature-track-card:nth-of-type(3) .feature-track-image {
  border-color: #ffd84d66;
}

.feature-track-card.is-current .feature-track-image {
  border-color: #4994fab3;
  box-shadow: 0 0 4px #4994fab3;
}

.feature-track-card.is-playing .feature-track-image {
  border-color: #ff7a00;
  box-shadow: 0 0 10px #ff7a0088, 0 0 18px #ff7a0044;
}

.feature-track-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-track-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #05070dbf 0%, #05070d26 48%, #05070dd9 100%);
  pointer-events: none;
}

.feature-track-copy {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 1;
}

.feature-track-label {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
  color: #00d1ff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.feature-track-card h2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  color: #ffd84d;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  text-transform: none;
  text-shadow: 0 2px 10px #0000008c;
}

.feature-track-action {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2ea;
  color: #090b10;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px #00000066;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-track-action::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.feature-track-action:hover {
  background: #f8f8f8f0;
  transform: translate(-50%, -50%) scale(1.08);
}

.feature-track-card.is-playing .feature-track-action::before {
  width: 2px;
  height: 10px;
  transform: translate(-4px, -50%);
  border: 0;
  background: #090b10;
  box-shadow: 6px 0 0 #090b10;
}

.track-block h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 1rem;
  color: #00ff7b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-block h2 span {
  padding: 4px 10px;
  border: 1px solid #7cff6b55;
  border-radius: 3px;
}

.track-block h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #6d7680;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.music-card {
  display: grid;
  width: 124px;
  gap: 8px;
}

.music-card-image {
  position: relative;
  width: 124px;
  height: 124px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.music-card.is-current .music-card-image {
  border-width: 1px;
  border-color: #4994fab3;
  box-shadow: 0 0 4px #4994fab3;
}

.music-card.is-playing .music-card-image {
  border-width: 1px;
  border-color: #ff7a00;
  box-shadow: 0 0 10px #ff7a0088, 0 0 18px #ff7a0044;
}

.music-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.music-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f2f2f2ea;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px #00000066;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.music-card-play:hover {
  background: #f8f8f8f0;
  transform: translate(-50%, -50%) scale(1.08);
}

.music-card-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #090b10;
}

.music-card.is-playing .music-card-play::before {
  width: 2px;
  height: 10px;
  transform: translate(-4px, -50%);
  border: 0;
  background: #090b10;
  box-shadow: 6px 0 0 #090b10;
}

.music-card h3 {
  margin: 0;
  color: #ffd84d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.music-card p {
  margin: 0;
  color: #c0c4cc;
  font-size: 11px;
  line-height: 1.45;
}

.music-card a,
.music-card-link {
  color: #f2f2f2;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.music-card a:hover,
.music-card-link:hover {
  color: #ffd84d;
}

.track-block:first-child {
  margin-bottom: 3rem;
}

.audio-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 16px 20px;
  border-top: 1px solid #7cff6b55;
  background: #08090de6;
}

.audio-dock-inner {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(240px, 420px) 120px auto;
  align-items: center;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.audio-preview {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.audio-cover {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: cover;
}

.audio-preview-copy {
  min-width: 0;
}

.audio-kicker {
  display: block;
  margin: 0 0 3px;
  color: #ffd84d;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.audio-title {
  margin: 0;
  color: #f2f2f2;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-description {
  margin: 3px 0 0;
  color: #c0c4cc;
  font-size: 11px;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 2px;
}

.audio-button,
.audio-close {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d5d8de;
  cursor: pointer;
}

.audio-toggle::before {
  content: "";
  display: block;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  transform: translateX(1px);
}

.audio-toggle {
  border: 1px solid #5b6068;
  border-radius: 50%;
}

.audio-skip-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.audio-next .audio-skip-icon {
  transform: translateX(-1px);
}

.audio-prev,
.audio-next {
  width: 32px;
  border: 0;
  background: transparent;
  color: #f4f4f4;
}

.audio-toggle.is-playing::before {
  width: 10px;
  height: 13px;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 3px, transparent 3px 7px, currentColor 7px 10px);
  transform: none;
}

.audio-timeline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.audio-time {
  color: #c0c4cc;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.audio-progress,
.audio-volume {
  width: 100%;
  accent-color: #ffffff;
}

.audio-volume {
  --audio-volume-fill: 80%;
  appearance: none;
  -webkit-appearance: none;
  height: 4px;
  border: 0;
  background: transparent;
}

.audio-volume::-webkit-slider-runnable-track {
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #d5d8de 0 var(--audio-volume-fill), #4b4f57 var(--audio-volume-fill) 100%);
}

.audio-volume::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
}

.audio-volume::-moz-range-track {
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: #4b4f57;
}

.audio-volume::-moz-range-progress {
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: #d5d8de;
}

.audio-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
}

.audio-progress {
  --audio-progress-fill: 0%;
  appearance: none;
  -webkit-appearance: none;
  height: 4px;
  border: 0;
  background: transparent;
}

.audio-progress::-webkit-slider-runnable-track {
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd84d 0 var(--audio-progress-fill), #4b4f57 var(--audio-progress-fill) 100%);
}

.audio-progress::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border: 0;
  border-radius: 50%;
  background: #ffd84d;
}

.audio-progress::-moz-range-track {
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: #4b4f57;
}

.audio-progress::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: #ffd84d;
}

.audio-progress::-moz-range-progress {
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: #ffd84d;
}

.audio-close {
  font-size: 20px;
  line-height: 1;
}

body.has-audio-dock {
  padding-bottom: 80px;
}

body {
  padding-bottom: 0;
}

.content-block {
  padding: 0 0;

  /* padding: 5rem */
}

.container.content-block {
  padding-top: 10px;
  padding-bottom: 2rem;
  margin-bottom: 0;
}

.cta-band {
  width: 100%;
  min-height: 150px;
  padding-top: 10px;
  padding-bottom: 1rem;
  margin-top: 0;
  margin-bottom: 0;
  background: #090b10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band .cta-copy {
  max-width: 1200px;
  margin-inline: auto;
  display: block;
}

.cta-panel {
  position: relative;
  border: 3px solid #ffd84d;
  border-radius: 8px;
  padding: 18px 20px;
  background: #14161d;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px 20px;
}

.cta-copy-text {
  display: contents;
}

.cta-copy h2 {
  grid-column: 1 / -1;
  margin: 0;
  color: transparent;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff8c5a 0%, #ffd84d 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.cta-heading-icon {
  display: inline-flex;
  width: 1.6em;
  height: 0.82em;
  margin-left: -6px;
  color: #ff8c5a;
  vertical-align: -0.08em;
}

.cta-heading-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
}

.cta-copy p {
  grid-column: 1;
  margin: 0;
  color: transparent;
  font-size: 16px;
  line-height: 1.5;
  background: linear-gradient(90deg, #ffd84d 0%, #f2f2f2 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.cta-band .cta-button {
  grid-column: 2;
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 34px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8c5a 0%, #ffd84d 100%);
  color: #090b10;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cta-band .cta-button span {
  position: relative;
}

.cta-button:hover {
  transform: translateY(-1px) scale(1.06);
  filter: brightness(1.05);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.posts-column {
  grid-column: 1 / span 8;
  display: grid;
  gap: 0rem;
  max-width: none;
}

.section-heading {
  margin: 0 0 8px;
  color: #dffdf5;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 16px;
  border-radius: 3px;
  background: linear-gradient(90deg, #12312d 0%, #1b2b3c 100%);
}

.featured-video {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
  padding: 18px 0 2rem;
  border-bottom: 1px solid #6d768080;
  --row-accent: #ff7a00;
}

.posts-column .featured-video:last-of-type {
  border-bottom: 1px solid color-mix(in srgb, var(--row-accent) 38%, #ffffff14);
}

.posts-column .featured-video:nth-of-type(1) {
  --row-accent: #ff7a00;
}

.posts-column .featured-video:nth-of-type(2) {
  --row-accent: #ffd54a;
}

.posts-column .featured-video:nth-of-type(3) {
  --row-accent: #00d1ff;
}

.posts-column .featured-video:nth-of-type(4) {
  --row-accent: #7cff6b;
}

.posts-column .featured-video:nth-of-type(5) {
  --row-accent: #ff7a00;
}

.posts-column .featured-video:nth-of-type(6) {
  --row-accent: #ffd54a;
}

.posts-column .featured-video:nth-of-type(7) {
  --row-accent: #00d1ff;
}

.posts-column .featured-video:nth-of-type(8) {
  --row-accent: #7cff6b;
}

.featured-video .video-frame {
  border: 1px solid color-mix(in srgb, var(--row-accent) 38%, #ffffff14);
}

.posts-column .featured-video:last-of-type .video-frame iframe {
  border-bottom: 1px solid color-mix(in srgb, var(--row-accent) 55%, #ffffff14);
}

.featured-video .text-frame {
  border-left: 0;
}

.featured-video .featured-text h2 {
  color: var(--row-accent);
}

.featured-video .featured-text h2.video-title-light {
  font-weight: 600;
}

.video-title-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.video-title-copy {
  min-width: 0;
}

.video-title-row .video-title-light {
  display: -webkit-box;
  margin-bottom: 4px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.video-channel-handle {
  display: inline-block;
  margin-top: 0;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.2;
  text-decoration: none;
}

.video-channel-meta {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.2;
}

.video-channel-actions {
  grid-column: 2;
  margin-top: 10px;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}


.video-channel-actions .post-button {
  width: 48px;
  text-align: center;
}

.video-channel-avatar {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.video-channel-avatar-logo {
  padding: 4px;
  background: #05070d;
  border: 1px solid #ffd54a66;
  object-fit: contain;
}

.featured-video .post-button {
  border-color: color-mix(in srgb, var(--row-accent) 38%, #8491a666);
  background: color-mix(in srgb, var(--row-accent) 16%, #8491a624);
  padding: 4px 7px 3px;
  font-size: 8px;
  line-height: 1;
}

.featured-video .post-button-orange {
  border-color: #ff7a0066;
  background: #ff7a0029;
}

.featured-video .post-button-yellow {
  border-color: #ffd54a66;
  background: #ffd54a29;
}

.featured-video .post-button-brown {
  border-color: #9b6a3d66;
  background: #9b6a3d29;
}

.video-frame {
  grid-column: 1 / span 4;
  width: 100%;
  background: transparent;
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.featured-text {
  grid-column: 5 / span 4;
  padding: 6px 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  max-width: none;
}

.text-frame {
  padding: 16px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.post-meta {
  margin: 0;
  color: #f2f2f2ad;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-text h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  overflow-wrap: normal;
  word-break: normal;
  color: #e6ebf4;
  text-shadow: 0 0 14px #7889a71a;
}

.post-text,
.featured-text .post-text {
  color: #f2f2f2b8;
  line-height: 1.45;
  text-align: left;
  margin: 0;
  overflow-wrap: break-word;
  max-width: 42ch;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.featured-text .post-text {
  font-size: 12px;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 8px;
  width: 100%;
  max-width: none;
  padding: 0;
}

.post-footer .post-button {
  order: -1;
}

.post-info {
  margin: 0;
  color: #bec6d480;
  font-size: 11px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.post-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid #8491a666;
  border-radius: 4px;
  color: #f2f2f2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  background: #8491a624;
}

.post-button:hover {
  border-color: #aeb7c766;
}

.sidebar-column {
  grid-column: 9 / span 4;
  width: auto;
  display: grid;
  gap: 12px;
  position: sticky;
  top: 78px;
  align-self: start;
  padding-top: 0;
}

.sidebar-title {
  margin: 0;
  padding: 14px 16px;
  color: #dffdf5;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  background: linear-gradient(90deg, #12312d 0%, #1b2b3c 100%);
}

.sidebar-item {
  --sidebar-accent: #ff7a00;
  padding: 16px 18px;
  background: #0c0d11;
}

.sidebar-heading {
  margin: 0 0 8px;
  padding-left: 12px;
  border-left: 3px solid var(--sidebar-accent);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.sidebar-text {
  margin: 0;
  color: #f2f2f2b8;
  font-size: 12px;
  line-height: 1.6;
}

.sidebar-column > .sidebar-item:nth-child(2) {
  --sidebar-accent: #ff7a00;
}

.sidebar-column > .sidebar-item:nth-child(3) {
  --sidebar-accent: #ffd54a;
}

.sidebar-column > .sidebar-item:nth-child(4) {
  --sidebar-accent: #00d1ff;
}

.sidebar-column > .sidebar-item:nth-child(5) {
  --sidebar-accent: #7cff6b;
}

.sidebar-column > .sidebar-item:nth-child(6) {
  --sidebar-accent: #ff7a00;
}

.sidebar-column > .sidebar-item:nth-child(7) {
  --sidebar-accent: #ffd54a;
}

.site-footer {
  margin-top: 2rem;
  background: #08090d;
  border-top: 1px solid #ffffff26;
}

.footer-main {
  min-height: 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
  position: relative;
}

.footer-brand-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 8px #7cff6b66;
  grid-column: 2;
}

.footer-site-name {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 8px #7cff6b66;
  grid-column: 1;
  justify-self: start;
}

.footer-nav {
  justify-content: flex-end;
  gap: 14px;
  grid-column: 3;
  align-self: center;
  margin-top: 0;
}

.footer-nav a {
  position: relative;
  min-height: 28px;
  padding: 0 9px;
  font-size: 12px;
}

.footer-nav a + a::before {
  content: "|";
  position: absolute;
  left: -10px;
  color: #6d7680;
}

.footer-bottom {
  border-top: 1px solid #ffffff14;
  background: #050609;
}

.footer-bottom-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #f2f2f299;
  font-size: 12px;
}

.footer-bottom-inner p {
  margin: 0;
}

.footer-bottom-inner a {
  color: #f2f2f2b8;
  text-decoration: none;
}

.footer-bottom-inner a:hover {
  color: #ffd84d;
}

/* Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    width: 94%;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 11px 0;
  }

  .site-logo {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
  }

  .header-menu {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  .header-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 38px;
    min-height: 38px;
    padding: 0;
    color: #eaff00;
    cursor: pointer;
    background: #10131a;
    border: 1px solid #00d1ff55;
    border-radius: 999px;
  }

  .site-header .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 300;
    padding: 10px;
    justify-content: start;
    justify-items: start;
    background: #111111;
    border: 1px solid #ffffff26;
    border-radius: 0 0 8px 8px;
    gap: 8px;
  }

  .header-menu.is-open .main-nav {
    display: grid;
  }

  .topbar-tools {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: start;
    flex-wrap: nowrap;
  }

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

  .edm-banner-panel:nth-of-type(1),
  .edm-banner-panel:nth-of-type(2),
  .edm-banner-panel:nth-of-type(3) {
    grid-column: auto;
  }

  .edm-banner-panel:nth-of-type(3) {
    display: none;
  }

  .edm-banner-panel {
    padding: 15px;
  }

  .feature-track-card {
    padding: 0;
  }

  .edm-banner-panel p {
    font-size: 14px;
  }

  .feature-track-card h2 {
    font-size: 18px;
  }

  .feature-track-card p {
    font-size: 12px;
  }

  .content-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 30px;
  }

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

  .music-card {
    width: auto;
  }

  .music-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .posts-column {
    grid-column: 1 / span 6;
  }

  .featured-video {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .video-frame {
    grid-column: 1;
    width: auto;
  }

  .featured-text {
    grid-column: 2;
    padding-top: 0;
  }

  .text-frame {
    padding: 0 0 14px;
  }

  .post-footer {
    padding-left: 0;
  }

  .sidebar-column {
    grid-column: 7 / span 3;
    grid-template-columns: 1fr;
    position: sticky;
    width: auto;
  }

  .sidebar-heading {
    padding-left: 12px;
  }
}

@media (min-width: 1024px) and (max-width: 1070px) {
  .header-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 38px;
    min-height: 38px;
    padding: 0;
    color: #eaff00;
    cursor: pointer;
    background: #10131a;
    border: 1px solid #00d1ff55;
    border-radius: 999px;
  }
}

@media (max-width: 767px) {
  .container {
    width: 94%;
  }

  .hero {
    min-height: 300px;
    padding: 30px 0;
  }

  .edm-banner {
    padding-top: 20px;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: center;
    gap: 15px;
    min-height: 58px;
    padding: 11px 0;
  }

  .site-logo {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
  }

  .header-brand-text {
    font-size: 0;
  }

  .header-brand-text::after {
    content: "NMH";
    font-size: 20px;
  }

  .site-header .nav-contact {
    display: block;
  }

  .header-menu {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  .header-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 38px;
    min-height: 38px;
    padding: 0;
    color: #eaff00;
    cursor: pointer;
    background: #10131a;
    border: 1px solid #00d1ff55;
    border-radius: 999px;
  }

  .site-header .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 130;
    padding: 10px;
    justify-content: start;
    justify-items: start;
    background: #1a0b00;
    border: 1px solid #ffffff26;
    border-radius: 0 0 8px 8px;
    gap: 8px;
  }

  .header-menu.is-open .main-nav {
    display: grid;
  }

  .topbar-tools {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: start;
    flex-wrap: nowrap;
  }

  .cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px 16px;
  }

  .cta-copy-text {
    display: contents;
  }

  .cta-copy h2 {
    grid-column: 1 / -1;
    font-size: 30px;
  }

  .cta-copy p {
    grid-column: 1;
    font-size: 14px;
  }

  .cta-band .cta-button {
    grid-column: 2;
    align-self: end;
  }

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

  .edm-banner-panel:nth-of-type(1),
  .edm-banner-panel:nth-of-type(2),
  .edm-banner-panel:nth-of-type(3) {
    grid-column: auto;
  }

  .edm-banner-panel:nth-of-type(3) {
    display: none;
  }

  .edm-banner-panel {
    padding: 15px;
  }

  .feature-track-card {
    padding: 0;
  }

  .edm-banner-panel p {
    font-size: 14px;
  }

  .feature-track-card h2 {
    font-size: 16px;
    text-align: center;
  }

  .feature-track-label {
    right: 0;
    font-size: 14px;
    text-align: center;
  }

  .feature-track-card p {
    font-size: 12px;
  }

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

  .posts-column {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 0rem;
  }

  .section-heading,
  .featured-video {
    grid-column: 1 / -1;
  }

  .featured-video {
    grid-template-columns: 1fr;
    gap: 14px;
    border-bottom: 0;
  }

  .featured-video .video-frame {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border: 0;
  }

  .video-frame iframe {
    width: 100vw;
    max-width: none;
    margin-left: calc((100% - 100vw) / 2);
    border-top: 1px solid color-mix(in srgb, var(--row-accent) 38%, #ffffff14);
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--row-accent) 38%, #ffffff14);
    border-left: 0;
    border-radius: 0;
  }

  .featured-text {
    grid-column: 1 / -1;
    max-width: none;
    min-width: 0;
    padding-top: 0;
    padding-left: 0;
  }

  .text-frame {
    padding: 0;
  }

  .post-footer {
    padding: 0;
  }

  .featured-text h2 {
    white-space: normal;
  }

  .post-text,
  .featured-text .post-text {
    max-width: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }

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

  .music-card {
    width: auto;
  }

  .music-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .posts-column,
  .sidebar-column {
    grid-column: 1 / -1;
    width: auto;
  }

  .sidebar-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static;
  }

  .sidebar-title {
    grid-column: 1 / -1;
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 0;
    gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
  }

  .footer-brand-text {
    font-size: 18px;
    margin: 0 0 1rem;
  }

  .footer-site-name {
    display: none;
  }

  .footer-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 0;
  }
}

@media (max-width: 1070px) {
  .topbar-home-icon {
    width: 38px;
    height: 38px;
    background: #10131a;
    border-color: #00d1ff55;
    border-radius: 3px;
  }

  .topbar-home svg {
    width: 24px;
    height: 24px;
  }

  .topbar-tools .topbar-home > span:not(.topbar-home-icon) {
    display: none;
  }

  .site-header .main-nav .topbar-home {
    display: none;
  }

  .site-header .main-nav a.is-active {
    color: #7cff6b;
  }

  .menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 140;
    pointer-events: none;
    background: #000000;
    opacity: 0;
    transition: opacity 220ms ease;
  }

  .header-menu.is-open .menu-overlay {
    opacity: 0.7;
    pointer-events: auto;
  }

  .site-header .main-nav {
    display: grid;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    pointer-events: auto;
    align-content: start;
    justify-content: stretch;
    justify-items: start;
    width: 40vw;
    padding: 86px 18px 18px;
    overflow-y: auto;
    scrollbar-width: none;
    background: #111111;
    border: 0;
    border-right: 1px solid #2f2f2f;
    border-radius: 0;
    gap: 14px;
    transform: translateX(-100%);
    transition: none;
    touch-action: pan-y;
  }

  .site-header .main-nav::-webkit-scrollbar {
    display: none;
  }

  .header-menu.is-open .main-nav {
    transform: translateX(0);
    transition: transform 420ms ease;
  }

  .header-menu.is-closing .main-nav {
    transform: translateX(-100%);
    transition: transform 420ms ease;
  }

  .site-header .main-nav.is-dragging {
    transition: none;
    user-select: none;
  }

  .site-header .main-nav .nav-icon {
    text-shadow: 0 0 10px #ff7a0066;
  }

  .site-header .main-nav a {
    font-size: 15px;
  }

  .offcanvas-popular {
    display: grid;
    gap: 12px;
    width: 100%;
    margin-top: 2rem;
  }

  .offcanvas-popular h2 {
    margin: 0 0 1rem;
    width: fit-content;
    padding: 4px 10px;
    color: #00ff7b;
    border: 1px solid #7cff6b55;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .offcanvas-track {
    display: grid;
    position: relative;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .offcanvas-track img {
    display: block;
    width: 62px;
    height: 62px;
    object-fit: cover;
    border: 1px solid #00d1ff66;
    border-radius: 3px;
  }

  .offcanvas-track h3 {
    margin: 0 0 4px;
    color: #ffd84d;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
  }

  .offcanvas-track p {
    margin: 0;
    color: #c0c4cc;
    font-size: 11px;
    line-height: 1.35;
  }

  .offcanvas-track-play {
    position: absolute;
    top: 50%;
    left: 31px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f2f2f2ea;
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 18px #00000066;
    cursor: pointer;
    transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .offcanvas-track-play:hover {
    background: #f8f8f8f0;
    transform: translate(-50%, -50%) scale(1.08);
  }

  .offcanvas-track-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #090b10;
  }

  .offcanvas-share {
    display: grid;
    gap: 12px;
    width: 100%;
    margin-top: 2rem;
  }

  .offcanvas-share h2 {
    margin: 0 0 1rem;
    width: fit-content;
    padding: 4px 10px;
    color: #00d1ff;
    border: 1px solid #00d1ff66;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .offcanvas-share-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 2rem;
  }

  .offcanvas-share-icons a,
  .offcanvas-share-icons button {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
    color: #f2f2f299;
    background: transparent;
    border: 1px solid #f2f2f299;
    border-radius: 50%;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
  }

  .offcanvas-share-icons svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .offcanvas-share-icons .social-brand-icon {
    fill: currentColor;
    stroke: none;
  }

  .offcanvas-share-icons .social-instagram-icon {
    width: 16px;
    height: 16px;
  }

  .offcanvas-share-brand {
    color: #f2f2f2;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.14em;
  }

  .menu-close {
    display: inline-flex;
    position: absolute;
    top: 8px;
    right: 8px;
    align-items: center;
    justify-content: center;
    width: 34px;
    min-height: 34px;
    padding: 0;
    color: #9da3af;
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: 999px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
  }

  .offcanvas-logo {
    display: block;
    position: absolute;
    top: 28px;
    left: 18px;
    min-height: 40px;
    color: #ffffff;
    font-family: "Roboto", system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 0 8px #7cff6b66;
    align-content: center;
  }

  .offcanvas-search {
    display: inline-grid;
    place-items: center;
    position: absolute;
    top: 24px;
    right: 18px;
    width: 40px;
    height: 40px;
    padding: 0;
    color: #eaff00;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .offcanvas-search svg {
    display: block;
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
  }

  .offcanvas-search-form {
    display: none;
    position: absolute;
    top: 26px;
    left: 18px;
    right: 18px;
    z-index: 3;
    grid-template-columns: 34px minmax(0, 1fr) 38px;
    align-items: center;
    min-height: 40px;
    border: 1px solid #eaff00;
    border-radius: 3px;
    background: #08090df2;
  }

  .site-header .main-nav.is-searching .offcanvas-search-form {
    display: grid;
  }

  .offcanvas-search-input {
    width: 100%;
    min-height: 38px;
    padding: 0 6px;
    border: 0;
    background: transparent;
    color: #f2f2f2;
    font: 500 14px/1 "Roboto", system-ui, sans-serif;
  }

  .offcanvas-search-input::placeholder {
    color: #f2f2f280;
  }

  .offcanvas-search-input:focus {
    outline: none;
  }

  .offcanvas-search-input::-webkit-search-cancel-button {
    display: none;
  }

  .offcanvas-search-back,
  .offcanvas-search-submit {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 38px;
    padding: 0;
    color: #eaff00;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .offcanvas-search-submit {
    width: 38px;
  }

  .offcanvas-search-back svg,
  .offcanvas-search-submit svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

}

@media (max-width: 767px) {
  .topbar-tools .topbar-home {
    display: inline-flex;
  }

  .topbar-tools .topbar-home > span:not(.topbar-home-icon) {
    display: none;
  }

  .menu-overlay {
    left: 0;
  }

  .site-header .main-nav {
    width: 80vw;
  }
}

@media (max-width: 479px) {
  .post-info {
    display: none;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .featured-text h2 {
    font-size: 16px;
  }

  .featured-text .post-text {
    font-size: 12px;
  }

  .sidebar-heading {
    font-size: 14px;
  }

}

@media (max-width: 899px) {
  .audio-dock {
    padding: 12px 12px;
  }

  .audio-dock-inner {
    grid-template-columns: minmax(90px, 1fr) auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  .audio-timeline {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .audio-time,
  .audio-description,
  .audio-volume {
    display: none;
  }
}

@media (max-width: 599px) {
  .audio-time,
  .audio-description,
  .audio-volume {
    display: none;
  }

  .audio-dock-inner {
    grid-template-columns: minmax(109px, 0.8fr) auto minmax(0, 1fr) auto;
    gap: 8px;
  }

  .audio-timeline {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 575px) and (max-width: 767px) and (orientation: portrait) {
  .featured-text h2 {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .featured-text .post-text {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
  }
}

@media (min-width: 550px) and (max-width: 950px) and (orientation: landscape) {
  .featured-text h2 {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .featured-text .post-text {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
  }
}
