@font-face{font-family:"Anton";font-style:normal;font-weight:400;font-display:swap;src:url("fonts/anton-latin-400-normal.woff2") format("woff2")}
@font-face{font-family:"Barlow Condensed";font-style:normal;font-weight:400;font-display:swap;src:url("fonts/barlow-condensed-latin-400-normal.woff2") format("woff2")}
@font-face{font-family:"Barlow Condensed";font-style:normal;font-weight:500;font-display:swap;src:url("fonts/barlow-condensed-latin-500-normal.woff2") format("woff2")}
@font-face{font-family:"Barlow Condensed";font-style:normal;font-weight:600;font-display:swap;src:url("fonts/barlow-condensed-latin-600-normal.woff2") format("woff2")}
@font-face{font-family:"Barlow Condensed";font-style:normal;font-weight:700;font-display:swap;src:url("fonts/barlow-condensed-latin-700-normal.woff2") format("woff2")}
@font-face{font-family:"Barlow Condensed";font-style:normal;font-weight:800;font-display:swap;src:url("fonts/barlow-condensed-latin-800-normal.woff2") format("woff2")}

:root {
  --black: #020202;
  --panel: #090a0c;
  --panel-2: #101114;
  --red: #ff0712;
  --white: #f5f5f5;
  --muted: #8d8d92;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 7, 18, 0.09), transparent 31rem),
    #000;
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}

button,
input {
  font: inherit;
}

button,
a,
label {
  -webkit-tap-highlight-color: transparent;
}

.directory-page {
  min-height: 100svh;
  background: #000;
}

.directory-shell {
  position: relative;
  width: min(100%, 430px);
  min-height: 100svh;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 60px rgba(255, 0, 15, 0.08);
}

.masthead {
  position: relative;
  width: 100%;
  aspect-ratio: 728 / 151;
  overflow: hidden;
  border-bottom: 1px solid #171719;
  background: #000;
}

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

.menu-hitbox {
  position: absolute;
  top: 19%;
  right: 2.2%;
  width: 14%;
  height: 63%;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  background: transparent;
}

.menu-hitbox:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -5px;
}

.directory-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  padding: 0 10px;
  border-bottom: 1px solid #1f2022;
  background: linear-gradient(180deg, #060607, #020203);
}

.directory-heading h1,
.directory-heading p {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(11px, 3.4vw, 15px);
  line-height: 1;
  text-transform: uppercase;
}

.directory-heading h1 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.directory-heading h1 span {
  width: 3px;
  height: 15px;
  border-radius: 1px;
  background: var(--red);
  box-shadow: 0 0 8px rgba(255, 7, 18, 0.6);
}

.directory-heading p {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #858589;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.directory-heading p i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(255, 7, 18, 0.82);
}

.artist-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 8px 14px;
}

.artist-card {
  position: relative;
  display: grid;
  grid-template-columns: 25.4% minmax(0, 1fr) 49px;
  width: 100%;
  aspect-ratio: 4.86 / 1;
  min-height: 69px;
  max-height: 85px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #202124;
  border-radius: 8px;
  background:
    linear-gradient(93deg, rgba(20, 21, 24, 0.92), rgba(4, 5, 6, 0.97) 70%),
    #08090a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
  isolation: isolate;
}

.artist-card:hover {
  border-color: #3b3c3f;
}

.artist-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 1px;
}

.artist-card.is-selected {
  z-index: 1;
  border: 1.5px solid var(--red);
  box-shadow:
    0 0 8px rgba(255, 7, 18, 0.95),
    0 0 22px rgba(255, 7, 18, 0.25),
    inset 0 0 18px rgba(255, 7, 18, 0.05);
}

.artist-card-watermark {
  position: absolute;
  inset: 0 10% 0 27%;
  z-index: -1;
  opacity: 0;
  background: url("/assets/masthead.webp") 64% 45% / 108% auto no-repeat;
  filter: saturate(1.2) brightness(0.35);
  transition: opacity 150ms ease;
}

.artist-card.is-selected .artist-card-watermark {
  opacity: 0.18;
}

.artist-avatar {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  background: #111;
}

.artist-avatar::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent 70%, rgba(4, 5, 6, 0.22));
}

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

.artist-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 8px 3px 5px 9px;
}

