

@font-face {
  font-family: 'Digital7';
  src: url('fonts/digital-7\ \(italic\).ttf');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  background: #040404;
  color: #f5eef9;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-style: italic;
  cursor: default;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.022) 0 1px, rgba(0,0,0,0) 1px 4px),
    radial-gradient(circle at 50% 36%, rgba(255,124,238,0.16) 0%, rgba(255,124,238,0.08) 18%, rgba(255,124,238,0.03) 34%, rgba(0,0,0,0) 58%),
    radial-gradient(circle at 50% 36%, rgba(255,210,249,0.06) 0%, rgba(255,210,249,0.02) 16%, rgba(0,0,0,0) 36%),
    radial-gradient(circle at 50% 42%, rgba(0,0,0,0) 38%, rgba(0,0,0,0.3) 72%, rgba(0,0,0,0.62) 100%),
    linear-gradient(180deg, #0b090c 0%, #040404 100%);
  pointer-events: none;
  z-index: -1;
}



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

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
}

#starCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.marquee-bar,
.site-footer,
.lightbox {
  position: relative;
  z-index: 1;
}

.video-dim-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.66);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 18;
}

body.video-focus .video-dim-overlay {
  opacity: 1;
}

.marquee-bar {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
  background: linear-gradient(180deg, #eb6fdf 0%, #ca23aa 48%, #0a0a0a 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  border-top: 2px solid #ffe4ff;
  border-bottom: 2px solid #76167d;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 4px 12px rgba(0,0,0,0.25);
}

.marquee-inner {
  display: inline-block;
  padding-left: 100%;
  animation: marqueeScroll 35s linear infinite;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.center-column {
  max-width: 1028px;
  margin: 30px auto 10px;
  padding: 4px 8px 8px;
}

.site-header {
  display: grid;
  grid-template-columns: 250px 756px;
  justify-content: center;
  gap: 6px;
  align-items: end;
  margin-bottom: 4px;
  padding: 2px 0 1px;
}

.top-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 8px;
  padding: 6px 8px;
  border: 1px solid rgba(241,165,244,0.22);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 16%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.015) 18%, rgba(0,0,0,0) 34%),
    linear-gradient(180deg, #141414 0%, #050505 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 5px 10px rgba(0,0,0,0.12);
}

.top-menu-link {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: #f7d8fb;
  font-size: 11px;
  font-weight: 900;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.top-menu-item {
  position: relative;
  display: inline-flex;
}

.top-menu-link-dropdown {
  cursor: default;
}

.top-menu-link:hover {
  background: rgba(233,118,236,0.16);
  color: #ffffff;
}

.top-menu-link-disabled {
  cursor: default;
  opacity: 0.8;
}

.top-menu-item-disabled .top-menu-link-disabled {
  filter: grayscale(0.08);
}

.top-menu-overlay {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%) translateY(-4px);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, #f09ae7 0%, #d85ac5 36%, #9f247f 70%, #4b083b 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 140ms ease, transform 140ms ease;
  text-shadow:
    0 -1px 0 rgba(94, 16, 76, 0.5),
    0 1px 0 rgba(255,255,255,0.08),
    0 0 1px rgba(0,0,0,0.12);
  box-shadow:
    inset 0 -1px 0 rgba(48, 4, 36, 0.55),
    0 5px 12px rgba(0,0,0,0.18);
  z-index: 2;
}

