@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  color-scheme: dark;
}

body.midnight-lounge-page {
  --bg0: #0d0908;
  --bg1: #18110d;
  --bg2: #241712;
  --ink: #f3eadc;
  --muted: #bcad9b;
  --pink: #b86c44;
  --blue: #7ca8a0;
  --violet: #d5a35d;
  --lime: #8e9565;
  --gold: #dfb56f;
  --orange: #c6784a;
  --red: #a84d3d;
  --glass: rgba(32, 23, 18, 0.8);
  --glass2: rgba(50, 35, 28, 0.88);
  --line: rgba(214, 187, 144, 0.18);
  --shadow: rgba(0, 0, 0, 0.55);
  --surface: rgba(28, 21, 17, 0.88);
  --surface-2: rgba(18, 14, 12, 0.95);
  --surface-soft: rgba(38, 29, 24, 0.72);
  --surface-bright: rgba(64, 47, 38, 0.84);
  --ring: 0 0 0 3px rgba(124, 168, 160, 0.2), 0 0 0 6px rgba(223, 181, 111, 0.1);
  --glow-pink: 0 14px 40px rgba(184, 108, 68, 0.18);
  --glow-blue: 0 18px 42px rgba(124, 168, 160, 0.18);
  --glow-violet: 0 18px 40px rgba(213, 163, 93, 0.16);
  --glow-lime: 0 16px 36px rgba(142, 149, 101, 0.18);
  --glow-gold: 0 20px 48px rgba(223, 181, 111, 0.2);
  --glow-red: 0 18px 44px rgba(168, 77, 61, 0.24);
  min-height: 100vh;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 108, 68, 0.22), transparent 32%),
    radial-gradient(circle at 86% 10%, rgba(124, 168, 160, 0.18), transparent 34%),
    radial-gradient(circle at 50% 120%, rgba(223, 181, 111, 0.18), transparent 38%),
    linear-gradient(180deg, #0d0908 0%, #17110d 42%, #0c0908 100%);
  position: relative;
  isolation: isolate;
}

body.midnight-lounge-page::before,
body.midnight-lounge-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body.midnight-lounge-page::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.03), transparent 28%, transparent 74%, rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 84px,
      rgba(255, 255, 255, 0.018) 84px,
      rgba(255, 255, 255, 0.018) 85px
    );
  opacity: 0.3;
  z-index: -2;
}

body.midnight-lounge-page::after {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 243, 222, 0.04), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.24), transparent 52%);
  z-index: -1;
}

body.midnight-lounge-page *,
body.midnight-lounge-page *::before,
body.midnight-lounge-page *::after {
  box-sizing: border-box;
}

body.midnight-lounge-page h1,
body.midnight-lounge-page h2,
body.midnight-lounge-page h3,
body.midnight-lounge-page .headline-font,
body.midnight-lounge-page .teaser-text,
body.midnight-lounge-page .message-title,
body.midnight-lounge-page .dj-name,
body.midnight-lounge-page .big-status {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 600;
  letter-spacing: 0.03em;
}

body.midnight-lounge-page a {
  color: inherit;
}

body.midnight-lounge-page strong,
body.midnight-lounge-page b {
  color: inherit;
}

body.midnight-lounge-page :focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

body.midnight-lounge-page .stars,
body.midnight-lounge-page .glow-orb,
body.midnight-lounge-page .bubbles,
body.midnight-lounge-page .scanline,
body.midnight-lounge-page .noise {
  display: none !important;
}

body.midnight-lounge-page .panel,
body.midnight-lounge-page .card,
body.midnight-lounge-page .status-card,
body.midnight-lounge-page .frame,
body.midnight-lounge-page .container {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

body.midnight-lounge-page .panel::before,
body.midnight-lounge-page .card::before,
body.midnight-lounge-page .status-card::before,
body.midnight-lounge-page .frame::before,
body.midnight-lounge-page .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(223, 181, 111, 0.08), transparent 32%, transparent 68%, rgba(124, 168, 160, 0.08)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 36%);
  pointer-events: none;
}