.artist-copy h2 {
  overflow: hidden;
  margin: 0;
  color: #f7f7f7;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(17px, 5.1vw, 22px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.012em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.artist-copy > p {
  overflow: hidden;
  margin: 3px 0 0;
  color: #c0c0c3;
  font-size: clamp(11.5px, 3.65vw, 15.5px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-meta {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  height: 16px;
  margin-top: auto;
}

.track-meta time {
  flex: 0 0 26px;
  color: #a5a5aa;
  font-size: clamp(10px, 2.8vw, 12px);
  font-weight: 500;
  line-height: 1;
}

.waveform {
  display: flex;
  min-width: 0;
  height: 14px;
  flex: 1;
  align-items: center;
  gap: 1px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.waveform.is-interactive {
  cursor: crosshair;
}

.waveform:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.waveform i {
  display: block;
  width: 1px;
  min-width: 1px;
  max-height: 100%;
  flex: 1 1 1px;
  border-radius: 1px;
  background: #68686c;
  opacity: 0.9;
}

.waveform i.is-progress {
  background: var(--red);
  box-shadow: 0 0 3px rgba(255, 7, 18, 0.65);
}

.play-cell {
  display: grid;
  place-items: center;
}

.play-button {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  cursor: pointer;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  background: rgba(2, 2, 3, 0.55);
  box-shadow: 0 0 8px rgba(255, 7, 18, 0.14);
  transition: background 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.play-button:hover,
.play-button:focus-visible,
.play-button.is-playing {
  background: rgba(255, 7, 18, 0.15);
  box-shadow: 0 0 14px rgba(255, 7, 18, 0.38);
  outline: none;
}

.play-button:active {
  transform: scale(0.94);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.55));
}

.play-button.is-playing span {
  width: 10px;
  height: 13px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, #fff 0 36%, transparent 36% 64%, #fff 64% 100%);
}

.menu-scrim {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.menu-panel {
  position: relative;
  display: flex;
  width: min(78vw, 320px);
  height: 100%;
  flex-direction: column;
  gap: 8px;
  padding: 72px 28px;
  border-left: 1px solid rgba(255, 7, 18, 0.4);
  background:
    radial-gradient(circle at 90% 0, rgba(255, 7, 18, 0.17), transparent 18rem),
    #08090a;
  box-shadow: -15px 0 50px rgba(255, 0, 13, 0.12);
}

.menu-panel > button {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1px solid #333;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.menu-panel p {
  margin: 0 0 18px;
  color: var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.menu-panel a {
  padding: 14px 0;
  border-bottom: 1px solid #262629;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-panel a:hover {
  color: var(--red);
}

.site-notice {
  position: fixed;
  z-index: 40;
  right: 50%;
  bottom: 18px;
  width: min(calc(100% - 32px), 390px);
  padding: 11px 14px;
  border: 1px solid rgba(255, 7, 18, 0.55);
  border-radius: 7px;
  background: rgba(9, 10, 12, 0.96);
  box-shadow: 0 0 24px rgba(255, 7, 18, 0.23);
  color: #eee;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-notice.is-visible {
  opacity: 1;
  transform: translate(50%, 0);
}

/* Persistent player */
.site-stage {
  min-height: 100svh;
}

.player-active .artist-list,
.player-active .profile-shell {
  padding-bottom: 98px;
}

.mini-player {
  position: fixed;
  z-index: 80;
  right: 50%;
  bottom: max(8px, env(safe-area-inset-bottom));
  width: min(calc(100% - 16px), 414px);
  transform: translateX(50%);
}

.mini-player-rail {
  display: grid;
  grid-template-areas:
    "track controls close"
    "wave time time";
  grid-template-columns: minmax(0, 1fr) auto 24px;
  gap: 4px 10px;
  align-items: center;
  min-height: 78px;
  padding: 7px 8px 7px 7px;
  border: 1px solid rgba(255, 7, 18, 0.8);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 7, 18, 0.09), transparent 42%),
    rgba(7, 8, 10, 0.96);
  box-shadow:
    0 0 20px rgba(255, 7, 18, 0.28),
    0 14px 45px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.mini-player-track {
  display: flex;
  min-width: 0;
  grid-area: track;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}

.mini-player-track img {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border: 1px solid #333;
  border-radius: 6px;
  object-fit: cover;
}

.mini-player-track > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mini-player-track small {
  color: var(--red);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.mini-player-track strong,
.mini-player-track em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-player-track strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.mini-player-track em {
  color: #a9a9ad;
  font-size: 11px;
  font-style: normal;
  line-height: 1.1;
}

.mini-player-waveform {
  grid-area: wave;
  height: 9px;
  margin-left: 51px;
}

.mini-player-rail > time {
  grid-area: time;
  justify-self: end;
  color: #74747a;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.mini-player-controls {
  display: flex;
  grid-area: controls;
  align-items: center;
  gap: 3px;
}

.mini-player-controls button,
.mini-player-close {
  display: grid;
  cursor: pointer;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
}

.mini-player-controls > button:not(.mini-player-main-button) {
  width: 25px;
  height: 32px;
  color: #aaa;
  font-size: 29px;
  font-family: Arial, sans-serif;
  font-weight: 200;
}

.mini-player-controls .mini-player-main-button {
  width: 37px;
  height: 37px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  background: rgba(255, 7, 18, 0.13);
  box-shadow: 0 0 12px rgba(255, 7, 18, 0.24);
}

.play-symbol {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
}

.pause-symbol {
  width: 9px;
  height: 13px;
  background: linear-gradient(90deg, #fff 0 35%, transparent 35% 65%, #fff 65% 100%);
}

.mini-player-close {
  width: 24px;
  height: 24px;
  grid-area: close;
  align-self: start;
  color: #777;
  font-size: 19px;
}

/* Artist profile */
.profile-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 5%, rgba(255, 7, 18, 0.12), transparent 25rem),
    #000;
}

.profile-shell {
  width: min(100%, 430px);
  min-height: 100svh;
  margin: 0 auto;
  overflow: hidden;
  background: #030304;
  box-shadow: 0 0 70px rgba(255, 7, 18, 0.1);
}

.profile-masthead {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 8px 7px;
  border-bottom: 1px solid #1d1e21;
  background: #030304;
}

.profile-masthead > a {
  display: block;
  width: 185px;
}

.profile-masthead img {
  display: block;
  width: 100%;
  height: 52px;
  object-fit: cover;
  object-position: left center;
}

.profile-masthead > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.profile-masthead > div a,
.profile-masthead > div button {
  padding: 7px 8px;
  border: 1px solid #313237;
  border-radius: 4px;
  background: #090a0c;
  color: #c9c9cc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.profile-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 7, 18, 0.36);
  isolation: isolate;
}

.profile-ambient {
  position: absolute;
  z-index: -3;
  inset: -30px;
  background-position: center 15%;
  background-size: cover;
  filter: blur(18px) saturate(0.65) brightness(0.28);
  transform: scale(1.12);
}

.profile-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), #030304 95%),
    radial-gradient(circle at 78% 30%, rgba(255, 7, 18, 0.28), transparent 17rem);
}

.profile-scanline {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(255, 255, 255, 0.07) 4px);
  mix-blend-mode: screen;
}

.profile-location {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  left: 13px;
  display: flex;
  justify-content: space-between;
  color: #c7c7ca;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.profile-location span:first-child {
  color: var(--red);
}

.profile-portrait-wrap {
  position: absolute;
  z-index: -1;
  top: 38px;
  right: 18px;
  left: 18px;
  height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 3px 3px 28px 3px;
  box-shadow: 0 0 34px rgba(0, 0, 0, 0.72);
}

.profile-portrait-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 48%, #030304 100%),
    linear-gradient(90deg, rgba(255, 7, 18, 0.12), transparent 45%);
}

.profile-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-portrait-wrap i {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}

.profile-identity {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 20px;
  left: 15px;
}

.profile-identity > p {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.profile-identity h1 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #fff;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(47px, 15vw, 67px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-shadow: 0 3px 0 #000, 0 0 24px rgba(255, 7, 18, 0.2);
}

.profile-identity h1 span {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-shadow: none;
}

.profile-identity h2 {
  margin: 8px 0 10px;
  color: #c5c5c8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.profile-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.profile-genres span {
  padding: 4px 7px;
  border: 1px solid #3b3c40;
  border-radius: 2px;
  background: rgba(4, 5, 6, 0.72);
  color: #eee;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.featured-release {
  position: relative;
  margin: 9px 9px 0;
  padding: 14px;
  border: 1px solid rgba(255, 7, 18, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(255, 7, 18, 0.1), transparent 45%),
    #090a0c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 22px rgba(255, 7, 18, 0.09);
}

.release-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.release-heading time {
  color: #85858a;
  letter-spacing: 0.06em;
}

.release-track {
  display: flex;
  align-items: center;
  gap: 11px;
}

.profile-play-button {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  cursor: pointer;
  place-items: center;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  background: rgba(255, 7, 18, 0.12);
  box-shadow: 0 0 16px rgba(255, 7, 18, 0.25);
}

.profile-play-button span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}

.profile-play-button.is-playing span {
  width: 12px;
  height: 16px;
  margin: 0;
  border: 0;
  background: linear-gradient(90deg, #fff 0 36%, transparent 36% 64%, #fff 64% 100%);
}

.release-track > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.release-track strong {
  overflow: hidden;
  font-family: "Anton", Impact, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-track small {
  color: #96969b;
  font-size: 13px;
}

.profile-waveform {
  width: 100%;
  height: 30px;
  margin-top: 12px;
  gap: 2px;
}

.profile-waveform i {
  min-width: 2px;
}

.profile-content-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 7px;
  padding: 9px 9px 0;
}

.profile-module {
  padding: 14px;
  border: 1px solid #242529;
  border-radius: 7px;
  background: linear-gradient(145deg, #0e0f12, #07080a 78%);
}

.module-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
}

.module-heading span {
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.module-heading h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.module-heading i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, #38393d, transparent);
}

.profile-story p {
  margin: 0;
  color: #b5b5ba;
  font-size: 14px;
  line-height: 1.45;
}

.profile-facts dl,
.profile-facts dd {
  margin: 0;
}

.profile-facts dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-facts div {
  padding-bottom: 8px;
  border-bottom: 1px solid #26272b;
}

.profile-facts dt {
  color: #737378;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-facts dd {
  color: #eee;
  font-size: 13px;
  font-weight: 600;
}

.profile-links,
.profile-actions,
.related-artists {
  margin: 7px 9px 0;
}

.profile-links > div,
.profile-actions > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.profile-links a,
.profile-actions a {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border: 1px solid #2c2d31;
  border-radius: 4px;
  background: #08090b;
  color: #eee;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.profile-links a i,
.profile-actions a i {
  color: var(--red);
  font-style: normal;
}

.booking-module {
  margin: 7px 9px 0;
  padding: 22px 17px;
  border: 1px solid rgba(255, 7, 18, 0.65);
  border-radius: 7px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 7, 18, 0.24), transparent 13rem),
    #090a0c;
}