.top-menu-item-disabled:hover .top-menu-overlay {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.top-menu-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  min-width: 220px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #6f8197 0%, #46556a 34%, #273241 68%, #121821 100%);
  box-shadow:
    inset 0 -1px 0 rgba(10, 16, 24, 0.55),
    0 8px 18px rgba(0,0,0,0.22);
  transform: translateX(-50%) translateY(-4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 3;
}

.top-menu-item-dropdown:hover .top-menu-dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.top-menu-dropdown-contact,
.top-menu-dropdown-socials {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.top-menu-dropdown-link {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-shadow:
    0 -1px 0 rgba(22, 30, 40, 0.5),
    0 1px 0 rgba(255,255,255,0.08),
    0 0 1px rgba(0,0,0,0.12);
  font-family: Arial, Helvetica, sans-serif;
}

.top-menu-dropdown-link:hover {
  text-decoration: underline;
}

.top-menu-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.top-menu-social-icon-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
}

.top-menu-social-icon-slot img,
.top-menu-social-icon-slot svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-logo {
  display: block;
  width: 390px !important;
  max-width: 135%;
  margin: 0;
  transform-origin: center center;
  animation: logoFlashSpin 4s linear infinite;
  image-rendering: auto;
}

@keyframes logoFlashSpin {
  0% {
    filter: brightness(1) drop-shadow(0 0 0 rgba(255,255,255,0));
    transform: perspective(700px) rotateY(0deg);
  }
  10% {
    filter: brightness(3.6) saturate(0) drop-shadow(0 0 14px rgba(255,255,255,0.95));
    transform: perspective(700px) rotateY(0deg);
  }
  18% {
    filter: brightness(1.3) drop-shadow(0 0 3px rgba(255,255,255,0.4));
    transform: perspective(700px) rotateY(0deg);
  }
  55% {
    filter: brightness(1.1) drop-shadow(0 0 6px rgba(255,255,255,0.18));
    transform: perspective(700px) rotateY(360deg);
  }
  100% {
    filter: brightness(1) drop-shadow(0 0 0 rgba(255,255,255,0));
    transform: perspective(700px) rotateY(360deg);
  }
}

.header-meta {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-end;
  justify-self: stretch;
  gap: 4px;
  margin-bottom: 0;
  padding-top: 0;
}

.release-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 2px 10px 4px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  background: linear-gradient(180deg, #f09ae7 0%, #d85ac5 36%, #9f247f 70%, #4b083b 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  transform: translateY(-1px);
  text-shadow:
    0 -1px 0 rgba(94, 16, 76, 0.5),
    0 1px 0 rgba(255,255,255,0.08),
    0 0 1px rgba(0,0,0,0.12);
  box-shadow:
    inset 0 -1px 0 rgba(48, 4, 36, 0.55),
    0 4px 10px rgba(0,0,0,0.2);
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}

.countdown-unit {
  display: flex;
  align-items: baseline;
  gap: 3px;
  min-width: 41px;
  padding: 4px 5px 3px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.02) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.015) 18%, rgba(0,0,0,0) 34%),
    linear-gradient(180deg, #161616 0%, #050505 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -6px 10px rgba(0,0,0,0.28);
}

.countdown-sep {

  border-radius: 50%;
  background: rgba(234,125,236,0.5);
}

.countdown-num {
  display: inline;
  font-size: 22px;
  font-weight: 900;
  color: #ef91ef;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif, monospace;
  text-shadow: 0 0 10px rgba(239,145,239,0.25);
}

.countdown-label {
  display: inline;
  margin-top: 0px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif, monospace;
}

.columns {
  display: grid;
  grid-template-columns: 200px 806px;
  justify-content: center;
  gap: 6px;
  align-items: start;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar > * {
  margin-bottom: 10px;
}

.sidebar > *:last-child {
  margin-bottom: 0;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.main-stage {
  display: grid;
  grid-template-columns: 600px 200px;
  width: 806px;
  gap: 6px;
  align-items: start;
}

.main-stage-primary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.main-stage-artists {
  width: 200px;
  justify-self: start;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 296px) minmax(0, 296px);
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.audio-column,
.gallery-panel {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.updates-panel {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  margin-right: 10px;
  gap: 6px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(241,165,244,0.24);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 16%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.015) 18%, rgba(0,0,0,0) 34%),
    linear-gradient(180deg, #141414 0%, #050505 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 5px 10px rgba(0,0,0,0.14);
}

.widget,
.video-frame,
.player-unit,
.about-box,
.chat-embed iframe,
.gallery-cell {
  outline: 1px solid rgba(0,0,0,0.68);
  outline-offset: -2px;
}

.widget {
  width: 100%;
  overflow: hidden;

  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 18%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 16%, rgba(0,0,0,0) 32%),
    linear-gradient(180deg, #141414 0%, #050505 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -8px 16px rgba(0,0,0,0.28),
    0 6px 12px rgba(0,0,0,0.18);
}

.widget-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 2px 6px 4px;
  background: linear-gradient(180deg, #f09ae7 0%, #d85ac5 36%, #9f247f 70%, #4b083b 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transform: translateY(-1px);
  text-shadow:
    0 -1px 0 rgba(94, 16, 76, 0.5),
    0 1px 0 rgba(255,255,255,0.08),
    0 0 1px rgba(0,0,0,0.12);
  box-shadow:
    inset 0 -1px 0 rgba(48, 4, 36, 0.55);
}

.widget-body {
  padding: 6px;
  font-size: 10px;
  line-height: 1.35;
  font-family: Arial, sans-serif;
}

.widget-visitor .widget-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 0;
  padding: 6px 10px 7px;
}

.widget-visitor {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.visitor-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.visitor-globe {
  width: 20px;
  height: 20px;
  object-fit: contain;
  image-rendering: auto;
}

#hitCount {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: #ed88ed;
  letter-spacing: 3px;
  font-family: Arial, Helvetica, sans-serif;
}

.visitor-label {
  margin-top: 2px;
  text-align: center;
  font-size: 11px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.widget-presave {
  overflow: visible;
  outline: none;
  background: transparent;
  box-shadow: none;
}

.widget-presave .widget-title {
  width: fit-content;
  min-height: 0;
  margin: 0 auto 8px;
  padding: 4px 12px 5px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  box-shadow:
    inset 0 -1px 0 rgba(48, 4, 36, 0.55),
    0 5px 12px rgba(0,0,0,0.16);
}

.widget-presave .widget-body {
  padding: 0;
}

.presave-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.presave-cover-shell {
  position: relative;
  width: 88%;
  max-width: none;
  margin: 10px auto;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1;
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
  animation: presaveCoverFloat 14s ease-in-out infinite;
}

.presave-cover-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.08) 18%, rgba(255,255,255,0) 36%),
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 12%, rgba(255,255,255,0) 32%);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.presave-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes presaveCoverFloat {
  0% {
    transform: perspective(700px) rotateY(-25deg) scale(1);
  }
  50% {
    transform: perspective(700px) rotateY(25deg) scale(1);
  }
  100% {
    transform: perspective(700px) rotateY(-25deg) scale(1);
  }
}