body.midnight-lounge-page .btn,
body.midnight-lounge-page .enter-btn,
body.midnight-lounge-page .button-primary,
body.midnight-lounge-page .status-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 181, 111, 0.3);
  background: linear-gradient(135deg, rgba(42, 31, 24, 0.94), rgba(20, 15, 12, 0.96));
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

body.midnight-lounge-page .btn:hover,
body.midnight-lounge-page .enter-btn:hover,
body.midnight-lounge-page .button-primary:hover,
body.midnight-lounge-page .status-join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
  border-color: rgba(223, 181, 111, 0.48);
}

body.midnight-lounge-page .btn.neon,
body.midnight-lounge-page .enter-btn.yes,
body.midnight-lounge-page .status-join-btn,
body.midnight-lounge-page .button-primary {
  background: linear-gradient(135deg, #e0b46d, #b86c44);
  color: #150f0c;
  border-color: rgba(244, 214, 163, 0.22);
  box-shadow:
    0 18px 40px rgba(184, 108, 68, 0.25),
    0 10px 26px rgba(223, 181, 111, 0.18);
}

body.midnight-lounge-page .btn.neon:hover,
body.midnight-lounge-page .enter-btn.yes:hover,
body.midnight-lounge-page .status-join-btn:hover,
body.midnight-lounge-page .button-primary:hover {
  border-color: rgba(255, 237, 205, 0.3);
  box-shadow:
    0 24px 48px rgba(184, 108, 68, 0.32),
    0 14px 30px rgba(223, 181, 111, 0.24);
}

body.midnight-lounge-page .divider {
  height: 1px;
  width: 100%;
  margin: 1.15rem 0 1.4rem;
  background: linear-gradient(90deg, transparent, rgba(223, 181, 111, 0.5), transparent) !important;
  opacity: 1 !important;
}

body.midnight-lounge-page .tag,
body.midnight-lounge-page .pill,
body.midnight-lounge-page .zoom-pill,
body.midnight-lounge-page .badge,
body.midnight-lounge-page .chip {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(50, 36, 29, 0.7) !important;
  color: var(--ink);
  box-shadow: none !important;
}

body.midnight-lounge-page .tag,
body.midnight-lounge-page .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

body.midnight-lounge-page .tag.pink,
body.midnight-lounge-page .pill.pink {
  background: rgba(184, 108, 68, 0.14) !important;
  border-color: rgba(184, 108, 68, 0.28);
  color: #f0d2c2;
}

body.midnight-lounge-page .tag.blue,
body.midnight-lounge-page .pill.blue {
  background: rgba(124, 168, 160, 0.14) !important;
  border-color: rgba(124, 168, 160, 0.28);
  color: #d5ebe7;
}

body.midnight-lounge-page .tag.violet,
body.midnight-lounge-page .pill.violet {
  background: rgba(213, 163, 93, 0.14) !important;
  border-color: rgba(213, 163, 93, 0.3);
  color: #f4dfbd;
}

body.midnight-lounge-page .tag.gold,
body.midnight-lounge-page .pill.gold,
body.midnight-lounge-page .pill.lime,
body.midnight-lounge-page .tag.lime {
  background: rgba(223, 181, 111, 0.12) !important;
  border-color: rgba(223, 181, 111, 0.28);
  color: #f5ddb2;
}

body.midnight-lounge-page .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

body.midnight-lounge-page .li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(214, 187, 144, 0.14);
  border-radius: 1.4rem;
  background: rgba(46, 34, 28, 0.5);
}