.booking-module > span {
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.booking-module h2 {
  margin: 6px 0 14px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.05;
}

.booking-module a {
  display: inline-flex;
  padding: 9px 11px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.related-artists {
  padding: 14px;
  border: 1px solid #242529;
  border-radius: 7px;
  background: #08090b;
}

.related-artists > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.related-artists a {
  display: grid;
  min-width: 0;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 5px;
  border: 1px solid #292a2e;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
}

.related-artists img {
  width: 44px;
  height: 44px;
  border-radius: 3px;
  object-fit: cover;
}

.related-artists a span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.related-artists strong,
.related-artists small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-artists strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.related-artists small {
  color: #77777c;
  font-size: 10px;
}

.related-artists a i {
  color: var(--red);
  font-style: normal;
}

.profile-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  padding: 20px 10px;
  border-top: 1px solid #1f2023;
  color: #5e5e63;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

/* Management screen */
.admin-page {
  width: min(100% - 28px, 1180px);
  margin: 0 auto;
  padding: 28px 0 70px;
}

.admin-topbar,
.admin-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.admin-topbar {
  padding-bottom: 22px;
  border-bottom: 1px solid #242428;
}

.admin-topbar p,
.admin-eyebrow {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.admin-topbar h1,
.admin-brand-panel h2,
.admin-list-heading h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.admin-topbar h1 {
  font-size: clamp(30px, 5vw, 48px);
}

.admin-topbar nav {
  display: flex;
  gap: 10px;
}

.admin-topbar nav a,
.primary-admin-button,
.danger-admin-button,
.upload-button,
.admin-order-buttons button {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.admin-topbar nav a {
  padding: 8px 13px;
  border: 1px solid #353539;
  color: #eee;
}

.admin-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
  padding: 11px 13px;
  border: 1px solid #242428;
  border-radius: 7px;
  background: #0a0b0d;
  color: #c9c9cc;
}

.admin-status > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 9px var(--red);
}

.admin-status small {
  margin-left: auto;
  color: #77777c;
}

.admin-brand-panel,
.admin-artist-card {
  border: 1px solid #28292d;
  border-radius: 10px;
  background: linear-gradient(145deg, #111216, #08090b 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.admin-brand-panel {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr 0.8fr;
  gap: 14px;
  align-items: end;
  padding: 20px;
}

.admin-brand-panel h2,
.admin-list-heading h2 {
  font-size: 27px;
}

.admin-brand-panel label,
.admin-fields label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  color: #a7a7ab;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-fields label > small {
  color: #66666c;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.admin-brand-panel input,
.admin-fields input,
.admin-fields textarea {
  width: 100%;
  padding: 0 10px;
  border: 1px solid #36373b;
  border-radius: 5px;
  outline: none;
  background: #050607;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.admin-brand-panel input,
.admin-fields input {
  height: 39px;
}

.admin-fields textarea {
  min-height: 110px;
  padding-top: 9px;
  resize: vertical;
  font-family: inherit;
}

.admin-brand-panel input:focus,
.admin-fields input:focus,
.admin-fields textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(255, 7, 18, 0.12);
}

.admin-action-row {
  display: flex;
  grid-column: 1 / -1;
  justify-content: flex-end;
  gap: 9px;
}

.primary-admin-button,
.danger-admin-button,
.upload-button {
  padding: 8px 13px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  font-size: 12px;
}

.upload-button {
  position: relative;
  overflow: hidden;
  border-color: #3a3b3f;
  background: #15161a;
}

.upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.danger-admin-button {
  border-color: #6d252a;
  background: transparent;
  color: #ff8086;
}

.primary-admin-button:disabled,
.admin-order-buttons button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.admin-list-heading {
  margin: 34px 0 14px;
}

.admin-artist-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-artist-card {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr) 132px;
  gap: 17px;
  padding: 15px;
}

.admin-avatar-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-avatar-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid #33343a;
  border-radius: 7px;
  object-fit: cover;
}

.admin-fields {
  display: grid;
  min-width: 0;
  grid-template-columns: 1fr 1fr 100px;
  gap: 10px;
}

.admin-fields .wide-field {
  grid-column: span 2;
}

.admin-profile-meter {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-profile-meter > span {
  height: 3px;
  overflow: hidden;
  border-radius: 2px;
  background: #26272b;
}

.admin-profile-meter i {
  display: block;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}

.admin-profile-meter small,
.admin-waveform-preview small {
  color: #77777d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-waveform-preview,
.admin-profile-editor {
  grid-column: 1 / -1 !important;
}

.admin-waveform-preview {
  padding: 8px 10px;
  border: 1px solid #28292d;
  border-radius: 5px;
  background: #060709;
}

.admin-waveform-preview .waveform {
  width: 100%;
  height: 24px;
  margin-bottom: 5px;
}

.admin-profile-editor {
  overflow: hidden;
  border: 1px solid #303136;
  border-radius: 6px;
  background: #08090b;
}

.admin-profile-editor summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  color: #eee;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.admin-profile-editor summary::-webkit-details-marker {
  display: none;
}

.admin-profile-editor summary::after {
  content: "+";
  color: var(--red);
  font-size: 20px;
}

.admin-profile-editor[open] summary::after {
  content: "−";
}

.admin-profile-editor summary span {
  margin-left: auto;
  color: #68686e;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.admin-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid #28292d;
}

.admin-profile-grid .wide-field {
  grid-column: 1 / -1;
}

.admin-card-actions {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.admin-profile-link {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  border: 1px solid #3a3b3f;
  border-radius: 6px;
  color: #ddd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.admin-order-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.admin-order-buttons button {
  border: 1px solid #36373b;
  background: #111216;
  color: #fff;
  font-size: 18px;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c6c6c8;
  font-size: 14px;
}

.admin-check input {
  accent-color: var(--red);
}

.admin-access-message {
  display: grid;
  min-height: 100svh;
  place-content: center;
  padding: 30px;
  text-align: center;
}

.admin-access-message h1 {
  margin: 0 0 8px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 42px;
  font-weight: 400;
}

.admin-access-message p {
  color: #aaa;
}

.admin-access-message a {
  color: var(--red);
}

/* Discovery controls and quick preview */
.discovery-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 94px 30px;
  gap: 4px;
  height: 35px;
  padding: 4px 8px 0;
  background: #030304;
}

.discovery-bar label {
  display: flex;
  min-width: 0;
  align-items: center;
  border: 1px solid #242529;
  border-radius: 4px;
  background: #08090b;
}

.discovery-bar label span {
  padding-left: 8px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.discovery-bar input,
.discovery-bar select,
.discovery-bar > button {
  min-width: 0;
  height: 30px;
  border: 1px solid #292a2e;
  border-radius: 4px;
  outline: none;
  background: #08090b;
  color: #d7d7da;
  font-size: 10px;
}

.discovery-bar input {
  width: 100%;
  padding: 0 7px;
  border: 0;
  background: transparent;
}

.discovery-bar select {
  padding: 0 4px;
  color: #aaa;
  text-transform: uppercase;
}

.discovery-bar > button {
  cursor: pointer;
  color: var(--red);
  font-size: 17px;
}

.directory-verified {
  display: inline-grid;
  width: 14px;
  height: 14px;
  margin-left: 5px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-family: Arial, sans-serif;
  font-size: 8px;
  vertical-align: middle;
}

.menu-panel a small {
  margin-left: auto;
  color: var(--red);
  font-size: 9px;
}

.menu-panel a {
  display: flex;
  justify-content: space-between;
}

.menu-install {
  min-height: 44px;
  margin-top: 12px;
  cursor: pointer;
  border: 1px solid var(--red);
  border-radius: 5px;
  background: rgba(255, 7, 18, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-install:disabled {
  border-color: #303136;
  color: #6e6e74;
}

.peek-scrim {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.artist-peek {
  position: relative;
  width: min(100%, 390px);
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 12px;
  background: #08090b;
  box-shadow: 0 0 45px rgba(255, 7, 18, 0.28);
}

.artist-peek > button {
  position: absolute;
  z-index: 2;
  top: 9px;
  right: 9px;
  width: 32px;
  height: 32px;
  border: 1px solid #444;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: 22px;
}

.artist-peek > img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  mask-image: linear-gradient(#000 60%, transparent);
}

.artist-peek > div {
  margin-top: -52px;
  padding: 0 17px 17px;
}

.artist-peek small {
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.artist-peek h2 {
  margin: 6px 0 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.artist-peek p {
  margin: 4px 0 12px;
  color: #aaa;
}

.artist-peek dl,
.artist-peek dl div {
  display: flex;
}

.artist-peek dl {
  gap: 18px;
  margin: 0 0 14px;
}

.artist-peek dl div {
  flex-direction: column;
}

.artist-peek dt {
  color: #666;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artist-peek dd {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.peek-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.peek-actions button,
.peek-actions a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.peek-actions a {
  background: transparent;
}

/* Immersive City Mode */
.city-mode {
  --energy: var(--audio-energy, 0.06);
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #010102;
  isolation: isolate;
}

.city-atmosphere,
.city-grid,
.city-skyline,
.city-artist-aura {
  position: absolute;
  pointer-events: none;
}

.city-atmosphere {
  z-index: -5;
  inset: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 7, 18, calc(.12 + var(--energy) * .55)), transparent 34rem),
    linear-gradient(180deg, #100205, #020203 58%, #000);
  transition: background 80ms linear;
}

.city-atmosphere::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: calc(.2 + var(--energy));
  background-image: radial-gradient(circle, rgba(255,255,255,.75) 0 1px, transparent 1.5px);
  background-size: 47px 43px;
  animation: city-drift 18s linear infinite;
}

.city-grid {
  z-index: -1;
  right: -20%;
  bottom: -31%;
  left: -20%;
  height: 62%;
  opacity: 0.26;
  background:
    linear-gradient(rgba(255, 7, 18, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 7, 18, .18) 1px, transparent 1px);
  background-size: 54px 40px;
  transform: perspective(280px) rotateX(62deg) translateY(var(--city-y));
  mask-image: linear-gradient(transparent, #000 42%);
}

.city-skyline {
  z-index: -3;
  right: -3%;
  bottom: 24%;
  left: -3%;
  display: flex;
  height: 40%;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  transform: translateX(calc(var(--city-x) * -.35));
  transition: transform 180ms ease-out;
}

.city-skyline i {
  position: relative;
  display: block;
  min-width: 22px;
  border: 1px solid rgba(255, 7, 18, .18);
  background: linear-gradient(90deg, #050506, #0c0507, #030304);
  box-shadow: 0 0 calc(4px + var(--energy) * 28px) rgba(255, 7, 18, .16);
}

.city-skyline i b {
  position: absolute;
  inset: 8px 5px;
  opacity: calc(.15 + var(--energy) * 1.2);
  background: repeating-linear-gradient(180deg, #ff2630 0 2px, transparent 2px 10px);
  mask-image: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 7px);
}

.city-skyline-far {
  bottom: 29%;
  height: 34%;
  opacity: .44;
  filter: blur(1px);
  transform: translateX(calc(var(--city-x) * .18)) scale(.96);
}

.city-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 9px clamp(13px, 3vw, 34px);
  border-bottom: 1px solid rgba(255, 7, 18, .24);
  background: rgba(0, 0, 0, .54);
  backdrop-filter: blur(14px);
}

.city-header img {
  display: block;
  width: 170px;
  height: 53px;
  object-fit: cover;
}

.city-header > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7e7e84;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.city-header > div span { color: var(--red); }
.city-header > div i { width: 28px; height: 1px; background: #444; }
.city-header > div strong::before { display:inline-block;width:6px;height:6px;margin-right:6px;border-radius:50%;background:var(--red);box-shadow:0 0 9px var(--red);content:""; }

.city-header > a:last-child {
  padding: 8px 11px;
  border: 1px solid #36373b;
  border-radius: 4px;
  color: #ddd;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.city-stage {
  position: relative;
  display: grid;
  width: min(100% - 30px, 1050px);
  min-height: calc(100svh - 260px);
  margin: 0 auto;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
}

.city-artist-image {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  transform: translate(calc(var(--city-x) * .42), calc(var(--city-y) * .22));
  transition: transform 180ms ease-out;
  mask-image: linear-gradient(90deg, transparent 0, #000 9% 88%, transparent), linear-gradient(180deg, #000 72%, transparent 98%);
  mask-composite: intersect;
}

.city-artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.08) saturate(.82);
}

.city-artist-aura {
  z-index: -1;
  top: 10%;
  left: 15%;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 7, 18, calc(.13 + var(--energy) * .55));
  filter: blur(calc(40px + var(--energy) * 65px));
  transform: scale(calc(1 + var(--energy) * .28));
}

.city-artist-copy {
  position: relative;
  z-index: 2;
  padding: 30px 0 10vh 30px;
}

.city-artist-copy > p {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.city-artist-copy h1 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 400;
  line-height: .83;
  letter-spacing: -.035em;
  text-shadow: 0 0 calc(10px + var(--energy) * 34px) rgba(255, 7, 18, .24);
  text-transform: uppercase;
}

.city-artist-copy h2 {
  margin: 13px 0 18px;
  color: #b4b4b8;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.city-signal-stats {
  display: flex;
  gap: 26px;
  margin-bottom: 20px;
}

.city-signal-stats span { display:flex; flex-direction:column; }
.city-signal-stats small { color:#626268;font-size:8px;font-weight:700;letter-spacing:.12em; }
.city-signal-stats strong { font-size:21px; }

.city-actions { display:flex;gap:7px; }
.city-actions button,.city-actions a { display:inline-flex;min-height:45px;align-items:center;gap:9px;padding:0 14px;border:1px solid var(--red);border-radius:4px;background:var(--red);color:#fff;font-size:11px;font-weight:700;text-decoration:none;text-transform:uppercase; }
.city-actions a { background:rgba(0,0,0,.52); }
.city-actions button i { width:0;height:0;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:8px solid #fff; }
.city-actions button.is-playing i { width:8px;height:11px;border:0;background:linear-gradient(90deg,#fff 0 34%,transparent 34% 66%,#fff 66%); }

.city-selector {
  position: fixed;
  z-index: 12;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px 14px 12px;
  border-top: 1px solid rgba(255,7,18,.26);
  background: rgba(2,2,3,.83);
  backdrop-filter: blur(16px);
}

.city-selector > header {
  display:flex;justify-content:space-between;max-width:1050px;margin:0 auto 6px;color:var(--red);font-size:8px;font-weight:700;letter-spacing:.15em;
}
.city-selector > header small { color:#666; }
.city-selector > div { display:flex;max-width:1050px;margin:0 auto;gap:5px;overflow-x:auto;scrollbar-width:none; }
.city-selector button { position:relative;display:grid;min-width:118px;grid-template-columns:37px 1fr;align-items:center;gap:6px;padding:4px;border:1px solid #292a2e;border-radius:4px;background:#08090b;color:#ddd;text-align:left; }
.city-selector button.is-selected { border-color:var(--red);box-shadow:0 0 13px rgba(255,7,18,.28); }
.city-selector button > span { position:absolute;top:2px;right:3px;color:#555;font-size:7px; }
.city-selector button img { width:37px;height:37px;border-radius:2px;object-fit:cover; }
.city-selector button strong { overflow:hidden;font-family:"Anton",Impact,sans-serif;font-size:11px;font-weight:400;text-overflow:ellipsis;white-space:nowrap; }

@keyframes city-drift { to { transform: translate3d(-47px, -43px, 0); } }

/* Following */
.following-page,.studio-page { min-height:100svh;background:radial-gradient(circle at 50% 0,rgba(255,7,18,.12),transparent 28rem),#030304; }
.following-page > header { display:flex;min-height:62px;align-items:center;justify-content:space-between;padding:0 clamp(14px,4vw,38px);border-bottom:1px solid #242529;background:#050607; }
.following-page > header a { color:#ccc;font-size:11px;font-weight:700;text-decoration:none;text-transform:uppercase; }
.following-page > header span { color:var(--red);font-size:10px;font-weight:700;letter-spacing:.17em; }
.following-hero { width:min(100% - 28px,900px);margin:0 auto;padding:70px 0 42px;text-align:center; }
.following-hero > p:first-child { color:var(--red);font-size:10px;font-weight:700;letter-spacing:.2em; }
.following-hero h1 { margin:8px 0;font-family:"Anton",Impact,sans-serif;font-size:clamp(42px,8vw,80px);font-weight:400;line-height:1; }
.following-hero p:not(:first-child) { max-width:570px;margin:0 auto 20px;color:#999;font-size:16px;line-height:1.45; }
.following-hero button { min-height:42px;padding:0 15px;border:1px solid var(--red);border-radius:4px;background:var(--red);color:#fff;font-weight:700;text-transform:uppercase; }
.following-hero small { display:block;margin-top:10px;color:#888; }
.following-grid { display:grid;width:min(100% - 28px,900px);margin:0 auto;grid-template-columns:repeat(2,1fr);gap:8px;padding-bottom:70px; }
.following-grid > a { display:grid;grid-template-columns:86px minmax(0,1fr) auto;align-items:center;gap:12px;padding:7px;border:1px solid #28292d;border-radius:7px;background:#090a0c;color:#fff;text-decoration:none; }
.following-grid img { width:86px;height:76px;border-radius:4px;object-fit:cover; }
.following-grid a span { display:flex;min-width:0;flex-direction:column; }
.following-grid a small { color:var(--red);font-size:8px;font-weight:700;letter-spacing:.13em; }
.following-grid a strong { overflow:hidden;font-family:"Anton",Impact,sans-serif;font-size:23px;font-weight:400;text-overflow:ellipsis;white-space:nowrap; }
.following-grid a em { overflow:hidden;color:#888;font-size:13px;font-style:normal;text-overflow:ellipsis;white-space:nowrap; }
.following-grid a > i { padding-right:8px;color:var(--red);font-style:normal; }
.following-empty { grid-column:1/-1;padding:38px;border:1px dashed #38393d;border-radius:9px;text-align:center; }
.following-empty span { color:var(--red);font-size:9px;font-weight:700;letter-spacing:.17em; }
.following-empty h2 { margin:8px 0;font-family:"Anton",Impact,sans-serif;font-size:34px;font-weight:400; }
.following-empty p { max-width:500px;margin:0 auto 18px;color:#888; }
.following-empty a { display:inline-flex;padding:11px 15px;border-radius:4px;background:var(--red);color:#fff;font-weight:700;text-decoration:none;text-transform:uppercase; }

/* Artist Studio */
.studio-page { padding-bottom:80px; }
.studio-header { display:grid;grid-template-columns:1fr auto 1fr;align-items:center;min-height:68px;padding:0 clamp(14px,4vw,42px);border-bottom:1px solid #242529;background:#050607; }
.studio-header > a { color:#ddd;font-family:"Anton",Impact,sans-serif;font-size:17px;font-weight:400;text-decoration:none; }
.studio-header > a:last-child { justify-self:end;font-family:inherit;font-size:10px;font-weight:700;text-transform:uppercase; }
.studio-header div { display:flex;flex-direction:column;text-align:center; }
.studio-header span { color:var(--red);font-size:11px;font-weight:700;letter-spacing:.18em; }
.studio-header small { color:#6d6d72; }
.studio-status { display:flex;width:min(100% - 28px,1120px);min-height:40px;align-items:center;gap:8px;margin:15px auto;padding:0 12px;border:1px solid #27282c;border-radius:5px;background:#090a0c;color:#aaa;font-size:12px; }
.studio-status i { width:7px;height:7px;border-radius:50%;background:var(--red);box-shadow:0 0 8px var(--red); }
.studio-status span { margin-left:auto;color:#636369;font-size:9px;font-weight:700;letter-spacing:.1em; }
.studio-artist-switcher { display:block;width:min(100% - 28px,1120px);height:42px;margin:0 auto 10px;padding:0 10px;border:1px solid #33343a;border-radius:5px;background:#08090b;color:#fff; }
.studio-overview,.studio-plan,.studio-editor,.studio-content-grid,.studio-claim { width:min(100% - 28px,1120px);margin:0 auto; }
.studio-overview { display:grid;grid-template-columns:116px minmax(0,1fr) auto;align-items:center;gap:18px;padding:16px;border:1px solid #2b2c30;border-radius:9px;background:linear-gradient(110deg,rgba(255,7,18,.08),transparent 40%),#090a0c; }
.studio-overview > img { width:116px;height:106px;border-radius:6px;object-fit:cover; }
.studio-overview small { color:var(--red);font-size:9px;font-weight:700;letter-spacing:.15em; }
.studio-overview h1 { margin:4px 0 0;font-family:"Anton",Impact,sans-serif;font-size:45px;font-weight:400;line-height:1; }
.studio-overview p { margin:4px 0;color:#888; }
.studio-overview > a { padding:10px 12px;border:1px solid #3b3c41;border-radius:4px;color:#ddd;font-size:10px;font-weight:700;text-decoration:none;text-transform:uppercase; }
.studio-overview dl { display:grid;grid-column:1/-1;grid-template-columns:repeat(4,1fr);gap:5px;margin:0; }
.studio-overview dl div { padding:10px;border:1px solid #26272b;border-radius:4px;background:#050607; }
.studio-overview dt { color:#666;font-size:8px;font-weight:700;letter-spacing:.1em;text-transform:uppercase; }
.studio-overview dd { margin:2px 0 0;font-size:20px;font-weight:700; }
.studio-plan { display:grid;grid-template-columns:1fr 1fr auto;gap:20px;align-items:center;margin-top:10px;padding:22px;border:1px solid rgba(255,7,18,.58);border-radius:9px;background:radial-gradient(circle at 100% 0,rgba(255,7,18,.2),transparent 18rem),#090a0c; }
.studio-plan span { color:var(--red);font-size:9px;font-weight:700;letter-spacing:.16em; }
.studio-plan h2 { margin:5px 0;font-family:"Anton",Impact,sans-serif;font-size:27px;font-weight:400;line-height:1.06; }
.studio-plan ul { display:grid;grid-template-columns:1fr 1fr;gap:4px 16px;margin:0;padding-left:17px;color:#bbb;font-size:12px; }
.studio-plan > p { grid-column:1/3;margin:0;color:#69696f;font-size:10px; }
.studio-plan > button { grid-column:3;grid-row:1/3;min-height:47px;padding:0 16px;border:0;border-radius:5px;background:var(--red);color:#fff;font-weight:800;text-transform:uppercase; }
.studio-editor { margin-top:10px;border:1px solid #2b2c30;border-radius:9px;background:#090a0c; }
.studio-editor > header { display:flex;align-items:center;gap:10px;padding:15px;border-bottom:1px solid #292a2e; }
.studio-editor > header span { color:var(--red);font-size:9px;font-weight:700;letter-spacing:.15em; }
.studio-editor > header h2 { margin:0;font-family:"Anton",Impact,sans-serif;font-size:24px;font-weight:400; }
.studio-editor > header button { min-height:37px;margin-left:auto;padding:0 13px;border:0;border-radius:4px;background:var(--red);color:#fff;font-weight:700;text-transform:uppercase; }
.studio-fields { display:grid;grid-template-columns:1fr 1fr;gap:9px;padding:15px; }
.studio-fields label { display:flex;flex-direction:column;gap:5px;color:#8a8a90;font-size:9px;font-weight:700;letter-spacing:.09em;text-transform:uppercase; }
.studio-fields .wide { grid-column:1/-1; }
.studio-fields input,.studio-fields textarea { width:100%;padding:9px;border:1px solid #33343a;border-radius:4px;outline:none;background:#050607;color:#fff;font-family:inherit;font-size:14px;letter-spacing:0;text-transform:none; }
.studio-fields input:focus,.studio-fields textarea:focus { border-color:var(--red); }
.studio-content-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:10px; }
.studio-content-panel { padding:14px;border:1px solid #2b2c30;border-radius:8px;background:#090a0c; }
.studio-content-panel > header { display:flex;align-items:center;gap:7px;margin-bottom:10px; }
.studio-content-panel > header span { color:var(--red);font-size:8px;font-weight:700;letter-spacing:.12em; }
.studio-content-panel > header h2 { margin:0;font-family:"Anton",Impact,sans-serif;font-size:22px;font-weight:400; }
.studio-content-panel > header small { margin-left:auto;color:#666;font-size:8px; }
.studio-content-items { display:flex;flex-direction:column;gap:4px;margin-bottom:9px; }
.studio-content-items > div { display:flex;align-items:center;justify-content:space-between;padding:7px;border:1px solid #292a2e;border-radius:3px;background:#050607;font-size:12px; }
.studio-content-items button { border:0;background:transparent;color:#ff6d74;font-size:17px; }
.studio-content-panel form { display:flex;flex-direction:column;gap:5px; }
.studio-content-panel input { height:36px;padding:0 8px;border:1px solid #313237;border-radius:3px;outline:none;background:#050607;color:#fff; }
.studio-content-panel form button { min-height:39px;border:0;border-radius:4px;background:var(--red);color:#fff;font-weight:700;text-transform:uppercase; }
.studio-content-panel form button:disabled { background:#26272b;color:#666; }
.studio-content-panel.is-locked { opacity:.72; }
.studio-claim-page { display:flex;min-height:100svh;flex-direction:column; }
.studio-claim { max-width:650px;margin:auto;padding:36px;border:1px solid rgba(255,7,18,.55);border-radius:10px;background:#090a0c; }
.studio-claim > span { color:var(--red);font-size:9px;font-weight:700;letter-spacing:.17em; }
.studio-claim h1 { margin:7px 0;font-family:"Anton",Impact,sans-serif;font-size:47px;font-weight:400;line-height:1; }
.studio-claim p { color:#999;line-height:1.45; }
.studio-claim form { display:flex;flex-direction:column;gap:7px; }
.studio-claim select,.studio-claim textarea { padding:10px;border:1px solid #35363a;border-radius:4px;background:#050607;color:#fff; }
.studio-claim button { min-height:43px;border:0;border-radius:4px;background:var(--red);color:#fff;font-weight:700;text-transform:uppercase; }
.studio-claim > small { display:block;margin-top:9px;color:#777; }

/* Profile live modules */
.profile-masthead button.is-following { border-color:var(--red);color:#fff;box-shadow:0 0 11px rgba(255,7,18,.22); }
.profile-public-stats { display:flex;gap:19px;margin-top:13px; }
.profile-public-stats span { display:flex;flex-direction:column; }
.profile-public-stats strong { font-size:16px; }
.profile-public-stats small { color:#68686e;font-size:7px;font-weight:700;letter-spacing:.1em; }
.profile-discography,.profile-events,.profile-merch { margin:7px 9px 0; }
.profile-discography > div,.profile-events > div,.profile-merch > div { display:flex;flex-direction:column;gap:5px; }
.profile-discography button,.profile-events a,.profile-merch a { display:grid;grid-template-columns:48px minmax(0,1fr) auto auto;align-items:center;gap:8px;padding:6px;border:1px solid #2a2b2f;border-radius:4px;background:#060709;color:#fff;text-align:left;text-decoration:none; }
.profile-discography img,.profile-merch img { width:48px;height:48px;border-radius:3px;object-fit:cover; }
.profile-discography span,.profile-events span,.profile-merch span { display:flex;min-width:0;flex-direction:column; }
.profile-discography strong,.profile-events strong,.profile-merch strong { overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }
.profile-discography small,.profile-events small,.profile-merch small { color:#74747a; }
.profile-discography time { color:#777;font-size:10px; }
.profile-discography i,.profile-events i,.profile-merch i { color:var(--red);font-style:normal; }
.profile-events a { grid-template-columns:48px minmax(0,1fr) auto; }
.profile-events time { color:var(--red);font-family:"Anton",Impact,sans-serif;font-size:17px;text-align:center;text-transform:uppercase; }
.profile-merch a { grid-template-columns:48px minmax(0,1fr) auto; }
.profile-footer button { border:0;background:transparent;color:#5e5e63;font-size:8px;text-transform:uppercase; }

/* Admin platform intelligence */
.admin-brand-panel select,.admin-fields select { width:100%;height:39px;padding:0 8px;border:1px solid #36373b;border-radius:5px;background:#050607;color:#fff; }
.admin-intelligence { margin-top:16px;padding:18px;border:1px solid #28292d;border-radius:10px;background:linear-gradient(145deg,#111216,#08090b 70%); }
.admin-intelligence > header { display:flex;align-items:center;justify-content:space-between; }
.admin-intelligence h2 { margin:0;font-family:"Anton",Impact,sans-serif;font-size:28px;font-weight:400; }
.admin-intelligence > header > span { color:#666;font-size:9px;font-weight:700;letter-spacing:.1em;text-transform:uppercase; }
.admin-intelligence > dl { display:grid;grid-template-columns:repeat(4,1fr);gap:7px;margin:15px 0; }
.admin-intelligence > dl div { padding:12px;border:1px solid #2a2b2f;border-radius:5px;background:#060709; }
.admin-intelligence dt { color:#727278;font-size:9px;font-weight:700;letter-spacing:.1em;text-transform:uppercase; }
.admin-intelligence dd { margin:3px 0 0;font-size:26px;font-weight:700; }
.admin-intelligence-grid { display:grid;grid-template-columns:1fr 1fr;gap:8px; }
.admin-intelligence-grid > section { padding:12px;border:1px solid #2a2b2f;border-radius:6px;background:#07080a; }
.admin-intelligence-grid h3 { margin:0 0 9px;font-size:14px;text-transform:uppercase; }
.admin-intelligence-grid > section > p { color:#666; }
.admin-intelligence-grid article { display:flex;align-items:flex-start;justify-content:space-between;gap:10px;padding:9px 0;border-top:1px solid #27282c; }
.admin-intelligence-grid article div { display:flex;min-width:0;flex-direction:column; }
.admin-intelligence-grid article small { color:#666; }
.admin-intelligence-grid article p { margin:4px 0;color:#999; }
.admin-intelligence-grid article > span { display:flex;gap:4px; }
.admin-intelligence-grid article button { padding:6px;border:1px solid #3b3c40;border-radius:3px;background:#101115;color:#ddd;font-size:9px;font-weight:700;text-transform:uppercase; }
.admin-intelligence-grid article button:first-child { border-color:var(--red);color:#fff; }

@media (max-width: 860px) {
  .city-header {
    padding: 0 14px;
  }

  .city-stage {
    grid-template-columns: 1fr;
    min-height: 610px;
    padding: 78px 20px 118px;
  }

  .city-artist-image {
    position: absolute;
    inset: 20px 0 74px 24%;
    opacity: .72;
  }

  .city-artist-copy {
    position: relative;
    z-index: 3;
    width: min(100%, 580px);
    align-self: end;
    padding: 26px 20px;
    border-left: 2px solid var(--red);
    background: linear-gradient(90deg,rgba(3,3,4,.94),rgba(3,3,4,.7) 68%,transparent);
  }

  .city-selector {
    padding: 10px 14px 22px;
  }

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

  .studio-plan {
    grid-template-columns: 1fr 1fr;
  }

  .studio-plan > button {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .studio-plan > p {
    grid-column: 1 / -1;
  }

  .studio-content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .studio-content-panel:last-child {
    grid-column: 1 / -1;
  }

  .admin-intelligence > dl {
    grid-template-columns: 1fr 1fr;
  }

  .admin-intelligence-grid {
    grid-template-columns: 1fr;
  }

  .admin-brand-panel {
    grid-template-columns: 1fr 1fr;
  }

  .admin-brand-panel > div:first-child {
    grid-column: 1 / -1;
  }

  .admin-artist-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .admin-card-actions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .city-header img {
    width: 118px;
  }

  .city-header > div strong,
  .city-header > a:last-child {
    font-size: 8px;
  }

  .city-stage {
    min-height: 560px;
    padding: 58px 13px 105px;
  }

  .city-artist-image {
    inset: 18px -25% 92px 5%;
  }

  .city-artist-copy {
    padding: 19px 13px;
  }

  .city-artist-copy h1 {
    font-size: clamp(52px,18vw,78px);
  }

  .city-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .city-actions a,
  .city-actions button {
    justify-content: center;
  }

  .city-selector > div > button {
    min-width: 142px;
  }

  .following-hero {
    padding-top: 46px;
  }

  .following-grid > a {
    grid-template-columns: 72px minmax(0,1fr) auto;
  }

  .following-grid img {
    width: 72px;
    height: 68px;
  }

  .studio-header {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }

  .studio-header small,
  .studio-status span {
    display: none;
  }

  .studio-overview {
    grid-template-columns: 82px minmax(0,1fr);
    gap: 12px;
  }

  .studio-overview > img {
    width: 82px;
    height: 82px;
  }

  .studio-overview h1 {
    font-size: 34px;
  }

  .studio-overview > a {
    grid-column: 1 / -1;
    text-align: center;
  }

  .studio-overview dl {
    grid-template-columns: 1fr 1fr;
  }

  .studio-plan,
  .studio-content-grid,
  .studio-fields {
    grid-template-columns: 1fr;
  }

  .studio-plan ul {
    grid-template-columns: 1fr;
  }

  .studio-content-panel:last-child,
  .studio-fields .wide {
    grid-column: auto;
  }

  .studio-claim {
    padding: 24px 17px;
  }

  .profile-public-stats {
    gap: 11px;
  }

  .admin-intelligence > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-intelligence > dl {
    grid-template-columns: 1fr 1fr;
  }

  .admin-page {
    width: min(100% - 18px, 1180px);
    padding-top: 15px;
  }

  .admin-topbar,
  .admin-list-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-topbar nav,
  .admin-topbar nav a {
    width: 100%;
  }

  .admin-status {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .admin-status small {
    width: 100%;
    margin-left: 16px;
  }

  .admin-brand-panel {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .admin-brand-panel > div:first-child,
  .admin-action-row {
    grid-column: auto;
  }

  .admin-action-row,
  .admin-action-row > * {
    width: 100%;
  }

  .admin-artist-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 11px;
    padding: 11px;
  }

  .admin-fields {
    grid-template-columns: 1fr;
  }

  .admin-fields .wide-field {
    grid-column: auto;
  }

  .admin-profile-editor,
  .admin-waveform-preview {
    grid-column: 1 / -1 !important;
  }

  .admin-profile-grid {
    grid-template-columns: 1fr;
  }

  .admin-profile-grid .wide-field {
    grid-column: auto;
  }

  .admin-profile-editor summary span {
    display: none;
  }

  .admin-card-actions {
    grid-template-columns: 1fr 1fr;
  }

  .admin-card-actions > * {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .profile-content-grid,
  .profile-links > div,
  .profile-actions > div,
  .related-artists > div {
    grid-template-columns: 1fr;
  }

  .profile-masthead > a {
    width: 155px;
  }

  .mini-player-controls > button:not(.mini-player-main-button) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Portable PHP edition */
[hidden]{display:none!important}.global-flash{position:fixed;top:12px;left:50%;z-index:1000;width:min(calc(100% - 24px),560px);transform:translateX(-50%);padding:12px 15px;border:1px solid #4a4b50;border-radius:5px;background:#111216;box-shadow:0 12px 35px #000b;color:#fff;font-weight:700;text-align:center}.global-flash.is-success{border-color:#ff0712}.global-flash.is-error{border-color:#ff6870}.global-player{position:fixed;right:12px;bottom:12px;z-index:800;display:grid;width:min(calc(100% - 24px),470px);grid-template-columns:54px minmax(0,1fr) 100px 38px 46px;align-items:center;gap:10px;padding:7px;border:1px solid #34353a;border-radius:9px;background:linear-gradient(110deg,#121318ee,#060708f5);box-shadow:0 15px 45px #000c,0 0 22px #ff07121f;transform:translateY(calc(100% + 30px));opacity:0;transition:.25s ease}.global-player.is-visible{transform:none;opacity:1}.global-player img{width:54px;height:50px;border-radius:5px;object-fit:cover}.global-player div{display:flex;min-width:0;flex-direction:column}.global-player small{color:#ff0712;font-size:7px;font-weight:800;letter-spacing:.12em}.global-player strong,.global-player span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.global-player strong{font-family:"Anton",Impact,sans-serif;font-size:18px;font-weight:400}.global-player span{color:#777;font-size:11px}.global-player input{width:100%;accent-color:#ff0712}.global-player time{color:#999;font-size:11px}.global-player button{display:grid;width:42px;height:42px;place-items:center;border:1px solid #ff0712;border-radius:50%;background:#050607}.global-player button i{width:0;height:0;margin-left:3px;border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:10px solid #fff}.global-player.is-playing button i{width:10px;height:13px;margin:0;border:0;border-right:3px solid #fff;border-left:3px solid #fff}.site-notice{position:fixed;left:50%;bottom:84px;z-index:1001;max-width:calc(100% - 24px);transform:translate(-50%,20px);padding:10px 14px;border:1px solid #ff0712;border-radius:5px;background:#090a0df2;color:#fff;opacity:0;pointer-events:none;transition:.2s}.site-notice.is-visible{transform:translate(-50%,0);opacity:1}.waveform{display:flex;height:20px;min-width:0;flex:1;align-items:center;gap:1px;cursor:pointer}.waveform i{display:block;width:2px;height:var(--peak);min-height:2px;background:#777;transition:background .12s}.artist-card.is-current .waveform i,.waveform:hover i{background:#ff0712}.artist-card.is-current{border-color:#ff0712}.artist-card.is-playing .play-button span{width:10px;height:14px;margin:0;border:0;border-right:3px solid #fff;border-left:3px solid #fff}.directory-empty{padding:35px;text-align:center;color:#777}.auth-page{min-height:100svh;background:radial-gradient(circle at 50% 0,#370006,transparent 34rem),#020203}.auth-shell{width:min(calc(100% - 28px),600px);margin:0 auto;padding:45px 0 80px}.auth-shell>a{color:#aaa;text-decoration:none}.auth-brand{margin:25px 0;text-align:center}.auth-brand img{width:min(100%,430px)}.auth-card{padding:24px;border:1px solid #303136;border-radius:10px;background:#090a0d}.auth-card h1{margin:0 0 6px;font-family:"Anton",Impact,sans-serif;font-size:42px;font-weight:400}.auth-card>p{color:#888}.auth-tabs{display:grid;grid-template-columns:1fr 1fr;margin:18px 0 12px}.auth-tabs button{height:42px;border:1px solid #303136;background:#050607;color:#888;font-weight:700;text-transform:uppercase}.auth-tabs button.is-active{border-color:#ff0712;color:#fff}.auth-form{display:flex;flex-direction:column;gap:9px}.auth-form label,.control-field{display:flex;flex-direction:column;gap:5px;color:#888;font-size:10px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}.auth-form input,.control-field input,.control-field textarea,.control-field select{width:100%;min-height:42px;padding:9px;border:1px solid #34353a;border-radius:4px;outline:none;background:#030405;color:#fff;font:14px Arial,sans-serif;text-transform:none}.auth-form button,.primary-action{min-height:44px;border:0;border-radius:4px;background:#ff0712;color:#fff;font-weight:800;text-transform:uppercase}.form-error{padding:10px;border:1px solid #ff0712;background:#ff071219;color:#ffb5b9}.form-success{padding:10px;border:1px solid #47b879;background:#47b87919;color:#b8f5d2}.control-shell{width:min(calc(100% - 24px),1180px);margin:0 auto;padding:18px 0 80px}.control-topbar{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:14px;padding-bottom:14px;border-bottom:1px solid #292a2e}.control-topbar strong{font-family:"Anton",Impact,sans-serif;font-size:24px;font-weight:400}.control-topbar span{color:#ff0712;font-size:9px;font-weight:800;letter-spacing:.14em}.control-topbar nav{display:flex;gap:5px}.control-topbar a{padding:8px 10px;border:1px solid #34353a;border-radius:3px;color:#ddd;font-size:9px;font-weight:700;text-decoration:none;text-transform:uppercase}.control-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:7px;margin-bottom:10px}.metric{padding:13px;border:1px solid #292a2e;border-radius:6px;background:#08090b}.metric small{color:#777;font-size:8px;font-weight:800;letter-spacing:.1em}.metric strong{display:block;margin-top:4px;font-size:28px}.control-panel{margin-top:9px;border:1px solid #2c2d31;border-radius:8px;background:#090a0d;overflow:hidden}.control-panel>header{display:flex;align-items:center;justify-content:space-between;padding:14px;border-bottom:1px solid #292a2e}.control-panel h2{margin:0;font-family:"Anton",Impact,sans-serif;font-size:24px;font-weight:400}.control-panel>header span{color:#ff0712;font-size:8px;font-weight:800;letter-spacing:.12em}.control-body{padding:14px}.control-form{display:grid;grid-template-columns:repeat(2,1fr);gap:8px}.control-field.wide{grid-column:1/-1}.control-field.check{flex-direction:row;align-items:center}.control-field.check input{width:auto;min-height:0}.control-actions{display:flex;grid-column:1/-1;justify-content:flex-end;gap:6px}.control-actions button,.danger-action,.secondary-action{min-height:39px;padding:0 13px;border:1px solid #44454a;border-radius:4px;background:#111216;color:#fff;font-weight:700;text-transform:uppercase}.control-actions .primary-action{border-color:#ff0712;background:#ff0712}.artist-admin-list{display:flex;flex-direction:column;gap:7px}.artist-admin-card{display:grid;grid-template-columns:92px minmax(0,1fr) auto;align-items:center;gap:12px;padding:8px;border:1px solid #2b2c30;border-radius:6px;background:#060709}.artist-admin-card>img{width:92px;height:80px;border-radius:5px;object-fit:cover}.artist-admin-card h3{margin:0;font-family:"Anton",Impact,sans-serif;font-size:23px;font-weight:400}.artist-admin-card p{margin:3px 0;color:#888}.artist-admin-card a{color:#ff0712;text-decoration:none}.moderation-card{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;padding:10px 0;border-top:1px solid #292a2e}.moderation-card p{margin:4px 0;color:#999}.moderation-card small{color:#666}.moderation-card form{display:flex;gap:4px}.settings-columns{display:grid;grid-template-columns:1fr 1fr;gap:9px}.content-table{width:100%;border-collapse:collapse}.content-table th,.content-table td{padding:9px;border-bottom:1px solid #292a2e;text-align:left}.content-table th{color:#777;font-size:8px;letter-spacing:.1em}.profile-module-empty{padding:16px;border:1px dashed #36373b;color:#777;text-align:center}.city-selector button img{object-fit:cover}.studio-message{padding:9px;border:1px solid #ff0712;border-radius:4px;color:#ddd}.no-results{padding:30px;text-align:center;color:#777}.public-form{display:flex;flex-direction:column;gap:8px}.public-form textarea{min-height:100px}.report-button{border:0;background:transparent;color:#666;font-size:9px;text-transform:uppercase}.install-note{padding:12px;border:1px solid #393a3f;border-radius:5px;background:#060709;color:#888;line-height:1.45}.system-ok{color:#63dc94}.system-warn{color:#ffb04d}@media(max-width:700px){.global-player{right:6px;bottom:6px;width:calc(100% - 12px);grid-template-columns:45px minmax(0,1fr) 38px 42px}.global-player img{width:45px;height:44px}.global-player input{display:none}.control-topbar{align-items:flex-start;flex-direction:column}.control-topbar nav{width:100%;overflow:auto}.control-grid{grid-template-columns:1fr 1fr}.control-form,.settings-columns{grid-template-columns:1fr}.control-field.wide{grid-column:auto}.artist-admin-card{grid-template-columns:72px minmax(0,1fr)}.artist-admin-card>img{width:72px;height:68px}.artist-admin-card>.control-actions{grid-column:1/-1}.content-table{font-size:12px}}