.presave-button {
  
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 10px 9px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: linear-gradient(180deg, #b9ffb5 0%, #74d66d 36%, #358d35 70%, #0d220e 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow:
    0 -1px 0 rgba(15, 73, 18, 0.88),
    0 1px 0 rgba(255,255,255,0.14),
    0 0 2px rgba(0,0,0,0.16);
  box-shadow:
    inset 0 -1px 0 rgba(10, 56, 14, 0.55),
    0 5px 10px rgba(0,0,0,0.18);
  transition: transform 140ms ease, filter 140ms ease;
}

.presave-button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.widget-links .widget-body {
  padding: 3px 4px;
}

.links-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 6px;
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.site-link:hover {
  background: rgba(233,118,236,0.14);
  color: #ef9ff0;
}

.link-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.link-label {
  font-size: 13px;
}

.chat-embed {
  width: 100%;
}

.chat-embed iframe {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid rgba(241,165,244,0.34);
  border-radius: 4px;
  background: #120714;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 6px 12px rgba(0,0,0,0.16);
}

.map-widget-body {
  padding: 7px 6px 8px;
  text-align: center;
}

.map-widget-image-link {
  display: block;
  padding: 4px;
  border: 1px solid rgba(241,165,244,0.2);
  background: rgba(255,255,255,0.02);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 4px 10px rgba(0,0,0,0.12);
}

.map-widget-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(0,0,0,0.45);
}

.map-widget-credit {
  display: inline-block;
  margin-top: 6px;
  color: #3079e6;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: underline;
}




.widget-artists .widget-body {
  padding: 5px 5px 8px;
}

.artist-entry + .artist-entry {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(241,165,244,0.22);
}

.artist-photo-shell {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  border: 3px solid rgba(213, 116, 215, 0.886);
  background: #18071c;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 4px 10px rgba(0,0,0,0.12);
}

.artist-photo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-name-widget {
  text-align: center;
  margin: 0 auto 2px;
  font-size: 18px;
  font-weight: 900;
  color: #ef93ef;
}

.artist-desc {
  margin: 0 10px;
  font-size: 12px;
  color: #f5f1f7;
  font-style: italic;
  font-family: Arial, sans-serif;
  text-align: left;
}