body.midnight-lounge-page .li b {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.midnight-lounge-page .rules-list .li b {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

body.midnight-lounge-page .rules-icon {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 0.95rem;
  line-height: 1;
}

body.midnight-lounge-page .li span,
body.midnight-lounge-page .sub,
body.midnight-lounge-page .subtitle,
body.midnight-lounge-page .message-text,
body.midnight-lounge-page .contact-intro,
body.midnight-lounge-page .status-subtitle,
body.midnight-lounge-page .small,
body.midnight-lounge-page .status-time,
body.midnight-lounge-page .age-notice,
body.midnight-lounge-page .subtext {
  color: rgba(243, 234, 220, 0.72);
}

body.midnight-lounge-page .sub,
body.midnight-lounge-page .message-text,
body.midnight-lounge-page .contact-intro {
  line-height: 1.85;
}

body.midnight-lounge-page .qr-code,
body.midnight-lounge-page img[src$="qr.png"],
body.midnight-lounge-page img[src="qr.png"] {
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.04);
  padding: 0.55rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

body.midnight-lounge-page .media-error,
body.midnight-lounge-page .dj-video-placeholder {
  display: grid;
  place-items: center;
  min-height: 16rem;
  border-radius: 1.3rem;
  border: 1px dashed rgba(223, 181, 111, 0.22);
  background: rgba(26, 19, 16, 0.8);
  color: rgba(243, 234, 220, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.5rem;
}

body.midnight-lounge-page video,
body.midnight-lounge-page img {
  max-width: 100%;
}

body.midnight-lounge-page .status-banner::before,
body.midnight-lounge-page .frame::after,
body.midnight-lounge-page .message-card::before,
body.midnight-lounge-page .swag-card::before {
  display: none !important;
}

body.midnight-lounge-page .form-error {
  display: none;
  font-size: 0.78rem;
  color: #e0a18f;
  letter-spacing: 0.02em;
}

body.midnight-lounge-page input.error,
body.midnight-lounge-page textarea.error,
body.midnight-lounge-page select.error {
  border-color: rgba(224, 161, 143, 0.8) !important;
  box-shadow: 0 0 0 3px rgba(168, 77, 61, 0.18) !important;
}

body.ml-index {
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: auto !important;
}

body.ml-index .container {
  width: min(68rem, 100%);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 2rem;
  text-align: center;
}

body.ml-index .container::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(2rem - 1rem);
  border: 1px solid rgba(223, 181, 111, 0.12);
  pointer-events: none;
}

body.ml-index .mark {
  width: 5.75rem;
  height: 5.75rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(223, 181, 111, 0.35), transparent 28%),
    conic-gradient(from 180deg, rgba(124, 168, 160, 0.95), rgba(223, 181, 111, 0.95), rgba(184, 108, 68, 0.95), rgba(124, 168, 160, 0.95));
  box-shadow:
    0 1.4rem 2.8rem rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
}

body.ml-index .mark::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(223, 181, 111, 0.18), transparent 25%),
    linear-gradient(180deg, rgba(28, 21, 17, 0.86), rgba(8, 7, 7, 0.98));
  animation: none !important;
}

body.ml-index .mark::after {
  content: "";
  position: absolute;
  inset: 1.45rem;
  border-radius: 50%;
  border: 1px solid rgba(223, 181, 111, 0.2);
}