.artist-divider {
  border: none;
  border-top: 1px dashed rgba(241,165,244,0.22);
  margin: 5px 0;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241,165,244,0.34);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.01) 16%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.015) 18%, rgba(0,0,0,0) 34%),
    linear-gradient(180deg, #141414 0%, #050505 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 14px rgba(0,0,0,0.18);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

body.video-focus .video-frame {
  z-index: 19;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 48px rgba(0,0,0,0.45);
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

.webamp {

 transform: translateY(-30px);
}

.webamp-slot {
  width: 100%;
  margin-left:5px;
  margin-top: -15px;
  min-height: 400px;
  height: 400px;
  position: relative;
}

.webamp-anchor {
  position: relative;
  width: 100%;
  min-height: 400px;
  height: 400px;
  background: transparent;
}

.webamp-surprise {
  position: absolute;
  top: 25px;
  left: 12px;
  width: 252px;
  padding: 8px 8px 10px;
  border: 1px solid rgba(241,165,244,0.18);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 16%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, #141414 0%, #050505 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 8px 18px rgba(0,0,0,0.18);
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease;
}

.webamp-slot.webamp-ready .webamp-surprise {
  opacity: 0.88;
}

.webamp-surprise-image {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid rgba(213, 116, 215, 0.7);
  image-rendering: auto;
}

.webamp-surprise-text {
  margin-top: 6px;
  color: rgba(255,255,255,0.78);
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: Arial, Helvetica, sans-serif;
}

.webamp-fallback {
  padding: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  font-family: Arial, sans-serif;
}

.gallery-panel {
  margin-top: 20px;
  padding: 8px;
  border: 1px solid rgba(241,165,244,0.24);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 16%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.015) 18%, rgba(0,0,0,0) 34%),
    linear-gradient(180deg, #141414 0%, #050505 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 5px 10px rgba(0,0,0,0.14);
}

.updates-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.update-item {
  padding: 7px 8px;
  border: 1px solid rgba(116, 204, 118, 0.34);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 18%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(83, 83, 83, 0.34) 0%, rgba(29, 29, 29, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 5px 10px rgba(0,0,0,0.14);
}

.update-date {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  text-decoration: underline;
  
}

.update-text {
  color: rgba(255,255,255,0.84);
  font-size: 12px;
  line-height: 1.4;
  font-style: italic;
  font-family: Arial, sans-serif;
}

.player-screen {
  padding: 10px 8px 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.lcd-title-wrap {
  margin-bottom: 5px;
  padding: 4px 6px;
  overflow: hidden;
  border: 1px solid #173219;
  border-radius: 2px;
  background: #091509;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.8);
}

.lcd-title-track {
  white-space: nowrap;
  display: inline-block;
}

.lcd-title-track.scrolling {
  animation: lcdScroll 10s linear infinite;
}

@keyframes lcdScroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

#lcdText {
  font-family: 'Digital7';
  font-size: 15px;
  color: #00dd44;
  text-shadow: 0 0 6px rgba(0,220,68,0.8);
  letter-spacing: 0.05em;
  font-style: normal;
}

.player-progress {
  position: relative;
  height: 6px;
  margin: 9px 2px 5px;
  cursor: pointer;
  background: #0d0d10;
  border-radius: 3px;
  border-top: 1px solid rgba(0,0,0,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.player-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #bf57c5, #e784e8);
  border-radius: 3px;
  transition: width 0.25s linear;
}

.player-progress-dot {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 11px;
  height: 11px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0,0,0,0.4);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #d0a0d4 50%, #9050a0 100%);
  box-shadow: 0 1px 3px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.5);
  transition: left 0.25s linear;
}

.player-time-row {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
  font-size: 11px;
  color: rgba(255,255,255,0.34);
  font-family: 'Courier New', monospace;
}

.player-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 5px 7px 6px;
  background: #0d0d10;
}

.eq-window {
  flex-shrink: 0;
  padding: 3px 4px;
  border: 1px solid #173219;
  border-radius: 2px;
  background: #091509;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.7);
}

#eqCanvas {
  display: block;
}

.player-controls {
  display: flex;
  justify-content: center;
  padding: 0;
}

.player-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #3a3a3e 0%, #252528 50%, #17171b 100%);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(0,0,0,0.6);
  border-left: 1px solid rgba(255,255,255,0.1);
  color: #e784e8;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
}

.player-btn:active {
  transform: scale(0.95);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.vol-icon {
  font-size: 11px;
  font-style: normal;
}

.vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 66px;
  height: 4px;
  cursor: pointer;
  outline: none;
  background: #1a3a1a;
  border-radius: 2px;
  border: 1px solid #0a2a0a;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.6);
}

.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  cursor: pointer;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #d0a0d4 50%, #9050a0 100%);
  border: 1px solid rgba(0,0,0,0.4);
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.vol-slider::-moz-range-thumb {
  width: 11px;
  height: 11px;
  cursor: pointer;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #d0a0d4 50%, #9050a0 100%);
  border: 1px solid rgba(0,0,0,0.4);
}

.divider {
  border: none;
  border-top: 2px dashed rgba(241,165,244,0.2);
  margin: 1px 0;
}

.section-banner {
  display: inline-block;
  margin: 0 auto;
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, #b9ffb5 0%, #74d66d 36%, #358d35 70%, #0d220e 100%);
  box-shadow:
    inset 0 -1px 0 rgba(10, 56, 14, 0.55),
    0 5px 12px rgba(0,0,0,0.16);
}

.gallery-panel .section-banner {
  margin-bottom: 1px;
}

.section-banner-text {
  font-size: 15px;
  font-weight: 900;
  color: #ffffff;
  text-shadow:
    0 -1px 0 rgba(15, 73, 18, 0.88),
    0 1px 0 rgba(255,255,255,0.14),
    0 0 2px rgba(0,0,0,0.16);
}

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

.gallery-grid-compact {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-cell {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(241,165,244,0.22);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.01) 16%, rgba(0,0,0,0) 30%),
    linear-gradient(180deg, #131313 0%, #050505 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 5px 10px rgba(0,0,0,0.14);
}

.gallery-cell:hover {
  border-color: #e784e8;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-box {
  padding: 9px 10px;
  border: 1px solid rgba(241,165,244,0.26);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 16%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.015) 18%, rgba(0,0,0,0) 34%),
    linear-gradient(180deg, #141414 0%, #050505 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 6px 12px rgba(0,0,0,0.16);
  line-height: 1.48;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

.about-heading {
  text-align: center;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.about-box strong,
.about-box b {
  color: #ef97ef;
}

.about-heading .flash-word {
  color: #ef97ef;
  font-weight: 800;
}

.about-meta {
  margin-top: 5px;
  font-size: 10px;
  color: rgba(255,255,255,0.34);
  font-style: italic;
}

.page-stack {
  width: 806px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-panel {
  border: 1px solid rgba(241,165,244,0.26);
  border-radius: 4px;
  overflow: hidden;
  outline: 1px solid rgba(0,0,0,0.68);
  outline-offset: -2px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.01) 16%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.015) 18%, rgba(0,0,0,0) 34%),
    linear-gradient(180deg, #141414 0%, #050505 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 14px rgba(0,0,0,0.18);
}

.feature-panel-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 2px 8px 4px;
  background: linear-gradient(180deg, #f09ae7 0%, #d85ac5 36%, #9f247f 70%, #4b083b 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transform: translateY(-1px);
  text-shadow:
    0 -1px 0 rgba(86, 10, 69, 0.88),
    0 1px 0 rgba(255,255,255,0.14),
    0 0 2px rgba(0,0,0,0.16);
  font-family: Arial, Helvetica, sans-serif;
  box-shadow:
    inset 0 -1px 0 rgba(48, 4, 36, 0.55);
}

.feature-panel-body {
  padding: 10px;
}

.video-embed-shell {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(241,165,244,0.28);
  background: #080808;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 6px 12px rgba(0,0,0,0.16);
}

.video-embed-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.coming-soon-box {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, #2f2f33 0%, #222225 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -10px 18px rgba(0,0,0,0.2);
}

.coming-soon-mark {
  color: #ff5fe8;
  font-size: 112px;
  font-weight: 900;
  line-height: 1;
  text-shadow:
    0 0 18px rgba(255,95,232,0.22),
    0 2px 0 rgba(66,0,54,0.35);
  font-family: Arial, Helvetica, sans-serif;
}

.videos-page .page-stack {
  width: 600px;
  gap: 10px;
}

.videos-page .feature-panel {
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding-top: 0;
}

.videos-page .feature-panel-title {
  width: fit-content;
  min-width: 0;
  margin: 0 auto 8px;
  min-height: 34px;
  padding: 3px 18px 5px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    0 5px 12px rgba(0,0,0,0.16);
  font-size: 16px;
}

.videos-page .feature-panel-body {
  padding: 8px;
  border: 1px solid rgba(241,165,244,0.26);
  border-radius: 4px;
  outline: 1px solid rgba(0,0,0,0.68);
  outline-offset: -2px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.01) 16%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.015) 18%, rgba(0,0,0,0) 34%),
    linear-gradient(180deg, #141414 0%, #050505 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 14px rgba(0,0,0,0.18);
}