body.ml-index .teaser-text {
  font-size: clamp(4rem, 11vw, 7.75rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: none !important;
}

body.ml-index .age-notice {
  margin-top: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.ml-index .btn-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

body.ml-index .enter-btn {
  min-width: 13rem;
  padding-inline: 1.8rem;
  animation: none !important;
}

body.ml-index .enter-btn.no {
  background: rgba(24, 18, 14, 0.88) !important;
  color: var(--ink);
  border-color: rgba(188, 173, 155, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

body.ml-index .enter-btn.no:hover {
  border-color: rgba(223, 181, 111, 0.3);
}

body.ml-index .subtext {
  margin-top: 1.75rem;
  font-size: 0.76rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

body.ml-enter {
  overflow-x: hidden;
}

body.ml-enter .loading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--pink)) !important;
  box-shadow: none !important;
}

body.ml-enter .skip-link {
  background: rgba(19, 15, 12, 0.96);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
}

body.ml-enter .back-to-top,
body.ml-enter .share-btn {
  position: fixed;
  right: 1.2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(23, 18, 14, 0.82) !important;
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

body.ml-enter .back-to-top {
  bottom: 1.4rem;
}

body.ml-enter .share-btn {
  bottom: 5.2rem;
}

body.ml-enter .back-to-top.visible {
  transform: translateY(0);
}

body.ml-enter .status-banner {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(111, 255, 122, 0.28);
  background: linear-gradient(90deg, rgba(7, 16, 10, 0.97), rgba(16, 38, 21, 0.94), rgba(7, 16, 10, 0.97)) !important;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

body.ml-enter .status-content {
  max-width: 98rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

body.ml-enter .status-indicator,
body.ml-enter .status-time {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(243, 234, 220, 0.88);
  -webkit-text-fill-color: rgba(243, 234, 220, 0.88) !important;
  text-shadow: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

body.ml-enter .status-indicator {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 0.7rem;
}

body.ml-enter .status-time {
  justify-self: end;
  text-align: right;
}

body.ml-enter .status-join-btn {
  justify-self: end;
  width: max-content;
}

body.ml-enter .status-dot,
body.ml-enter .status-light,
body.ml-closed .status-light,
body.ml-closed .badge-dot {
  background: #6cff72 !important;
  box-shadow: 0 0 12px rgba(108, 255, 114, 0.75), 0 0 28px rgba(108, 255, 114, 0.4) !important;
}

body.ml-enter .status-text {
  color: #92ff83 !important;
  -webkit-text-fill-color: #92ff83 !important;
  background: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

body.ml-enter .status-banner[data-room-state="open"] {
  background: linear-gradient(90deg, rgba(7, 16, 10, 0.97), rgba(16, 38, 21, 0.94), rgba(7, 16, 10, 0.97)) !important;
  border-color: rgba(111, 255, 122, 0.28) !important;
}

body.ml-enter .status-banner[data-room-state="open"] .status-dot {
  background: #6cff72 !important;
  box-shadow: 0 0 12px rgba(108, 255, 114, 0.75), 0 0 28px rgba(108, 255, 114, 0.4) !important;
}

body.ml-enter .status-banner[data-room-state="open"] .status-text {
  color: #92ff83 !important;
  -webkit-text-fill-color: #92ff83 !important;
  background: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body.ml-enter .status-banner.closed,
body.ml-enter .status-banner[data-room-state="closed"],
body.ml-enter .status-card.closed,
body.ml-enter .status-card[data-room-state="closed"] {
  background: linear-gradient(180deg, rgba(44, 9, 15, 0.94), rgba(17, 8, 11, 0.98)) !important;
  border-color: rgba(255, 78, 102, 0.3) !important;
}

body.ml-enter .status-banner.closed .status-dot,
body.ml-enter .status-banner[data-room-state="closed"] .status-dot {
  background: #ff4e66 !important;
  box-shadow: 0 0 12px rgba(255, 78, 102, 0.72), 0 0 30px rgba(255, 78, 102, 0.36) !important;
}

body.ml-enter .status-banner.closed .status-text,
body.ml-enter .status-banner[data-room-state="closed"] .status-text {
  color: #ff6b81 !important;
  -webkit-text-fill-color: #ff6b81 !important;
  background: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body.ml-enter .status-banner.offline,
body.ml-enter .status-banner[data-room-state="offline"],
body.ml-enter .status-card.offline,
body.ml-enter .status-card[data-room-state="offline"] {
  background: linear-gradient(180deg, rgba(49, 31, 6, 0.95), rgba(20, 13, 7, 0.98)) !important;
  border-color: rgba(255, 211, 92, 0.34) !important;
}

body.ml-enter .status-banner.offline .status-dot,
body.ml-enter .status-banner[data-room-state="offline"] .status-dot {
  background: #ffd35c !important;
  box-shadow: 0 0 12px rgba(255, 211, 92, 0.75), 0 0 28px rgba(255, 211, 92, 0.34) !important;
}

body.ml-enter .status-banner.offline .status-text,
body.ml-enter .status-banner[data-room-state="offline"] .status-text {
  color: #ffd86a !important;
  -webkit-text-fill-color: #ffd86a !important;
  background: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body.ml-enter header {
  padding: 1.8rem 0 1rem;
}

body.ml-enter .wrap {
  width: min(98rem, calc(100% - 2rem));
  margin: 0 auto;
}

body.ml-enter .nav {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: rgba(23, 18, 14, 0.78);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

body.ml-enter .brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

body.ml-enter .brand .mark {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 32% 35%, rgba(223, 181, 111, 0.4), transparent 22%),
    linear-gradient(145deg, rgba(124, 168, 160, 0.85), rgba(184, 108, 68, 0.9));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

body.ml-enter .brand .mark::before {
  content: "";
  position: absolute;
  inset: 0.24rem;
  border-radius: 0.8rem;
  background: linear-gradient(180deg, rgba(28, 21, 17, 0.9), rgba(12, 10, 9, 0.98));
  animation: none !important;
}

body.ml-enter .brand .mark::after {
  content: "";
  position: absolute;
  inset: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 181, 111, 0.24);
}

body.ml-enter .brand b {
  display: block;
  font-size: 0.86rem;
  letter-spacing: 0.26em;
}

body.ml-enter .brand span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(243, 234, 220, 0.58);
}

body.ml-enter .links,
body.ml-enter .cta,
body.ml-enter .foot-links,
body.ml-enter .tag-row,
body.ml-enter .hero-actions,
body.ml-enter .bio-tags,
body.ml-enter .btn-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

body.ml-enter .links {
  justify-content: center;
}

body.ml-enter .cta {
  justify-content: flex-end;
}

body.ml-enter .links a,
body.ml-enter .foot-links a {
  color: rgba(243, 234, 220, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

body.ml-enter .links a:hover,
body.ml-enter .foot-links a:hover {
  color: var(--gold);
}

body.ml-enter .logo-stage {
  display: flex;
  justify-content: center;
  padding: 2rem 0 1.5rem;
}

body.ml-enter .neon-logo {
  width: min(56rem, 100%);
  padding: 0.9rem;
  border-radius: 2rem;
  border: 1px solid rgba(214, 187, 144, 0.16);
  background: linear-gradient(180deg, rgba(33, 24, 20, 0.88), rgba(14, 11, 10, 0.98));
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.ml-enter .neon-logo::before {
  content: "";
  position: absolute;
  inset: 0.95rem;
  border: 1px solid rgba(223, 181, 111, 0.12);
  border-radius: 1.35rem;
  pointer-events: none;
}

body.ml-enter .neon-logo video {
  width: 100%;
  display: block;
  border-radius: 1.35rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

body.ml-enter section {
  margin-bottom: 1.5rem;
}

body.ml-enter .hero-grid,
body.ml-enter .grid2,
body.ml-enter .grid3,
body.ml-enter .bio-grid,
body.ml-enter .dj-spotlight,
body.ml-enter .mini-grid {
  display: grid;
  gap: 1.25rem;
}

body.ml-enter .hero-grid {
  grid-template-columns: minmax(0, 1.9fr) minmax(24rem, 1fr);
}

body.ml-enter .grid2,
body.ml-enter .mini-grid,
body.ml-enter .bio-grid,
body.ml-enter .dj-spotlight {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.ml-enter .grid3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.ml-enter .panel,
body.ml-enter .card,
body.ml-enter .status-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 1.9rem;
}

body.ml-enter .hero-main,
body.ml-enter .hero-side {
  display: grid;
  gap: 1rem;
}

body.ml-enter .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 181, 111, 0.22);
  background: rgba(223, 181, 111, 0.08);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: none !important;
}

body.ml-enter .dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: none !important;
}

body.ml-enter .neon-text {
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  line-height: 0.9;
  text-shadow: none !important;
  margin: 0.25rem 0 0.4rem;
}

body.ml-enter .sub {
  max-width: 56ch;
  font-size: 1.02rem;
}

body.ml-enter .tile {
  padding: 1.15rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(214, 187, 144, 0.14);
  background: rgba(44, 33, 27, 0.56);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

body.ml-enter .tile h3 {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

body.ml-enter .tile p {
  line-height: 1.7;
  color: rgba(243, 234, 220, 0.72);
}

body.ml-enter .tile.tile-soundcloud {
  background:
    linear-gradient(180deg, rgba(47, 35, 28, 0.84), rgba(21, 16, 14, 0.94)),
    rgba(44, 33, 27, 0.56);
}

body.ml-enter .soundcloud-shell {
  margin-top: 0.8rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(214, 187, 144, 0.14);
  background: rgba(16, 13, 11, 0.92);
  padding: 0.7rem;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

body.ml-enter .soundcloud-frame {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
}

body.ml-enter .soundcloud-attribution {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 234, 220, 0.6);
}

body.ml-enter .soundcloud-attribution a {
  color: rgba(243, 234, 220, 0.82);
  text-decoration: none;
}

body.ml-enter .soundcloud-attribution a:hover {
  color: var(--gold);
}

body.ml-enter .meter {
  margin-top: 0.9rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

body.ml-enter .meter span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--pink));
}

body.ml-enter .zoom-pill {
  width: fit-content;
  padding: 0.55rem 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

body.ml-enter .status-card {
  display: flex;
  align-items: flex-end;
  min-height: 18rem;
  background: linear-gradient(160deg, rgba(10, 23, 14, 0.92), rgba(6, 11, 8, 0.98)) !important;
  border: 1px solid rgba(111, 255, 122, 0.24) !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48), 0 0 36px rgba(108, 255, 114, 0.14) !important;
}

body.ml-enter .status-card-content {
  max-width: 31rem;
  position: relative;
  z-index: 1;
}

body.ml-enter .big-status {
  margin: 0;
  font-size: clamp(4.4rem, 9vw, 7.2rem);
  line-height: 0.82;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #92ff83 !important;
  -webkit-text-fill-color: #92ff83 !important;
  background: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body.ml-enter .status-subtitle {
  font-size: 1rem;
  margin-top: 0.5rem;
}

body.ml-enter .status-card[data-room-state="open"] .big-status {
  color: #92ff83 !important;
  -webkit-text-fill-color: #92ff83 !important;
}

body.ml-enter .status-card.closed .big-status,
body.ml-enter .status-card[data-room-state="closed"] .big-status {
  color: #ff6b81 !important;
  -webkit-text-fill-color: #ff6b81 !important;
  background: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body.ml-enter .status-card.offline .big-status,
body.ml-enter .status-card[data-room-state="offline"] .big-status {
  color: #ffd86a !important;
  -webkit-text-fill-color: #ffd86a !important;
  background: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body.ml-enter .bio-photo {
  min-height: 20rem;
  border-radius: 1.6rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(223, 181, 111, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(40, 29, 24, 0.88), rgba(14, 11, 10, 0.98));
  display: grid;
  place-items: center;
  padding: 1.4rem;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 234, 220, 0.54);
}

body.ml-enter .bio-content p {
  color: rgba(243, 234, 220, 0.76);
  line-height: 1.85;
}

body.ml-enter .location {
  margin-bottom: 0.75rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(223, 181, 111, 0.84);
}

body.ml-enter .dj-card {
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  background: rgba(30, 22, 18, 0.88);
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

body.ml-enter .dj-video-wrap {
  padding: 0.9rem;
  background: rgba(12, 10, 9, 0.84);
}

body.ml-enter .dj-video-wrap video,
body.ml-enter .video-frame video {
  display: block;
  width: 100%;
  border-radius: 1.1rem;
}

body.ml-enter .dj-info {
  padding: 0 1.2rem 1.2rem;
}

body.ml-enter .dj-name {
  font-size: 2rem;
  margin: 0.2rem 0 0.35rem;
}

body.ml-enter .dj-role {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(223, 181, 111, 0.82);
}

body.ml-enter .dj-bio {
  line-height: 1.7;
  color: rgba(243, 234, 220, 0.72);
}

body.ml-enter .qr-section {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

body.ml-enter .social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

body.ml-enter .social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(44, 33, 27, 0.5);
  text-decoration: none;
}

body.ml-enter .social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  opacity: 0.84;
}

body.ml-enter #contact-form {
  gap: 0.95rem !important;
  margin-top: 1rem;
}

body.ml-enter #contact-form input,
body.ml-enter #contact-form textarea,
body.ml-enter #contact-form select {
  width: 100%;
  padding: 0.95rem 1rem !important;
  border-radius: 1rem !important;
  border: 1px solid rgba(214, 187, 144, 0.2) !important;
  background: rgba(17, 13, 11, 0.84) !important;
  color: var(--ink) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.ml-enter #contact-form input::placeholder,
body.ml-enter #contact-form textarea::placeholder {
  color: rgba(243, 234, 220, 0.42);
}

body.ml-enter footer {
  margin: 0 0 2rem;
  padding: 0.65rem 0 0.4rem;
}

body.ml-enter .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(214, 187, 144, 0.14);
}

body.ml-enter .small,
body.ml-enter .page-footer-note {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

body.ml-enter .page-footer-note {
  text-align: center;
  margin-top: 0.9rem !important;
  color: rgba(243, 234, 220, 0.46) !important;
}

body.ml-enter #status-error {
  color: #e0a18f !important;
}

body.ml-closed,
body.ml-error {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

body.ml-closed .frame,
body.ml-error .frame {
  width: min(74rem, calc(100vw - 3rem));
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: 2rem;
}

body.ml-closed .video-header {
  margin-bottom: 1.4rem;
  padding: 0.7rem;
  border-radius: 1.6rem;
  border: 1px solid var(--line);
  background: rgba(18, 14, 12, 0.78);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

body.ml-closed .video-header video {
  border-radius: 1.15rem;
  display: block;
}

body.ml-closed .badge-row,
body.ml-error .badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

body.ml-closed .badge,
body.ml-error .badge,
body.ml-closed .status-pill,
body.ml-error .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 234, 220, 0.8);
}

body.ml-closed .status-pill > span:not(.status-light),
body.ml-closed .status-pill strong,
body.ml-error .status-pill > span:not(.status-light),
body.ml-error .status-pill strong {
  background: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  color: rgba(243, 234, 220, 0.88) !important;
  -webkit-text-fill-color: rgba(243, 234, 220, 0.88) !important;
}

body.ml-closed .badge-dot,
body.ml-error .badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

body.ml-closed .status-light,
body.ml-closed .badge-dot {
  background: #ff4e66 !important;
  box-shadow: 0 0 12px rgba(255, 78, 102, 0.72), 0 0 28px rgba(255, 78, 102, 0.34) !important;
}

body.ml-error .status-light,
body.ml-error .badge-dot {
  background: #ffd35c !important;
  box-shadow: 0 0 12px rgba(255, 211, 92, 0.74), 0 0 28px rgba(255, 211, 92, 0.32) !important;
}

body.ml-closed h1,
body.ml-error h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(3rem, 8vw, 4.9rem);
  line-height: 0.9;
}

body.ml-closed .gradient-text {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: #f3eadc !important;
  -webkit-text-fill-color: #f3eadc !important;
  text-shadow: none !important;
  box-shadow: none !important;
  filter: none !important;
  display: inline-block;
}

body.ml-error .gradient-text {
  background: linear-gradient(120deg, #f5dfd7, #e0a18f, #c6784a) !important;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

body.ml-closed .subtitle,
body.ml-error .subtitle {
  max-width: 44rem;
  margin-bottom: 1.4rem;
  font-size: 0.98rem;
  line-height: 1.8;
}

body.ml-closed .message-card,
body.ml-error .message-card {
  margin-bottom: 1rem;
  padding: 1.35rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(214, 187, 144, 0.16);
  background: rgba(44, 33, 27, 0.56) !important;
  box-shadow: none !important;
}

body.ml-closed .message-title,
body.ml-error .message-title {
  margin-bottom: 0.65rem;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  text-transform: none;
  text-align: left;
}

body.ml-closed .message-card:first-of-type {
  text-align: center;
}

body.ml-closed .message-card:first-of-type .icon-large {
  display: flex;
  justify-content: center;
}

body.ml-closed .message-card:first-of-type .message-title {
  text-align: center;
  width: 100%;
}

body.ml-closed .message-text a,
body.ml-error .message-text a,
body.ml-enter .message-text a {
  color: var(--gold);
  text-decoration-color: rgba(223, 181, 111, 0.45);
}

body.ml-closed .icon-large,
body.ml-error .icon-large {
  margin-bottom: 1rem;
}

body.ml-closed .icon-large img {
  border-radius: 1.2rem;
  border: 1px solid rgba(214, 187, 144, 0.18);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

body.ml-closed .btn-row,
body.ml-error .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

body.ml-closed nav.btn-row,
body.ml-error nav.btn-row {
  margin-top: 1.2rem;
}

body.ml-closed .button-primary,
body.ml-error .button-primary {
  min-height: 3rem;
}

body.ml-closed .swag-card {
  border-color: rgba(223, 181, 111, 0.28) !important;
  background: linear-gradient(180deg, rgba(58, 42, 30, 0.72), rgba(18, 14, 12, 0.96)) !important;
}

body.ml-closed .swag-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 181, 111, 0.28);
  background: rgba(223, 181, 111, 0.1);
  color: #f5ddb2;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

body.ml-closed .swag-title {
  color: #f7e0b8;
  text-shadow: none !important;
}

body.ml-closed .footer,
body.ml-error .footer {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(214, 187, 144, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body.ml-closed .footer {
  justify-content: center;
  min-height: 3.2rem;
}

body.ml-closed .grid-tag,
body.ml-error .grid-tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 234, 220, 0.52);
}

body.ml-closed .grid-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 187, 144, 0.16);
  background: rgba(44, 33, 27, 0.58);
  color: rgba(243, 234, 220, 0.82);
  font-size: 0.84rem;
}

body.ml-error .frame {
  border-color: rgba(168, 77, 61, 0.34);
  background: linear-gradient(180deg, rgba(40, 21, 18, 0.94), rgba(16, 11, 10, 0.98)) !important;
}

body.ml-error .badge,
body.ml-error .status-pill,
body.ml-error .message-card {
  border-color: rgba(168, 77, 61, 0.3);
}

body.ml-error .status-light,
body.ml-error .badge-dot {
  background: #ffd35c !important;
  box-shadow: 0 0 12px rgba(255, 211, 92, 0.74), 0 0 28px rgba(255, 211, 92, 0.32) !important;
}

body.ml-error .button-primary {
  background: linear-gradient(135deg, #d9917d, #8f4b3e);
  color: #170f0d;
}

body.ml-error .message-text strong {
  color: #f1c09f;
}

body.ml-error .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

body.ml-error .chip {
  padding: 0.4rem 0.75rem;
}

body.ml-error .chip a {
  text-decoration: none;
  color: rgba(243, 234, 220, 0.72);
}

@media (max-width: 64rem) {
  body.ml-enter .hero-grid,
  body.ml-enter .grid2,
  body.ml-enter .grid3,
  body.ml-enter .bio-grid,
  body.ml-enter .dj-spotlight,
  body.ml-enter .mini-grid {
    grid-template-columns: 1fr;
  }

  body.ml-enter .nav {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  body.ml-enter .links,
  body.ml-enter .cta {
    justify-content: flex-start;
  }

  body.ml-enter .status-content {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 48rem) {
  body.ml-enter .wrap {
    width: min(98rem, calc(100% - 1rem));
  }

  body.ml-enter .social-grid {
    grid-template-columns: 1fr;
  }

  body.ml-enter #contact-form {
    grid-template-columns: 1fr !important;
  }

  body.ml-enter .foot,
  body.ml-closed .footer,
  body.ml-error .footer,
  body.ml-closed .badge-row,
  body.ml-error .badge-row {
    flex-direction: column;
    align-items: flex-start;
  }

  body.ml-index .container {
    padding: 1.7rem 1.25rem;
  }

  body.ml-index .enter-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.midnight-lounge-page *,
  body.midnight-lounge-page *::before,
  body.midnight-lounge-page *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