.videos-page .coming-soon-box {
  min-height: 180px;
}

.videos-page .coming-soon-mark {
  font-size: 84px;
}

.snippets-page {
  overflow-x: hidden;
  background: #0a0b0d;
  --snippet-aura-opacity: 0;
}

.snippets-page::before {
  content: none;
}

.snippets-page::after {
  content: none;
}

.snippets-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.snippets-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: var(--snippet-aura-opacity);
  filter: saturate(1.08) blur(24px);
  transition: opacity 55ms ease-out;
}

.snippets-aura::before,
.snippets-aura::after {
  content: "";
  position: absolute;
  inset: 0;
}

.snippets-aura::before {
  background:
    radial-gradient(circle at 14% 18%,
      rgba(255, 74, 196, 0.78) 0%,
      rgba(255, 74, 196, 0.26) 24%,
      rgba(0,0,0,0) 60%
    ),
    radial-gradient(circle at 84% 16%,
      rgba(113, 116, 255, 0.72) 0%,
      rgba(113, 116, 255, 0.24) 22%,
      rgba(0,0,0,0) 58%
    ),
    radial-gradient(circle at 20% 84%,
      rgba(255, 170, 78, 0.68) 0%,
      rgba(255, 170, 78, 0.22) 20%,
      rgba(0,0,0,0) 56%
    ),
    radial-gradient(circle at 82% 82%,
      rgba(54, 230, 187, 0.68) 0%,
      rgba(54, 230, 187, 0.24) 22%,
      rgba(0,0,0,0) 58%
    ),
    radial-gradient(circle at 52% 28%,
      rgba(186, 88, 255, 0.52) 0%,
      rgba(186, 88, 255, 0.16) 20%,
      rgba(0,0,0,0) 48%
    ),
    radial-gradient(circle at 46% 74%,
      rgba(71, 205, 255, 0.44) 0%,
      rgba(71, 205, 255, 0.14) 18%,
      rgba(0,0,0,0) 46%
    );
  transform: none;
  opacity: 0.94;
  animation: snippetsCloudDriftA 18s ease-in-out infinite alternate;
}

.snippets-aura::after {
  background:
    radial-gradient(circle at 50% 14%,
      rgba(255, 132, 86, 0.2) 0%,
      rgba(255, 132, 86, 0.06) 18%,
      rgba(0,0,0,0) 42%
    ),
    radial-gradient(circle at 50% 86%,
      rgba(78, 234, 255, 0.18) 0%,
      rgba(78, 234, 255, 0.05) 16%,
      rgba(0,0,0,0) 40%
    ),
    radial-gradient(circle at 10% 48%,
      rgba(255, 98, 214, 0.16) 0%,
      rgba(255, 98, 214, 0.05) 14%,
      rgba(0,0,0,0) 38%
    ),
    radial-gradient(circle at 90% 50%,
      rgba(118, 112, 255, 0.18) 0%,
      rgba(118, 112, 255, 0.05) 14%,
      rgba(0,0,0,0) 38%
    );
  mix-blend-mode: screen;
  opacity: 0.82;
  transform: none;
  animation: snippetsCloudDriftB 24s ease-in-out infinite alternate;
}

@keyframes snippetsCloudDriftA {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 1.5%, 0) scale(1.04);
  }
}

@keyframes snippetsCloudDriftB {
  0% {
    transform: translate3d(1.5%, -2%, 0) scale(1.02);
  }
  100% {
    transform: translate3d(-1.5%, 2%, 0) scale(0.98);
  }
}

.snippets-hub {
  position: relative;
  z-index: 1;
}

.snippets-hub {
  width: min(100%, 760px);
  padding: 20px 18px;
}

.snippets-warning {
  margin: 0 auto 14px;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  transition: opacity 140ms ease;
}

.snippets-warning.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.snippets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  justify-items: center;
}

.snippet-card {
  width: min(100%, 420px);
  padding: 10px 12px;
  border: 1px solid rgba(241,165,244,0.16);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 18%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(35, 40, 44, 0.26) 0%, rgba(13, 14, 17, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 12px 24px rgba(0,0,0,0.22);
}

.snippet-label {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.82);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 0 0 8px rgba(255,255,255,0.05);
}

.snippet-player {
  display: block;
  width: 100%;
  height: 34px;
  color-scheme: dark;
  accent-color: #d85ac5;
  filter: saturate(0.72) brightness(0.74) contrast(1.14);
  opacity: 0.94;
}

.site-footer {
  margin-top: 5px;
  padding: 8px 0 4px;
  border-top: 2px dashed rgba(241,165,244,0.18);
  text-align: left;
  color: rgba(255,255,255,0.24);
  font-size: 11px;
  font-family: Arial, sans-serif;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0,0,0,0.86);
  z-index: 999;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 70%;
  max-height: 82vh;
  border: 2px solid #e784e8;
  box-shadow: 0 0 40px rgba(231,132,232,0.3);
}

@media (max-width: 768px) {
  .center-column {
    margin: 10px auto 8px;
    padding: 4px 4px 8px;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: center;
    gap: 4px;
    margin-bottom: 2px;
    align-items: start;
  }

  .header-meta {
    width: 100%;
    align-items: center;
    justify-self: stretch;
    padding-top: 0;
  }

  .release-pill {
    font-size: 16px;
    min-height: 31px;
    padding: 2px 10px 4px;
  }

  .countdown {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 4px;
  }

  .countdown-unit {
    min-width: 0;
  }

  .top-menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0 8px;
    padding: 6px;
  }

  .columns {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .sidebar,
  .main-content,
  .main-stage,
  .main-stage-primary,
  .content-split {
    display: contents;
  }

  .sidebar > .widget:first-child,
  .widget-presave,
  .video-frame,
  .updates-panel,
  .main-stage-artists,
  .chat-embed,
  .widget-map {
    width: 100%;
  }

  .sidebar > .widget:first-child {
    order: 1;
  }

  .sidebar > .widget.widget-visitor:first-child {
    width: fit-content;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .sidebar > .widget.widget-visitor:first-child .widget-body {
    width: max-content;
    margin: 0;
    align-items: center;
    justify-content: center;
  }

  .video-frame {
    order: 3;
  }

  .updates-panel {
    order: 4;
  }

  .main-stage-artists {
    order: 5;
  }

  .widget-presave {
    order: 2;
  }

  .chat-embed {
    order: 6;
  }

  .widget-map {
    order: 7;
  }

  .site-logo {
    width: min(84vw, 350px) !important;
    max-width: 100%;
    margin: 10px 0 12px;
  }

  .widget-links,
  .audio-column {
    display: none;
  }

  .content-split {
    gap: 8px;
    justify-content: stretch;
  }

  .main-stage {
    gap: 8px;
    width: 100%;
  }

  .main-stage-artists {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    border: none;
    outline: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .main-stage-artists .widget-title {
    width: fit-content;
    min-width: 0;
    margin: 0 auto 8px;
    padding: 2px 14px 4px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.28),
      0 5px 12px rgba(0,0,0,0.16);
  }

  .main-stage-artists .widget-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 4px;
    padding: 8px;
    border: 1px solid rgba(241,165,244,0.26);
    border-radius: 4px;
    outline: 1px solid rgba(0,0,0,0.68);
    outline-offset: -2px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.01) 16%, rgba(255,255,255,0) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.015) 18%, rgba(0,0,0,0) 34%),
      linear-gradient(180deg, #141414 0%, #050505 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      0 8px 14px rgba(0,0,0,0.18);
  }

  .main-stage-artists .artist-entry {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .main-stage-artists .artist-photo-shell {
    width: 100%;
    margin: 0 0 6px;
  }

  .main-stage-artists .artist-name-widget {
    margin: 0 0 4px;
    font-size: 16px;
  }

  .main-stage-artists .artist-desc {
    margin: 0;
    font-size: 11px;
  }

  .updates-panel {
    margin-top: 0;
    margin-right: 0;
  }

  .chat-embed iframe {
    height: 240px;
  }

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

  .lightbox img {
    max-width: 92%;
    max-height: 72vh;
  }

  .page-stack {
    width: 100%;
    gap: 8px;
  }

  .videos-page .feature-panel-title {
    max-width: calc(100% - 16px);
    font-size: 14px;
  }

  .videos-page .coming-soon-box {
    min-height: 150px;
  }

  .videos-page .coming-soon-mark {
    font-size: 70px;
  }

  .snippets-shell {
    padding-top: 26px;
    padding-bottom: 18px;
  }

  .snippets-hub {
    padding: 10px 0;
  }

  .snippets-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .snippet-card {
    padding: 14px;
  }
}
