:root {
  color-scheme: dark;
  --bg: #030303;
  --text: #f4f6f7;
  --muted: #b7bdc1;
  --soft: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.18);
  --line-strong: rgba(255, 255, 255, 0.35);
  --surface: rgba(7, 8, 9, 0.66);
  --surface-strong: rgba(9, 10, 12, 0.86);
  --accent: #ffffff;
  --tour-accent: var(--accent);
  --tour-accent-text: #050505;
  --tour-accent-2: #ffffff;
  --tour-kicker-color: #ffffff;
  --tour-glow: rgba(255, 255, 255, 0.12);
  --danger: #d34040;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", "Arial Narrow", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  content: "";
  background: #020202;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.background-video,
.background-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.background-video {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
  opacity: 0.68;
  filter: grayscale(1) contrast(1.22) brightness(0.82);
}

.background-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.84)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76) 70%, #020202),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5px);
}

body[data-page="street-team"] .background-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.84)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76) 70%, #020202),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5px);
}

body[data-page="street-team"] .street-team-background-video {
  filter: grayscale(1) contrast(1.22) brightness(0.82);
  opacity: 0.68;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 24px 0 18px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(170px, 28vw, 310px);
  min-width: 0;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.2));
}

.brand--tour-logo img {
  filter: drop-shadow(0 0 20px var(--tour-glow));
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.site-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  background: transparent;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.tour-window-title {
  display: none;
}

.site-main {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(8px, 2vw, 22px) 0 70px;
}

.intro {
  display: grid;
  min-height: clamp(180px, 27vh, 300px);
  max-width: 860px;
  align-content: center;
  padding: clamp(8px, 2vw, 20px) 0 clamp(10px, 2vw, 22px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--tour-kicker-color);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5.8vw, 4.7rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.68);
}

h1 span {
  display: block;
  margin-top: 10px;
  color: var(--tour-accent-2);
  font-size: clamp(1.05rem, 2.5vw, 1.9rem);
  line-height: 1;
}

.intro #page-copy {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(244, 246, 247, 0.86);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.tour-finder {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 22px;
}

.tour-finder[hidden],
.prismatic-button[hidden] {
  display: none;
}

.tour-finder__button {
  appearance: none;
}

.tour-finder__button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.tour-finder__status {
  margin: 0;
  max-width: 560px;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

body[data-page="past"] .intro {
  opacity: 0.92;
}

body[data-page="past"] .eyebrow::after {
  display: inline-block;
  width: 64px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  content: "";
  background: var(--line-strong);
}

body[data-page="admin"] .intro {
  min-height: 0;
  padding: clamp(28px, 6vw, 62px) 0 0;
}

.shows-shell {
  margin-top: clamp(10px, 2vw, 24px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.shows-list {
  display: grid;
  gap: 12px;
}

.year-accordion {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.38);
}

.year-accordion[open] {
  border-color: var(--line-strong);
  background: rgba(0, 0, 0, 0.5);
}

.year-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 0 18px;
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.year-summary::-webkit-details-marker {
  display: none;
}

.year-summary::after {
  content: "+";
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1;
}

.year-accordion[open] .year-summary::after {
  content: "-";
}

.year-summary span:last-child {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.82rem;
}

.year-shows {
  display: grid;
  gap: 12px;
  padding: 0 12px 12px;
}

.show-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(82px, 0.14fr) minmax(0, 1fr) auto;
  align-items: center;
  min-height: 126px;
  gap: clamp(18px, 4vw, 34px);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.show-card:hover {
  border-color: var(--line-strong);
  background: var(--surface-strong);
}

.show-card--next {
  border-color: color-mix(in srgb, var(--tour-accent) 58%, rgba(255, 255, 255, 0.52));
  background: rgba(13, 14, 16, 0.84);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 34px var(--tour-glow),
    0 24px 78px rgba(0, 0, 0, 0.36);
}

.show-card--target {
  border-color: color-mix(in srgb, var(--tour-accent) 82%, white);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--tour-accent) 18%, transparent), rgba(255, 255, 255, 0.04)),
    var(--surface-strong);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--tour-accent) 42%, transparent),
    0 0 34px var(--tour-glow),
    0 24px 78px rgba(0, 0, 0, 0.36);
}

.show-card--target::after {
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 5px 9px;
  border: 1px solid color-mix(in srgb, var(--tour-accent) 68%, transparent);
  color: #ebfffb;
  content: "Matched Show";
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--tour-accent) 34%, rgba(5, 5, 5, 0.9));
}

.show-card--target:focus {
  outline: 2px solid color-mix(in srgb, var(--tour-accent) 82%, white);
  outline-offset: 4px;
}

.show-status {
  margin: 0 0 8px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.show-date {
  display: grid;
  justify-items: start;
  min-width: 78px;
  padding-right: 18px;
  border-right: 1px solid var(--line);
  font-weight: 800;
  text-transform: uppercase;
}

.show-month,
.show-year {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0;
}

.show-day {
  margin: 2px 0;
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  line-height: 0.95;
}

.show-location,
.show-time,
.show-lineup,
.show-notes {
  margin: 0;
  color: var(--muted);
}

.show-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 8px;
}

.status-chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.05);
}

.status-chip--cancelled {
  border-color: rgba(255, 109, 109, 0.9);
  color: #fff2f2;
  background: rgba(156, 20, 20, 0.56);
  box-shadow: 0 0 22px rgba(255, 77, 77, 0.16);
}

.status-chip--relocated {
  border-color: rgba(255, 201, 122, 0.88);
  color: #f4f6f7;
  background: rgba(123, 78, 11, 0.42);
  box-shadow: 0 0 20px rgba(255, 186, 82, 0.12);
}

.status-chip--door-sales {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--text);
  background: rgba(255, 255, 255, 0.14);
}

.show-title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(34px, 6vw, 78px);
}

.show-title-row > div:first-child {
  flex: 0 1 clamp(220px, 28vw, 340px);
  min-width: 0;
}

.show-location {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.9vw, 1.3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.show-distance-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  margin-left: 10px;
  padding: 0 9px;
  border: 1px solid color-mix(in srgb, var(--tour-accent) 66%, transparent);
  color: #ebfffb;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--tour-accent) 30%, rgba(5, 5, 5, 0.88));
}

.show-venue {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.show-time,
.show-lineup,
.show-notes {
  font-size: 0.95rem;
}

.show-time {
  color: var(--soft);
  font-weight: 800;
}

.show-lineup {
  margin-top: 6px;
}

.show-lineup-list {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 7px;
  vertical-align: middle;
}

.show-lineup-artist {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
}

.show-lineup-list--embeds {
  display: grid;
  width: min(100%, 560px);
  gap: 10px;
  margin-top: 8px;
}

.show-lineup-list--embeds .show-lineup-artist {
  display: grid;
  gap: 5px;
}

.show-lineup-list--embeds .show-lineup-name {
  color: var(--soft);
  font-weight: 800;
}

.show-lineup-separator {
  margin-left: -2px;
}

.show-lineup-player {
  display: block;
  width: 100%;
}

.show-lineup-embed {
  display: block;
  width: 100%;
  height: 82px;
  border: 0;
  border-radius: 8px;
  background: #121212;
}

.show-notes {
  margin-top: 6px;
  color: var(--soft);
}

.show-age {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: clamp(6px, 1vw, 10px);
  padding: 0 0 18px;
}

.age-image-badge,
.status-image-badge {
  width: clamp(68px, 8vw, 98px);
  height: clamp(68px, 8vw, 98px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.12));
}

.status-image-badge {
  width: clamp(54px, 6vw, 76px);
  height: clamp(54px, 6vw, 76px);
}

.status-image-badge--free-show {
  width: clamp(78px, 8.8vw, 108px);
  height: clamp(78px, 8.8vw, 108px);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.18));
}

.age-text-badge {
  display: inline-flex;
  min-width: 64px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
}

.show-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.button {
  display: inline-flex;
  min-width: 112px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.09);
  cursor: pointer;
}

.button:hover {
  border-color: var(--tour-accent);
  color: var(--text);
  background: color-mix(in srgb, var(--tour-accent) 16%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 0 18px var(--tour-glow);
}

.button--primary {
  border-color: var(--tour-accent);
  color: var(--tour-accent-text);
  background: var(--tour-accent);
  box-shadow: 0 0 22px var(--tour-glow);
}

.button--primary:hover {
  color: var(--tour-accent-text);
  background: color-mix(in srgb, var(--tour-accent) 86%, white);
}

.button:disabled,
.button[aria-disabled="true"] {
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.04);
  cursor: not-allowed;
  pointer-events: none;
}

.prismatic-button {
  display: inline-flex;
  width: fit-content;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: inherit;
  line-height: 0;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease;
}

.prismatic-button:hover,
.prismatic-button:focus-visible {
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.36));
  transform: translateY(-1px);
}

.prismatic-button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.prismatic-button img {
  display: block;
  width: 180px;
  height: auto;
}

.street-team-hero__actions .prismatic-button img {
  width: 300px;
  height: 169px;
  object-fit: contain;
}

.street-team-hero__status {
  margin: 12px 0 0;
  max-width: 760px;
  color: var(--soft);
  font-size: 0.95rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.empty-state,
.error-state {
  padding: clamp(26px, 6vw, 46px);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.56);
  color: var(--muted);
}

.empty-state h3,
.error-state h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.empty-state__button {
  margin-top: 14px;
}

.empty-state__highlight {
  color: #f1a8ff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(241, 168, 255, 0.58);
  text-underline-offset: 0.16em;
  text-shadow: 0 0 12px rgba(241, 168, 255, 0.46);
}

.empty-state__highlight:hover,
.empty-state__highlight:focus-visible {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

.tool-shell {
  margin-top: clamp(44px, 8vw, 78px);
}

.upload-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 16px;
}

.upload-panel,
.field-guide {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.56);
}

.upload-panel {
  padding: clamp(18px, 3vw, 28px);
}

.upload-drop {
  display: grid;
  gap: 8px;
  min-height: 146px;
  align-content: center;
  justify-items: center;
  padding: 22px;
  border: 1px dashed var(--line-strong);
  color: var(--text);
  text-align: center;
  cursor: pointer;
}

.upload-drop span {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
}

.upload-drop small,
.field-guide p {
  color: var(--muted);
}

#csv-file {
  width: 100%;
  margin-top: 14px;
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.field-guide {
  padding: clamp(18px, 3vw, 28px);
}

.field-guide h3 {
  margin-bottom: 8px;
  text-transform: uppercase;
}

.field-guide code {
  display: block;
  overflow-x: auto;
  padding: 14px;
  border: 1px solid var(--line);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.message-list {
  margin-top: 16px;
}

.message-list ul {
  margin: 0;
  padding-left: 20px;
}

.preview-label {
  display: block;
  margin: 22px 0 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.json-preview {
  width: 100%;
  min-height: 320px;
  padding: 16px;
  border: 1px solid var(--line);
  color: var(--text);
  font: 0.9rem/1.45 Consolas, "Courier New", monospace;
  background: rgba(0, 0, 0, 0.68);
  resize: vertical;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 78px) 0 clamp(34px, 6vw, 58px);
  color: var(--muted);
  text-align: center;
}

.footer-copy,
.footer-tagline {
  margin: 0;
}

.footer-copy {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 4vw, 28px);
  margin-top: 24px;
}

.footer-nav a {
  color: var(--text);
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--muted);
}

.footer-rule {
  width: 52px;
  height: 1px;
  margin: 46px auto 24px;
  background: var(--line);
}

.footer-tagline {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.street-team-page {
  display: grid;
  gap: clamp(38px, 6vw, 72px);
}

.street-team-hero {
  min-height: clamp(330px, 48vh, 520px);
  max-width: 980px;
}

.street-team-hero__actions,
.street-show-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(24px, 4vw, 36px);
}

.street-team-hero .eyebrow {
  color: var(--tour-kicker-color);
}

.street-team-hero h1 {
  max-width: 940px;
  font-size: clamp(2.65rem, 6.6vw, 5.8rem);
  line-height: 0.9;
}

.street-team-hero #page-copy {
  max-width: 800px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.street-team-section {
  scroll-margin-top: 24px;
}

.street-team-section .section-heading {
  align-items: start;
  margin-bottom: clamp(18px, 3vw, 26px);
}

.street-team-section .section-heading > div {
  display: grid;
  gap: 8px;
}

.street-team-section .section-heading p {
  max-width: 720px;
  line-height: 1.45;
}

.street-team-copy-band,
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 34%),
    rgba(0, 0, 0, 0.58);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.street-team-copy-band::before,
.cta-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--tour-accent);
  opacity: 0.8;
}

.street-team-copy-band:nth-of-type(2n),
.cta-panel:nth-of-type(2n) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 42%),
    rgba(5, 5, 5, 0.72);
}

.street-team-prose {
  max-width: 900px;
  color: var(--soft);
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.street-team-prose p {
  margin-bottom: 1.05em;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.68;
}

.street-team-copy-band .section-heading h2,
.cta-panel h2,
#find-your-area .section-heading h2 {
  font-size: clamp(1.7rem, 4vw, 3.25rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.street-team-copy-band .section-heading h2,
.cta-panel h2 {
  max-width: 820px;
}

.street-team-copy-band .section-heading {
  border-bottom-color: rgba(255, 255, 255, 0.28);
}

.street-team-prose p:last-child,
.cta-panel p:last-child {
  margin-bottom: 0;
}

.street-team-copy-band .street-team-prose p:first-child {
  color: var(--text);
  font-size: clamp(1.16rem, 2vw, 1.38rem);
  font-weight: 800;
  line-height: 1.42;
}

.street-team-copy-band .street-team-prose p:last-child {
  color: var(--text);
}

.street-team-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.street-team-purpose-grid .street-team-copy-band {
  min-height: 100%;
}

.street-team-perks {
  position: relative;
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.48)),
    rgba(0, 0, 0, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.street-team-perks::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--tour-accent);
}

.street-team-perks h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 3.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.street-team-perks .street-team-prose {
  max-width: 980px;
}

.street-team-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
  gap: clamp(18px, 4vw, 32px);
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.56);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.street-team-feature h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.street-team-feature p:not(.eyebrow) {
  max-width: 100%;
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.street-team-feature__image-link {
  display: block;
  width: min(100%, 760px);
  justify-self: center;
  cursor: zoom-in;
}

.street-team-oath-section {
  width: 100%;
}

.street-team-oath-link {
  display: block;
  width: 100%;
  cursor: zoom-in;
}

.street-team-feature img {
  width: 100%;
  border: 1px solid var(--line);
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.street-team-oath-link img {
  width: 100%;
  border: 1px solid var(--line-strong);
  object-fit: contain;
  background: #050505;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.artwork-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 32px);
  background: rgba(0, 0, 0, 0.9);
}

.artwork-modal[hidden] {
  display: none;
}

.artwork-modal img {
  max-width: calc(100vw - clamp(28px, 6vw, 64px));
  max-height: calc(100vh - clamp(28px, 6vw, 64px));
  object-fit: contain;
  border: 1px solid var(--line-strong);
  background: #050505;
}

.artwork-modal__close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}

body.has-artwork-modal {
  overflow: hidden;
}

.state-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 0 0 30px;
}

.state-selector--compact {
  display: flex;
  overflow-x: auto;
  padding-bottom: 6px;
}

.state-button {
  position: relative;
  display: grid;
  min-height: 238px;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  gap: 12px;
  padding: 20px 16px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 44%),
    rgba(0, 0, 0, 0.46);
  cursor: pointer;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}

.state-selector--compact .state-button {
  flex: 0 0 220px;
}

.state-button img {
  width: clamp(156px, 17vw, 190px);
  height: clamp(156px, 17vw, 190px);
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(111, 185, 255, 0.2));
}

.state-button small {
  display: block;
  text-align: center;
}

.state-button small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.state-button:hover,
.state-button[aria-pressed="true"] {
  border-color: color-mix(in srgb, var(--tour-accent) 58%, var(--line-strong));
  color: var(--text);
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--tour-accent) 18%, transparent), transparent 48%),
    rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 32px var(--tour-glow),
    0 22px 62px rgba(0, 0, 0, 0.3);
}

.state-button[aria-pressed="true"]::after {
  position: absolute;
  inset: auto 14px 10px;
  height: 3px;
  content: "";
  background: var(--tour-accent);
}

.street-team-shows {
  display: grid;
  gap: 18px;
}

.market-section {
  display: grid;
  gap: 12px;
}

.market-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.market-heading h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.market-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.market-heading--action {
  display: block;
  padding-bottom: 0;
}

.market-toggle {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  font: inherit;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075), transparent 52%),
    rgba(0, 0, 0, 0.52);
  cursor: pointer;
}

.market-toggle:hover,
.market-toggle[aria-expanded="true"] {
  border-color: color-mix(in srgb, var(--tour-accent) 58%, var(--line-strong));
  background: color-mix(in srgb, var(--tour-accent) 14%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 0 22px var(--tour-glow);
}

.market-toggle strong,
.market-toggle small {
  display: block;
}

.market-toggle strong {
  font-size: clamp(1.18rem, 2.7vw, 1.85rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.market-toggle small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.market-toggle__cue {
  display: inline-grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
}

.market-panel {
  display: grid;
  gap: 16px;
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(0, 0, 0, 0.28);
}

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

.market-show-list {
  display: grid;
  gap: 12px;
}

.area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-show-list {
  display: grid;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.street-show-card {
  display: grid;
  gap: 12px;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.street-show-card:hover {
  border-color: var(--line-strong);
  background: var(--surface-strong);
}

.street-show-card--cancelled {
  border-color: rgba(255, 109, 109, 0.62);
}

.street-show-card--compact {
  gap: 6px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
  backdrop-filter: none;
}

.street-show-card--target {
  position: relative;
  border-color: color-mix(in srgb, var(--tour-accent) 82%, white);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--tour-accent) 18%, transparent), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--tour-accent) 42%, transparent),
    0 0 28px var(--tour-glow);
}

.street-show-card--target::after {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--tour-accent) 68%, transparent);
  color: #ebfffb;
  content: "Matched Show";
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--tour-accent) 34%, rgba(5, 5, 5, 0.9));
}

.street-show-card--target:focus {
  outline: 2px solid color-mix(in srgb, var(--tour-accent) 82%, white);
  outline-offset: 4px;
}

.street-show-card__main {
  display: grid;
  grid-template-columns: minmax(68px, 0.12fr) minmax(0, 1fr) auto;
  gap: clamp(14px, 3vw, 26px);
  align-items: start;
}

.street-show-card__date {
  display: grid;
  justify-items: start;
  min-width: 62px;
  padding-right: 14px;
  border-right: 1px solid var(--line);
  font-weight: 800;
  text-transform: uppercase;
}

.street-show-card__date span {
  color: var(--muted);
  font-size: 0.76rem;
}

.street-show-card__date strong {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95;
}

.street-show-card--compact .street-show-card__main {
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 10px;
}

.street-show-card--compact .street-show-card__date {
  min-width: 0;
  padding-right: 10px;
}

.street-show-card--compact .street-show-card__date span {
  font-size: 0.64rem;
}

.street-show-card--compact .street-show-card__date strong {
  font-size: 1.55rem;
}

.street-show-card__body {
  min-width: 0;
}

.street-show-card__body h4 {
  margin: 0 0 6px;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1;
  text-transform: uppercase;
}

.street-show-card--compact .street-show-card__body h4 {
  margin-bottom: 3px;
  color: var(--text);
  font-size: clamp(1.22rem, 2.6vw, 1.65rem);
  letter-spacing: 0;
}

.street-show-card--compact .show-location,
.street-show-card--compact .show-time {
  font-size: 0.86rem;
}

.street-show-card__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.street-show-card--compact .street-show-card__meta {
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.street-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.street-icon-badge--link {
  transition: transform 160ms ease, filter 160ms ease;
}

.street-icon-badge--link:hover {
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.35));
  transform: translateY(-1px);
}

.street-icon-badge img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.street-icon-badge--ticket img {
  width: 180px;
  height: auto;
}

.street-text-badge {
  display: inline-flex;
  align-self: center;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
}

.street-text-badge--door-sales {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--text);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.05);
}

.street-show-card--compact .street-show-card__actions {
  margin: -2px 0 0 64px;
}

.street-show-resources {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.street-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.street-action-item {
  display: grid;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.34);
}

.street-action-item strong,
.street-action-item span {
  display: block;
}

.street-action-item strong {
  color: var(--text);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.street-action-item span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.street-card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  color: #74f7ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: underline;
  text-transform: uppercase;
}

.street-card-link:hover {
  color: #ff5bd6;
}

.text-link {
  display: inline-flex;
  min-height: 0;
  align-items: center;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--text);
}

.street-show-card .show-flags:empty {
  display: none;
}

.show-downloads {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.show-downloads h5 {
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.download-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.download-grid--tiny {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.download-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.46);
}

.download-card:hover {
  border-color: color-mix(in srgb, var(--tour-accent) 58%, var(--line-strong));
  box-shadow: 0 0 20px var(--tour-glow);
}

.download-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 0.72;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.06);
}

.download-card__body {
  display: grid;
  align-content: start;
  align-self: start;
  justify-items: start;
  gap: 6px;
  padding: 10px;
}

.download-card h4 {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.download-card p,
.street-team-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.street-team-note--inline {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.06);
}

.download-card__hint {
  color: var(--soft);
  font-size: 0.8rem;
  line-height: 1.35;
}

.download-card .button {
  width: fit-content;
  min-width: 118px;
  min-height: 32px;
  margin-top: 2px;
  font-size: 0.68rem;
}

.download-card .prismatic-button {
  margin-top: 6px;
}

.download-card .prismatic-button img {
  width: 180px;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
}

.caption-generator {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  gap: 10px;
  justify-items: stretch;
  padding: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.44);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.caption-generator > * {
  min-width: 0;
}

.caption-generator h5 {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.caption-generator__subtext,
.caption-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.caption-platform-buttons,
.caption-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.caption-platform-buttons .button,
.caption-actions .button {
  position: relative;
  min-width: 0;
  min-height: 36px;
  overflow: hidden;
  padding: 0 12px;
  font-size: 0.68rem;
  isolation: isolate;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.caption-platform-buttons .button::before,
.caption-actions .button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.16;
  background: linear-gradient(135deg, var(--button-glow, #ffffff), transparent 58%);
  transition: opacity 160ms ease;
}

.caption-platform-buttons .button:hover,
.caption-platform-buttons .button:focus-visible,
.caption-actions .button:hover,
.caption-actions .button:focus-visible {
  border-color: var(--button-glow, var(--accent));
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 20px color-mix(in srgb, var(--button-glow, #ffffff) 34%, transparent);
  transform: translateY(-1px);
}

.caption-platform-buttons .button:hover::before,
.caption-platform-buttons .button:focus-visible::before,
.caption-actions .button:hover::before,
.caption-actions .button:focus-visible::before {
  opacity: 0.32;
}

.caption-platform-button--instagram {
  --button-glow: #ff5bd6;
}

.caption-platform-button--tiktok {
  --button-glow: #25f4ee;
}

.caption-platform-button--facebook {
  --button-glow: #7bb6ff;
}

.caption-platform-button--general {
  --button-glow: #f5f5f5;
}

.caption-platform-button[aria-pressed="true"] {
  border-color: var(--button-glow, var(--accent));
  color: #050505;
  background: var(--button-glow, var(--accent));
  box-shadow: 0 0 22px color-mix(in srgb, var(--button-glow, #ffffff) 42%, transparent);
}

.caption-platform-button[aria-pressed="true"]::before {
  opacity: 0;
}

.caption-actions .button--primary {
  --button-glow: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 24px rgba(255, 255, 255, 0.12);
}

.caption-actions .generate-caption-button {
  --button-glow: #ffe073;
}

.caption-actions .native-share-button {
  --button-glow: #74f7ff;
}

.caption-actions .open-platform-button {
  --button-glow: #ff8fdc;
}

.caption-output {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 218px;
  padding: 13px 14px;
  resize: vertical;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--text);
  font: 0.92rem/1.48 "Trebuchet MS", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0;
  white-space: pre-wrap;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.52),
    inset 0 18px 38px rgba(0, 0, 0, 0.18);
}

.caption-output:focus {
  outline: 2px solid rgba(255, 255, 255, 0.36);
  outline-offset: 2px;
}

.caption-status {
  min-height: 1.3em;
  color: var(--soft);
}

.cta-panel {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.cta-panel p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--soft);
}

.cta-panel--primary {
  border-color: var(--line-strong);
  background: rgba(12, 13, 15, 0.82);
}

.button:focus-visible,
.prismatic-button:focus-visible,
.site-nav a:focus-visible,
.state-button:focus-visible,
.footer-nav a:focus-visible {
  outline: 2px solid var(--tour-accent);
  outline-offset: 3px;
}

body[data-widget="compact"] {
  min-height: auto;
  background: transparent;
}

body[data-widget="compact"]::before {
  display: none;
}

body[data-widget="compact"] .widget-main {
  width: 100%;
  margin: 0;
  padding: clamp(12px, 2.8vw, 24px);
}

body[data-widget="compact"] .widget-shell {
  margin: 0;
}

body[data-widget="compact"] .widget-count {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

body[data-widget="compact"] .show-card {
  grid-template-columns: minmax(74px, max-content) minmax(260px, 680px) auto;
  justify-content: start;
  min-height: 112px;
  padding: clamp(12px, 2vw, 18px);
  gap: clamp(14px, 3vw, 26px);
}

body[data-widget="compact"] .show-day {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

body[data-widget="compact"] .show-venue {
  font-size: clamp(1rem, 2.1vw, 1.35rem);
}

body[data-widget="compact"] .show-location {
  font-size: clamp(0.86rem, 1.7vw, 1.05rem);
}

body[data-widget="compact"] .show-age {
  padding-bottom: 2px;
}

body[data-widget="compact"] .button {
  min-width: 104px;
}

body[data-widget="compact"] .show-actions {
  grid-column: 3;
  align-self: center;
  justify-content: flex-start;
  margin-top: 0;
}

body[data-widget="compact"] .widget-footer {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  padding-top: 6px;
}

body[data-widget="compact"] .widget-footer[hidden] {
  display: none;
}

body[data-widget="compact"] .widget-all-link {
  min-width: min(100%, 220px);
}

@media (max-width: 760px) {
  body[data-page="street-team"] {
    overflow-x: hidden;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    align-items: stretch;
  }

  .site-nav a {
    flex: 1;
  }

  .site-nav a {
    padding-inline: 8px;
    font-size: 0.72rem;
  }

  .site-main {
    padding-top: 12px;
  }

  .intro {
    min-height: clamp(150px, 24vh, 230px);
    padding: 8px 0 12px;
  }

  .show-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 12px 14px;
    min-height: 0;
    padding: 16px;
  }

  .year-summary {
    min-height: 46px;
    padding: 0 12px;
  }

  .year-shows {
    gap: 8px;
    padding: 0 8px 8px;
  }

  .show-date {
    grid-row: 1;
    grid-column: 1;
    min-width: 54px;
    padding: 0 12px 0 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .show-day {
    font-size: 2.25rem;
  }

  .show-month,
  .show-year {
    font-size: 0.68rem;
  }

  .show-details {
    grid-row: 1;
    grid-column: 2;
    min-width: 0;
  }

  .show-title-row {
    align-items: start;
    gap: 8px;
  }

  .show-title-row > div:first-child {
    flex-basis: auto;
  }

  .show-location {
    font-size: 0.86rem;
  }

  .show-venue {
    margin: 0 0 5px;
    font-size: 1rem;
  }

  .show-time,
  .show-lineup,
  .show-notes {
    font-size: 0.84rem;
  }

  .show-flags {
    margin-bottom: 6px;
    gap: 6px;
  }

  .status-chip {
    min-height: 24px;
    padding: 0 9px;
    font-size: 0.66rem;
  }

  .show-lineup,
  .show-notes {
    margin-top: 4px;
  }

  .show-age {
    margin-left: auto;
    justify-content: flex-end;
    padding: 0 0 6px 10px;
  }

  .show-actions {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 6px;
    margin-top: 4px;
  }

  .button {
    flex: 1;
    min-height: 34px;
    min-width: 0;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .button--primary {
    flex-basis: 100%;
  }

  .age-image-badge,
  .status-image-badge {
    width: 52px;
    height: 52px;
  }

  .status-image-badge--free-show {
    width: 62px;
    height: 62px;
  }

  .age-text-badge {
    min-width: 48px;
    min-height: 32px;
    padding: 0 8px;
    font-size: 0.76rem;
  }

  .show-status {
    margin-bottom: 6px;
    font-size: 0.66rem;
  }

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

  .site-footer {
    padding-top: 36px;
  }

  .footer-nav {
    gap: 18px;
    margin-top: 18px;
  }

  .footer-rule {
    margin: 32px auto 18px;
  }

  .street-team-page {
    gap: 28px;
  }

  .street-team-hero {
    min-height: 0;
    padding-top: 0;
  }

  .street-team-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.6rem);
    line-height: 0.92;
  }

  .street-team-hero #page-copy {
    font-size: 1rem;
    line-height: 1.42;
  }

  .street-team-hero__actions,
  .street-show-card__actions {
    align-items: stretch;
  }

  .street-team-hero__actions {
    width: 100%;
    justify-content: flex-start;
    gap: 6px 10px;
  }

  .street-team-hero__actions .prismatic-button {
    flex: 0 1 160px;
    max-width: 160px;
  }

  .street-team-hero__actions .prismatic-button img {
    width: 160px;
    height: auto;
  }

  .prismatic-button img,
  .download-card .prismatic-button img,
  .street-icon-badge--ticket img {
    width: 150px;
  }

  .street-team-hero__actions .button,
  .street-show-card__actions .button {
    flex: 1 1 100%;
  }

  .street-team-copy-band,
  .cta-panel {
    padding: 16px;
  }

  .street-team-perks {
    padding: 16px;
  }

  .street-team-perks h2 {
    font-size: clamp(1.75rem, 9vw, 2.55rem);
  }

  .street-team-feature {
    padding: 16px;
  }

  .street-team-feature h2 {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  .street-team-feature p:not(.eyebrow),
  .street-team-prose p,
  .cta-panel p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .street-team-purpose-grid,
  .street-team-feature {
    grid-template-columns: 1fr;
  }

  .street-team-feature__image-link {
    width: 100%;
    justify-self: start;
  }

  .street-team-section .section-heading {
    display: grid;
    align-items: start;
  }

  .state-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow-x: visible;
    padding-bottom: 0;
    margin-bottom: 20px;
  }

  .state-button {
    min-width: 0;
    min-height: 142px;
    padding: 8px 6px 10px;
    gap: 8px;
  }

  .state-button img {
    width: min(100%, 104px);
    height: min(28vw, 104px);
  }

  .state-button small {
    font-size: 0.7rem;
    line-height: 1.15;
  }

  .market-heading {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .market-toggle {
    min-height: 54px;
    padding: 10px;
  }

  .market-panel {
    padding: 8px;
  }

  .street-show-card__main {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 14px;
  }

  .street-show-card__meta {
    grid-column: 2;
    justify-content: flex-start;
  }

  .street-icon-badge img {
    width: 88px;
    height: 88px;
  }

  .street-icon-badge--ticket img {
    width: 150px;
    height: auto;
  }

  .street-action-grid {
    grid-template-columns: 1fr;
  }

  .caption-platform-buttons,
  .caption-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .caption-platform-buttons .button,
  .caption-actions .button {
    width: 100%;
  }

  .caption-output {
    min-height: 210px;
  }

  .street-show-card__date {
    min-width: 54px;
  }

  .download-grid,
  .download-grid--compact {
    grid-template-columns: 1fr;
  }

  .download-card {
    grid-template-columns: minmax(96px, 0.34fr) minmax(0, 1fr);
  }

  .download-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 0.72;
  }

  .download-card__body {
    min-width: 0;
    padding: 10px 8px;
  }

  .download-card h4,
  .download-card p {
    overflow-wrap: anywhere;
  }

  body[data-widget="compact"] .show-card {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 0;
    padding: 12px;
  }

  body[data-widget="compact"] .show-age {
    padding: 0 0 2px;
  }

  body[data-widget="compact"] .show-actions {
    grid-column: 1 / -1;
    margin-top: 4px;
  }

  body[data-widget="compact"] .widget-all-link {
    width: 100%;
  }
}

body[data-page="street-team"] .street-team-copy-band .section-heading h2,
body[data-page="street-team"] .cta-panel h2,
body[data-page="street-team"] #find-your-area .section-heading h2 {
  font-size: clamp(1.7rem, 4vw, 3.25rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

body[data-page="street-team"] .market-toggle strong {
  font-size: clamp(1.18rem, 2.7vw, 1.85rem);
  line-height: 0.98;
}

@media (max-width: 760px) {
  body[data-page="street-team"] .street-team-copy-band .section-heading h2,
  body[data-page="street-team"] .cta-panel h2,
  body[data-page="street-team"] #find-your-area .section-heading h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.45rem);
  }
}

@media (prefers-reduced-data: reduce) {
  .background-video {
    display: none;
  }

  body::before {
    z-index: -2;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.88) 58%, #020202),
      url("assets/oathbound-video-poster.png") center 22vh / min(560px, 86vw) auto no-repeat,
      #020202;
  }
}

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

  .background-video {
    display: none;
  }
}

html[data-tour-theme="myspace"] {
  --bg: #050007;
  --text: #fff9ff;
  --muted: #c8d8d6;
  --soft: #f2f4ef;
  --line: rgba(235, 119, 221, 0.82);
  --line-strong: rgba(187, 210, 226, 0.96);
  --surface: rgba(8, 13, 13, 0.78);
  --surface-strong: rgba(18, 13, 22, 0.9);
  --accent: #30f0c0;
  --danger: #ff4fa6;
  --myspace-display-font: "Bitcount Single", "Lucida Console", Monaco, monospace;
  --myspace-address-font: "Lucida Console", Monaco, "Andale Mono", "Courier New", monospace;
}

html[data-tour-theme="myspace"] body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 6%, rgba(255, 90, 226, 0.28), transparent 24rem),
    radial-gradient(circle at 90% 18%, rgba(101, 126, 255, 0.24), transparent 26rem),
    #050007;
  font-family: "Trebuchet MS", "Arial Narrow", Arial, sans-serif;
}

.myspace-emoji-rain {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.myspace-emoji-rain span {
  position: absolute;
  top: -12vh;
  left: var(--emoji-x);
  display: block;
  font-size: var(--emoji-size);
  line-height: 1;
  opacity: 0.42;
  filter: drop-shadow(2px 2px 0 rgba(238, 85, 199, 0.64)) drop-shadow(-1px -1px 0 rgba(188, 239, 248, 0.54));
  transform: translate3d(0, -12vh, 0) rotate(-14deg);
  animation: myspaceEmojiRain var(--emoji-duration) linear var(--emoji-delay) infinite;
  will-change: transform;
}

@keyframes myspaceEmojiRain {
  0% {
    transform: translate3d(0, -14vh, 0) rotate(-18deg);
  }

  50% {
    transform: translate3d(var(--emoji-drift), 54vh, 0) rotate(10deg);
  }

  100% {
    transform: translate3d(calc(var(--emoji-drift) * -0.45), 112vh, 0) rotate(22deg);
  }
}

html[data-tour-theme="myspace"] body::before {
  z-index: -5;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.5)),
    url("assets/ob-x-ps-blank-flyer.jpeg") center top / cover no-repeat fixed,
    #050007;
  filter: saturate(1.12) contrast(1.08);
}

html[data-tour-theme="myspace"] body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.24) 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 86% 62%, rgba(102, 255, 210, 0.22) 0 0.22rem, transparent 0.24rem);
  mix-blend-mode: screen;
  opacity: 0.72;
}

html[data-tour-theme="myspace"] .background-video {
  display: none;
}

html[data-tour-theme="myspace"] .background-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.82)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42) 52%, rgba(0, 0, 0, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 96, 221, 0.12) 0 2px, transparent 2px 14px);
}

@media (prefers-reduced-motion: reduce) {
  .myspace-emoji-rain span {
    top: auto;
    bottom: var(--emoji-x);
    animation: none;
  }
}

.myspace-theme .site-header {
  position: relative;
  --myspace-logo-panel: clamp(250px, 29vw, 350px);
  display: grid;
  grid-template-columns: var(--myspace-logo-panel) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "brand title"
    "brand nav";
  width: min(calc(100% - 28px), 1210px);
  margin-top: 14px;
  min-height: 190px;
  padding: 10px 126px 10px 12px;
  column-gap: clamp(18px, 3vw, 36px);
  row-gap: 18px;
  border: 3px solid #b9c9dc;
  border-radius: 6px;
  background: linear-gradient(90deg, #ee9be9 0 var(--myspace-logo-panel), #bceff8 var(--myspace-logo-panel) 100%);
  box-shadow:
    0 0 0 3px #111,
    8px 8px 0 rgba(238, 85, 199, 0.58),
    0 0 34px rgba(234, 55, 221, 0.44);
}

.myspace-theme .site-header::before {
  position: absolute;
  top: 8px;
  right: 14px;
  color: #050505;
  content: "_  []  X";
  font: 900 1.45rem/1 Consolas, "Courier New", monospace;
}

.myspace-theme .tour-window-title {
  grid-area: title;
  align-self: start;
  justify-self: start;
  display: block;
  margin: 0;
  max-width: 100%;
  color: #050505;
  font: 700 clamp(0.95rem, 1.9vw, 1.45rem)/1 var(--myspace-address-font);
  text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.62),
    0 0 8px rgba(238, 85, 199, 0.42);
  white-space: normal;
}

.myspace-theme .brand {
  grid-area: brand;
  align-self: stretch;
  justify-self: stretch;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 5px 12px;
  border: 2px solid #050505;
  border-radius: 22px;
  background: rgba(12, 17, 15, 0.9);
}

.myspace-theme .brand img {
  width: min(86%, 250px);
  object-fit: contain;
  filter:
    drop-shadow(2px 2px 0 #050505)
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.72));
}

.myspace-theme .site-nav {
  grid-area: nav;
  align-self: center;
  justify-self: center;
  margin: 0;
  border: 2px solid #050505;
  border-radius: 20px;
  background: #c9f8ff;
  box-shadow: inset 0 -4px 0 #ef9eea;
}

.myspace-theme .site-nav a {
  min-height: 34px;
  border-radius: 15px;
  color: #050505;
  font-family: Consolas, "Courier New", monospace;
  text-transform: none;
}

.myspace-theme .site-nav a[aria-current="page"],
.myspace-theme .site-nav a:hover {
  border-color: #050505;
  color: #050505;
  background: #f09bee;
}

html[data-tour-theme="myspace"] .site-main {
  width: min(calc(100% - 28px), 1210px);
}

html[data-tour-theme="myspace"] .intro {
  position: relative;
  max-width: none;
  min-height: clamp(260px, 40vh, 440px);
  margin-top: 26px;
  padding: clamp(28px, 6vw, 74px);
  border: 4px solid #bfd0df;
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(10, 15, 13, 0.88), rgba(11, 13, 14, 0.58)),
    radial-gradient(circle at 90% 20%, rgba(238, 82, 208, 0.22), transparent 18rem);
  box-shadow:
    inset 0 0 0 4px rgba(0, 0, 0, 0.64),
    0 0 38px rgba(235, 58, 222, 0.48);
}

html[data-tour-theme="myspace"] .intro::before,
html[data-tour-theme="myspace"] .intro::after {
  position: absolute;
  z-index: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 1;
  content: "\2726";
  text-shadow:
    0 0 10px #f7b6ec,
    0 0 22px #ea3bce;
}

html[data-tour-theme="myspace"] .intro::before {
  top: 26px;
  left: 24px;
}

html[data-tour-theme="myspace"] .intro::after {
  right: 24px;
  bottom: -4px;
}

html[data-tour-theme="myspace"] .eyebrow {
  position: relative;
  z-index: 1;
  margin-left: 48px;
  color: #f5f5f2;
  font: 700 1rem/1 var(--myspace-address-font);
  text-transform: none;
  text-shadow:
    2px 2px 0 #050505,
    0 0 12px #ee55c7;
}

html[data-tour-theme="myspace"] h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #fff9ff;
  font-family: var(--myspace-display-font);
  font-weight: 900;
  font-size: clamp(3.35rem, 10.8vw, 8.15rem);
  line-height: 0.8;
  transform: skew(-5deg) rotate(-1deg);
  letter-spacing: 0;
  font-variation-settings: "wght" 900;
  text-shadow:
    3px 3px 0 #050505,
    6px 6px 0 #050505,
    -3px 0 0 #ef5bd1,
    3px 0 0 #ef5bd1,
    0 3px 0 #ef5bd1,
    0 0 12px #fff,
    0 0 24px #ef5bd1,
    0 0 46px #b92ac4;
  -webkit-text-stroke: 1.5px #fff;
}

html[data-tour-theme="myspace"] h1 span {
  display: block;
  margin-top: 0.22em;
  color: #28efbf;
  font: 800 clamp(1.35rem, 4vw, 3.15rem)/0.96 var(--myspace-address-font);
  text-transform: none;
  -webkit-text-stroke: 1px #050505;
  text-shadow:
    2px 2px 0 #050505,
    4px 4px 0 #f36ac7,
    -2px -1px 0 #050505,
    0 0 18px rgba(40, 239, 191, 0.58);
}

html[data-tour-theme="myspace"] .intro #page-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: #f5f5f2;
  font: 700 clamp(1rem, 2vw, 1.3rem)/1.35 var(--myspace-address-font);
  text-shadow:
    2px 2px 0 #050505,
    0 0 10px rgba(255, 255, 255, 0.24);
}

html[data-tour-theme="myspace"] .tour-finder {
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

html[data-tour-theme="myspace"] .tour-finder__status {
  color: #f5f5f2;
  font-family: Consolas, "Courier New", monospace;
  text-shadow:
    1px 1px 0 #050505,
    0 0 8px rgba(40, 239, 191, 0.34);
}

html[data-tour-theme="myspace"] .shows-shell {
  margin-top: 26px;
  border: 4px solid #050505;
  border-radius: 24px 24px 7px 7px;
  background: linear-gradient(#ee9be9 0 58px, #bceff8 58px 112px, rgba(8, 12, 13, 0.84) 112px);
  box-shadow:
    0 0 0 3px #c9e7ef,
    10px 10px 0 rgba(102, 127, 255, 0.46),
    0 0 42px rgba(235, 60, 215, 0.38);
}

html[data-tour-theme="myspace"] .section-heading {
  min-height: 112px;
  align-items: end;
  margin: 0;
  padding: 62px 20px 14px;
  border-bottom: 4px solid #050505;
  color: #050505;
}

html[data-tour-theme="myspace"] .section-heading h2,
html[data-tour-theme="myspace"] .section-heading p {
  color: #050505;
  font-family: Consolas, "Courier New", monospace;
  text-transform: none;
}

html[data-tour-theme="myspace"] .shows-list {
  gap: 14px;
  padding: 18px;
}

html[data-tour-theme="myspace"] .show-card {
  overflow: hidden;
  border: 3px solid #050505;
  border-radius: 5px;
  background:
    linear-gradient(rgba(10, 15, 13, 0.86), rgba(10, 15, 13, 0.86)),
    url("assets/ob-x-ps-blank-flyer.jpeg") center / cover no-repeat;
  box-shadow:
    inset 0 0 0 2px rgba(187, 210, 226, 0.62),
    5px 5px 0 #ee55c7;
  backdrop-filter: blur(2px);
}

html[data-tour-theme="myspace"] .show-card::before {
  position: absolute;
  top: 10px;
  right: 12px;
  color: rgba(255, 255, 255, 0.4);
  content: "View my Pics | Vids";
  font: 700 0.82rem/1 Consolas, "Courier New", monospace;
}

html[data-tour-theme="myspace"] .show-card:hover,
html[data-tour-theme="myspace"] .show-card--next {
  border-color: #b9c9dc;
  background:
    linear-gradient(rgba(12, 13, 17, 0.8), rgba(12, 13, 17, 0.8)),
    url("assets/ob-x-ps-blank-flyer.jpeg") center / cover no-repeat;
  box-shadow:
    inset 0 0 0 2px #ee55c7,
    5px 5px 0 #28efbf,
    0 0 34px rgba(238, 85, 199, 0.42);
}

html[data-tour-theme="myspace"] .show-card--target,
html[data-tour-theme="myspace"] .myspace-show-card.show-card--target {
  border-color: #28efbf;
  box-shadow:
    inset 0 0 0 2px #28efbf,
    5px 5px 0 #667fff,
    0 0 34px rgba(40, 239, 191, 0.58);
}

html[data-tour-theme="myspace"] .show-card--target::after {
  border: 2px solid #050505;
  color: #050505;
  content: "Your Town";
  background: #28efbf;
  box-shadow: 3px 3px 0 #ee55c7;
}

html[data-tour-theme="myspace"] .show-distance-badge {
  border: 2px solid #050505;
  color: #050505;
  background: #28efbf;
  box-shadow: 3px 3px 0 #ee55c7;
}

html[data-tour-theme="myspace"] .show-date {
  border-right: 3px solid #ee55c7;
}

html[data-tour-theme="myspace"] .show-month,
html[data-tour-theme="myspace"] .show-year,
html[data-tour-theme="myspace"] .show-status {
  color: #f5f5f2;
  font-family: Consolas, "Courier New", monospace;
  text-shadow:
    2px 2px 0 #050505,
    0 0 10px rgba(238, 85, 199, 0.58);
}

html[data-tour-theme="myspace"] .show-day {
  color: #fff9ff;
  text-shadow:
    2px 2px 0 #050505,
    -2px 0 0 #ee55c7,
    0 0 16px #ee55c7;
}

html[data-tour-theme="myspace"] .show-venue {
  color: #28efbf;
  -webkit-text-stroke: 0.5px #050505;
  text-shadow:
    2px 2px 0 #050505,
    3px 3px 0 #ee55c7,
    0 0 12px rgba(40, 239, 191, 0.42);
}

html[data-tour-theme="myspace"] .show-location,
html[data-tour-theme="myspace"] .show-time,
html[data-tour-theme="myspace"] .show-lineup,
html[data-tour-theme="myspace"] .show-notes {
  color: #f5f5f2;
  text-shadow:
    1px 1px 0 #050505,
    0 0 8px rgba(255, 255, 255, 0.18);
}

html[data-tour-theme="myspace"] .status-chip,
html[data-tour-theme="myspace"] .age-text-badge {
  border: 2px solid #050505;
  border-radius: 0;
  color: #050505;
  background: #bceff8;
  box-shadow: 3px 3px 0 #ee55c7;
}

html[data-tour-theme="myspace"] .age-image-badge {
  filter: drop-shadow(4px 4px 0 #ee55c7) drop-shadow(-2px -2px 0 #bceff8);
}

html[data-tour-theme="myspace"] .button {
  min-height: 40px;
  border: 3px solid #050505;
  border-radius: 18px;
  color: #050505;
  font-family: Consolas, "Courier New", monospace;
  text-transform: none;
  background: #bceff8;
  box-shadow: 4px 4px 0 #ee55c7;
}

html[data-tour-theme="myspace"] .button--primary,
html[data-tour-theme="myspace"] .button:hover {
  color: #050505;
  background: #28efbf;
  box-shadow: 4px 4px 0 #667fff, 0 0 18px rgba(40, 239, 191, 0.58);
}

html[data-tour-theme="myspace"] .empty-state,
html[data-tour-theme="myspace"] .error-state {
  border: 3px solid #050505;
  color: #050505;
  background: #bdf8ff;
  box-shadow: 5px 5px 0 #ff75d8;
}

html[data-tour-theme="myspace"] .empty-state h3,
html[data-tour-theme="myspace"] .error-state h3,
html[data-tour-theme="myspace"] .empty-state p,
html[data-tour-theme="myspace"] .error-state p {
  color: #050505;
}

html[data-tour-theme="myspace"] .site-footer {
  color: #fff;
  text-shadow: 2px 2px 0 #050505;
}

html[data-tour-theme="myspace"] .footer-nav a {
  color: #bdf8ff;
}

@media (max-width: 760px) {
  .tour-finder {
    align-items: stretch;
    flex-direction: column;
  }

  .tour-finder__button {
    width: 100%;
  }

  .tour-finder__status {
    max-width: none;
  }

  .show-distance-badge {
    margin: 7px 0 0;
  }

  .myspace-theme .site-header {
    --myspace-logo-panel: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "brand"
      "title"
      "nav";
    min-height: 0;
    gap: 12px;
    padding: 48px 12px 12px;
    background: linear-gradient(180deg, #ee9be9 0 156px, #bceff8 156px 100%);
  }

  .myspace-theme .site-header::before {
    top: 12px;
    right: 16px;
    font-size: 1.25rem;
  }

  .myspace-theme .brand {
    min-height: 96px;
    max-height: 126px;
  }

  .myspace-theme .brand img {
    width: min(72%, 230px);
  }

  .myspace-theme .tour-window-title {
    justify-self: start;
    max-width: calc(100% - 18px);
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .myspace-theme .site-nav {
    justify-self: stretch;
    width: 100%;
    margin: 0;
  }

  html[data-tour-theme="myspace"] .intro {
    min-height: 250px;
    padding: 28px 18px;
  }

  html[data-tour-theme="myspace"] .intro::before,
  html[data-tour-theme="myspace"] .intro::after {
    font-size: 4.2rem;
  }

  html[data-tour-theme="myspace"] h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  html[data-tour-theme="myspace"] h1 span {
    font-size: clamp(1.08rem, 7vw, 2rem);
  }

  html[data-tour-theme="myspace"] .shows-shell {
    border-radius: 18px 18px 7px 7px;
  }

  html[data-tour-theme="myspace"] .section-heading {
    min-height: 104px;
    padding: 60px 12px 12px;
  }

  html[data-tour-theme="myspace"] .shows-list {
    padding: 12px;
  }

  html[data-tour-theme="myspace"] .show-card {
    box-shadow:
      inset 0 0 0 2px rgba(189, 248, 255, 0.58),
      3px 3px 0 #ff75d8;
  }

  html[data-tour-theme="myspace"] .show-card::before {
    display: none;
  }

  html[data-tour-theme="myspace"] .show-date {
    border-right-width: 2px;
  }
}

.myspace-theme body {
  color: #111;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 12px 12px, rgba(255, 98, 218, 0.42) 0 3px, transparent 4px),
    linear-gradient(45deg, rgba(0, 0, 0, 0.9) 25%, transparent 25% 50%, rgba(0, 0, 0, 0.9) 50% 75%, transparent 75%),
    #18001f;
  background-size: 28px 28px, 18px 18px, auto;
}

.myspace-theme body::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72)),
    url("assets/ob-x-ps-blank-flyer.jpeg") center top / cover no-repeat fixed,
    #050007;
  filter: saturate(1.18) contrast(1.08);
}

.myspace-theme .site-header,
.myspace-theme .intro::before,
.myspace-theme .intro::after {
  display: none;
}

.myspace-theme .site-main {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), 1280px);
  padding: 12px 0 52px;
}

.myspace-theme #myspace-upcoming-shows,
.myspace-theme #myspace-latest-blog,
.myspace-theme #myspace-friend-space,
.myspace-theme #myspace-friends-comments {
  scroll-margin-top: 16px;
}

.myspace-topbar {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 3px solid #030303;
  border-radius: 4px 4px 0 0;
  background: #07115a;
  box-shadow: 7px 7px 0 #ee61cd, 0 0 28px rgba(238, 97, 205, 0.5);
  font-family: Arial, Helvetica, sans-serif;
}

.myspace-topbar__upper {
  position: relative;
  display: grid;
  grid-template-columns: 198px minmax(260px, 1fr) minmax(180px, 300px) auto;
  grid-template-areas:
    "brand mini search google";
  align-items: end;
  gap: 8px;
  min-height: 78px;
  padding: 9px 10px 9px 18px;
  background:
    linear-gradient(90deg, #063d9c, #082f85 62%, #061c66),
    #063d9c;
}

.myspace-topbar__brand {
  grid-area: brand;
  display: inline-grid;
  align-self: end;
  color: #fff;
  font: 900 1.55rem/0.95 Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  text-decoration: none;
  text-shadow: 1px 1px 0 #001744;
}

.myspace-topbar__brand::before {
  display: inline-block;
  width: 31px;
  height: 25px;
  margin-right: 5px;
  vertical-align: -5px;
  content: "";
  background:
    radial-gradient(circle, #fff 0 5px, transparent 5.5px) 0 0 / 15px 15px,
    linear-gradient(#fff, #fff) 0 14px / 31px 11px no-repeat;
}

.myspace-topbar__brand span {
  display: block;
  margin-left: 86px;
  font-size: 0.77rem;
  font-weight: 700;
}

.myspace-mini-tabs {
  grid-area: mini;
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  gap: 0;
  color: #fff;
  font: 700 0.78rem/1 Arial, Helvetica, sans-serif;
}

.myspace-mini-tabs a {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 8px;
  border-right: 2px solid #fff;
  color: #fff;
  text-decoration: none;
}

.myspace-mini-tabs a[aria-current="page"] {
  color: #063d9c;
  background: #fff;
}

.myspace-mini-tabs a:last-child {
  border-right: 0;
}

.myspace-mini-tabs a:hover,
.myspace-mini-tabs a:focus-visible {
  color: #111;
  background: #f49ceb;
  outline: 2px dotted #fff;
}

.myspace-search {
  grid-area: search;
  display: flex;
  align-items: center;
  align-self: center;
  gap: 3px;
}

.myspace-search input {
  width: 100%;
  min-width: 80px;
  height: 23px;
  border: 1px inset #777;
  font: 0.78rem/1 Arial, Helvetica, sans-serif;
  background: #fff;
}

.myspace-search button {
  height: 23px;
  padding: 0 5px;
  border: 1px outset #bbb;
  color: #111;
  font: 0.72rem/1 Arial, Helvetica, sans-serif;
  background: #e8e8e8;
}

.myspace-google {
  grid-area: google;
  align-self: center;
  margin: 0;
  color: #fff;
  font-size: 0.68rem;
  white-space: nowrap;
}

.myspace-google strong {
  display: inline-block;
  margin-left: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.myspace-help-links {
  position: absolute;
  top: 6px;
  right: 9px;
  margin: 0;
  color: #fff;
  font-size: 0.72rem;
}

.myspace-help-links a {
  color: #fff;
  text-decoration: none;
}

.myspace-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 2px solid #030303;
  background: #bceff8;
}

.myspace-tabs a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  border-right: 1px solid #111;
  color: #111;
  font: 700 0.82rem/1 Verdana, Arial, sans-serif;
  text-decoration: underline;
}

.myspace-tabs a:hover,
.myspace-tabs a:focus-visible {
  color: #fff;
  background: #ee55c7;
  outline: 2px dotted #ffff00;
  outline-offset: -4px;
}

.myspace-profile-layout {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 14px;
}

.myspace-sidebar,
.myspace-main-column {
  display: grid;
  gap: 12px;
}

.myspace-box,
.myspace-network-banner,
.myspace-blog-title,
.myspace-theme .intro,
.myspace-theme .shows-shell,
.myspace-comments-box {
  border: 2px solid #111;
  background: #f3f3f3;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.78);
}

.myspace-box h2,
.myspace-theme .section-heading h2,
.myspace-player h2,
.myspace-module-heading h2 {
  margin: 0;
  padding: 7px 9px;
  color: #fff;
  font: 900 0.9rem/1 Verdana, Arial, sans-serif;
  background: #ef9eea;
  color: #111;
  border-bottom: 2px solid #111;
  text-transform: none;
}

.myspace-profile-card {
  background: #fff;
}

.myspace-profile-card h2 {
  color: #fff;
  background: #111;
  text-shadow: 1px 1px 0 #ff4ec8;
}

.myspace-profile-photo {
  width: calc(100% - 16px);
  aspect-ratio: 1 / 1;
  margin: 8px;
  border: 4px ridge #c0c0c0;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1.12);
}

.myspace-profile-meta {
  margin: 0;
  padding: 5px 8px;
  color: #111;
  font-size: 0.82rem;
  border-top: 1px solid #d6d6d6;
}

.myspace-profile-meta strong,
.myspace-show-details strong,
.myspace-show-description strong {
  color: #d900a8;
}

.myspace-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 8px;
  background: #999;
}

.myspace-contact-grid a,
.myspace-contact-grid span {
  display: block;
  min-height: 34px;
  padding: 9px 7px;
  color: #111;
  font: 700 0.75rem/1.1 Verdana, Arial, sans-serif;
  text-align: center;
  text-decoration: underline;
  background: #bceff8;
}

.myspace-contact-grid span {
  cursor: default;
  text-decoration: none;
}

.myspace-contact-grid a:hover,
.myspace-contact-grid a:focus-visible,
.myspace-show-actions .button:hover,
.myspace-show-actions .button:focus-visible,
.myspace-listen-link:hover,
.myspace-listen-link:focus-visible {
  color: #111;
  background: #ffff00;
  outline: 2px dotted #ff00cc;
  outline-offset: 2px;
}

.myspace-url-box p {
  margin: 0;
  padding: 7px 8px;
  color: #d900a8;
  font: 700 0.8rem/1.2 "Courier New", monospace;
  word-break: break-word;
}

.myspace-details-box dl {
  margin: 0;
}

.myspace-details-box div {
  display: grid;
  grid-template-columns: 86px 1fr;
  border-top: 1px solid #ccc;
}

.myspace-details-box dt,
.myspace-details-box dd {
  margin: 0;
  padding: 6px 8px;
  font-size: 0.78rem;
}

.myspace-details-box dt {
  color: #111;
  font-weight: 700;
  background: #ef9eea;
}

.myspace-details-box dd {
  background: #fff;
}

.tour-friends-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(128px, 1fr));
  gap: 12px;
  padding: 12px;
}

.myspace-module-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 2px solid #111;
  background: #ef9eea;
}

.myspace-module-heading h2 {
  border-bottom: 0;
  background: transparent;
}

.myspace-module-heading p,
.myspace-module-heading a {
  margin: 0;
  padding: 7px 9px;
  color: #111;
  font: 700 0.78rem/1 Verdana, Arial, sans-serif;
}

.myspace-module-heading a {
  color: #003399;
  text-decoration: underline;
}

.tour-friend {
  display: block;
  min-width: 0;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.tour-friend-media {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  padding: 5px;
  border: 3px outset #bceff8;
  color: #fff;
  font: 900 clamp(1.05rem, 5vw, 1.65rem)/0.9 var(--myspace-display-font);
  background:
    linear-gradient(135deg, #ff4ec8, #633cff 50%, #28efbf);
  text-shadow: 2px 2px 0 #111;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
}

.tour-friend:hover .tour-friend-media,
.tour-friend:focus-visible .tour-friend-media {
  border-style: inset;
  box-shadow: 0 0 0 2px #ff4ec8, 0 0 18px rgba(255, 78, 200, 0.75);
}

.tour-friend:focus-visible {
  outline: 2px dotted #ffff00;
  outline-offset: 4px;
}

.tour-friend-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tour-friend p,
.myspace-friends-note {
  margin: 5px 0 0;
  color: #111;
  font-size: 0.75rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.tour-friend--pretty-suspect .tour-friend-media {
  color: #fff;
  background:
    radial-gradient(circle, #171717 0 48%, #050505 49% 100%);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-shadow: 2px 2px 0 #ff4ec8, -1px -1px 0 #111;
}

.tour-friend--cosmic-waste .tour-friend-media,
.tour-friend--dead-nexus .tour-friend-media {
  color: #9bef6e;
  background: #050505;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-shadow: 2px 2px 0 #111, 0 0 10px #5aff50;
}

.tour-friend--hide-heaven .tour-friend-media {
  color: #fff;
  background: #050505;
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0;
  text-shadow: 2px 2px 0 #111, 0 0 8px #bceff8;
}

.tour-friend--drawn-by-knives .tour-friend-media,
.tour-friend--salt .tour-friend-media {
  color: #f5f5f5;
  background:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.92)),
    url("assets/oathbound-profile-dsc03045-web.jpg") center / cover;
  filter: grayscale(1);
  font-family: Verdana, Arial, sans-serif;
  text-shadow: 2px 2px 0 #111, 0 0 8px #fff;
}

.tour-friend--hallway-scenes .tour-friend-media {
  color: #151515;
  background: #dedbd2;
  font-family: "Times New Roman", Times, serif;
  text-shadow: none;
}

.tour-friend--foghorn .tour-friend-media {
  color: #ff4d4d;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 98, 98, 0.28), transparent 34%),
    #050505;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-shadow: 2px 2px 0 #111, 0 0 10px #ff3131;
}

.myspace-network-banner {
  padding: clamp(16px, 3vw, 28px);
  color: #111;
  font: 900 clamp(1.25rem, 3vw, 2rem)/1.15 "Times New Roman", Times, serif;
  text-align: center;
  background: #f5f5f5;
}

.myspace-theme .intro {
  min-height: 0;
  max-width: none;
  margin: 0;
  padding: clamp(16px, 3vw, 30px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.36) 58%, rgba(0, 0, 0, 0.76)),
    url("assets/ob-x-ps-blank-flyer.jpeg") center 18% / cover no-repeat;
}

.myspace-theme .eyebrow {
  margin: 0 0 8px;
  color: #ffff00;
  font: 700 0.95rem/1.2 "Courier New", monospace;
  text-shadow: 2px 2px 0 #111;
}

html.myspace-theme .intro h1 {
  max-width: 650px;
  margin: 0 0 12px;
  color: #fff;
  font: 900 clamp(2.8rem, 7.4vw, 6.2rem)/0.88 Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0;
  text-shadow:
    3px 3px 0 #111,
    -3px 0 0 #ff4ec8,
    0 0 18px #ff4ec8;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

html.myspace-theme .intro h1 span {
  display: block;
  margin-top: 0.18em;
  color: #28efbf;
  font: 900 clamp(1.05rem, 2.7vw, 2.05rem)/1 var(--myspace-address-font);
  text-shadow: 2px 2px 0 #111, 3px 3px 0 #ff4ec8;
}

.myspace-theme .intro #page-copy {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font: 700 0.98rem/1.45 Verdana, Arial, sans-serif;
  text-shadow: 1px 1px 0 #111;
}

.myspace-player {
  padding-bottom: 10px;
  background: #e8e8e8;
}

.myspace-player-screen {
  margin: 10px;
  padding: 10px;
  border: 3px inset #aaa;
  color: #28efbf;
  font-family: "Courier New", monospace;
  background: #111;
}

.myspace-player-screen span,
.myspace-player-screen strong {
  display: block;
}

.myspace-player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 0 10px;
}

.myspace-player-controls button,
.myspace-listen-link {
  border: 2px outset #d7d7d7;
  color: #111;
  font: 700 0.75rem/1 Verdana, Arial, sans-serif;
  background: #f7f7f7;
}

.myspace-player-controls button {
  min-height: 28px;
  padding: 0 12px;
  text-transform: lowercase;
}

.myspace-progress-wrap {
  display: flex;
  flex: 1 1 260px;
  min-width: 180px;
  align-items: center;
  gap: 8px;
}

.myspace-progress {
  flex: 1 1 auto;
  min-width: 110px;
  accent-color: #ff4ec8;
}

.myspace-time {
  min-width: 78px;
  color: #111;
  font: 700 0.72rem/1 "Courier New", monospace;
  text-align: right;
}

.myspace-stream-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 10px 10px 0;
}

.myspace-stream-links span {
  color: #d900a8;
  font: 900 0.76rem/1 Verdana, Arial, sans-serif;
}

.myspace-listen-link {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  color: #003399;
}

.myspace-blog-title {
  padding: 10px;
  background: #fff7cc;
}

.myspace-blog-title p {
  margin: 0 0 3px;
  color: #d900a8;
  font: 700 0.75rem/1 Verdana, Arial, sans-serif;
}

.myspace-blog-title h2 {
  margin: 0;
  color: #111;
  font: 900 1.12rem/1.2 Verdana, Arial, sans-serif;
}

.myspace-theme .shows-shell {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
}

.myspace-theme .section-heading {
  min-height: 0;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid #111;
  background: #ef9eea;
}

.myspace-theme .section-heading h2 {
  background: transparent;
}

.myspace-theme .section-heading p {
  margin: 0;
  padding: 7px 9px;
  color: #111;
  font: 700 0.78rem/1 Verdana, Arial, sans-serif;
}

.myspace-theme .shows-list {
  gap: 10px;
  padding: 10px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 78, 200, 0.08) 0 1px, transparent 1px 9px),
    #f7fbff;
}

.myspace-show-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 9px;
  border: 2px solid #b7c7d6;
  background: #fff;
}

.myspace-show-card--next {
  border-color: #ff4ec8;
  box-shadow: 0 0 0 3px #28efbf inset;
}

.myspace-show-avatar {
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 8px;
  color: #111;
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
  background: #bceff8;
}

.myspace-show-avatar img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px solid #111;
  object-fit: cover;
  object-position: center;
}

.myspace-show-body {
  min-width: 0;
  padding: 8px 10px 10px 0;
}

.myspace-show-card h3 {
  margin: 0 0 4px;
  color: #d900a8;
  font: 900 clamp(1rem, 2.2vw, 1.35rem)/1.15 Verdana, Arial, sans-serif;
}

.myspace-show-card h3 a {
  color: inherit;
  text-decoration: underline;
}

.myspace-show-details {
  display: grid;
  gap: 3px;
  margin: 7px 0;
}

.myspace-show-details p,
.myspace-show-description {
  margin: 0;
  color: #111;
  font-size: 0.84rem;
  line-height: 1.4;
}

.myspace-show-description {
  margin-top: 8px;
}

.myspace-show-more {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  color: #d900a8;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  background: transparent;
  cursor: pointer;
}

.myspace-show-more:hover,
.myspace-show-more:focus-visible {
  color: #111;
  outline: 1px dotted #d900a8;
  outline-offset: 2px;
}

.myspace-show-badges,
.myspace-show-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
}

.myspace-icon-badge {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(2px 2px 0 #ee55c7) drop-shadow(-1px -1px 0 #bceff8);
}

.myspace-age-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border: 2px solid #111;
  color: #111;
  font: 900 0.72rem/1 Verdana, Arial, sans-serif;
  background: #28efbf;
  box-shadow: 2px 2px 0 #ff4ec8;
}

.myspace-age-badge--door-sales {
  color: #111;
  background:
    repeating-linear-gradient(-45deg, rgba(255, 78, 200, 0.28) 0 4px, transparent 4px 8px),
    #ffff00;
  box-shadow: 2px 2px 0 #ff4ec8, -2px -2px 0 #28efbf;
}

.myspace-age-badge--door-sales::before {
  margin-right: 5px;
  content: "$";
}

.myspace-show-actions .button {
  min-width: 0;
  min-height: 30px;
  padding: 0 10px;
  border: 2px outset #d7d7d7;
  border-radius: 0;
  color: #111;
  font: 900 0.74rem/1 Verdana, Arial, sans-serif;
  text-decoration: underline;
  text-transform: none;
  background: #bceff8;
  box-shadow: none;
}

.myspace-show-actions .button--primary {
  color: #111;
  background: #ffff00;
}

.friends-comments {
  display: grid;
  gap: 6px;
  padding: 8px 10px 10px;
  background: #fff;
}

.comment-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: stretch;
  border: 2px solid #b7c7d6;
  background: #f8f8f8;
}

.comment-avatar {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 4px;
  width: 96px;
  padding: 6px;
  color: #111;
  font: 700 0.7rem/1.05 Verdana, Arial, sans-serif;
  text-align: center;
  background: #bceff8;
}

.comment-avatar img,
.comment-avatar span {
  display: grid;
  width: 76px;
  height: 76px;
  max-width: 76px;
  place-items: center;
  border: 2px solid #111;
  color: #fff;
  font: 900 1.05rem/1 Verdana, Arial, sans-serif;
  background: #111;
  object-fit: cover;
  object-position: center;
}

.comment-avatar p,
.comment-avatar strong,
.comment-avatar a {
  max-width: 82px;
  margin: 0;
  color: #111;
  line-height: 1.05;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.comment-body {
  min-width: 0;
  padding: 7px 9px;
  color: #111;
  font: 0.82rem/1.35 Verdana, Arial, sans-serif;
  background: #fff;
}

.comment-body p {
  margin: 0;
}

.comment-body p + p {
  margin-top: 6px;
}

.comment-time {
  margin-bottom: 5px;
  color: #666;
  font-size: 0.72rem;
}

.myspace-theme .site-footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), 1180px);
  color: #fff;
}

@media (max-width: 820px) {
  .myspace-topbar__upper {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "mini"
      "search"
      "google";
    align-items: start;
    padding-top: 26px;
  }

  .myspace-mini-tabs a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .myspace-google {
    justify-self: end;
  }

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

  .myspace-topbar__brand {
    font-size: clamp(1.2rem, 9vw, 2.1rem);
  }

  .myspace-tabs a {
    flex: 1 1 auto;
    justify-content: center;
  }

  .myspace-theme h1 {
    font-size: clamp(2.5rem, 17vw, 4.4rem);
  }

  .tour-friends-list {
    grid-template-columns: repeat(4, minmax(110px, 1fr));
  }
}

@media (max-width: 560px) {
  .myspace-theme .site-main {
    width: min(calc(100% - 14px), 1280px);
  }

  .myspace-show-card,
  .comment-card {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 7px;
  }

  .myspace-tabs a,
  .myspace-mini-tabs a {
    flex: 1 1 50%;
    justify-content: center;
  }

  .myspace-topbar__brand span {
    margin-left: 0;
  }

  .myspace-show-avatar,
  .comment-avatar {
    padding: 6px;
  }

  .myspace-show-body,
  .comment-body {
    padding: 7px 7px 9px 0;
  }

  .myspace-contact-grid {
    grid-template-columns: 1fr;
  }

  .tour-friends-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
  }
}

/* Friends Comments mobile tightening */
@media (max-width: 560px) {
  .comment-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .comment-avatar {
    width: 78px;
    padding: 5px;
  }

  .comment-avatar img,
  .comment-avatar span {
    width: 62px;
    height: 62px;
    max-width: 62px;
  }

  .comment-avatar p,
  .comment-avatar strong,
  .comment-avatar a {
    max-width: 66px;
    font-size: 0.66rem;
  }
}

/* ==========================================================
   FINAL FIX: Compact MySpace Friend Space / Top Friends
   This intentionally uses strong selectors + !important because
   earlier theme/media rules were letting the friend tiles expand
   into giant gallery cards.
   ========================================================== */

html.myspace-theme .tour-friends-list,
html[data-tour-theme="myspace"] .tour-friends-list,
.myspace-theme .tour-friends-list {
  display: grid !important;
  grid-template-columns: repeat(4, 112px) !important;
  justify-content: start !important;
  align-items: start !important;
  gap: 10px 12px !important;
  padding: 10px !important;
  background: #fff !important;
}

html.myspace-theme .tour-friend,
html[data-tour-theme="myspace"] .tour-friend,
.myspace-theme .tour-friend {
  display: block !important;
  width: 112px !important;
  max-width: 112px !important;
  min-width: 0 !important;
  color: #111 !important;
  text-align: center !important;
  text-decoration: none !important;
}

html.myspace-theme .tour-friend-media,
html[data-tour-theme="myspace"] .tour-friend-media,
.myspace-theme .tour-friend-media,
html.myspace-theme .tour-friend--pretty-suspect .tour-friend-media,
html.myspace-theme .tour-friend--cosmic-waste .tour-friend-media,
html.myspace-theme .tour-friend--dead-nexus .tour-friend-media,
html.myspace-theme .tour-friend--hide-heaven .tour-friend-media,
html.myspace-theme .tour-friend--drawn-by-knives .tour-friend-media,
html.myspace-theme .tour-friend--salt .tour-friend-media,
html.myspace-theme .tour-friend--hallway-scenes .tour-friend-media,
html.myspace-theme .tour-friend--foghorn .tour-friend-media,
html[data-tour-theme="myspace"] .tour-friend--pretty-suspect .tour-friend-media,
html[data-tour-theme="myspace"] .tour-friend--cosmic-waste .tour-friend-media,
html[data-tour-theme="myspace"] .tour-friend--dead-nexus .tour-friend-media,
html[data-tour-theme="myspace"] .tour-friend--hide-heaven .tour-friend-media,
html[data-tour-theme="myspace"] .tour-friend--drawn-by-knives .tour-friend-media,
html[data-tour-theme="myspace"] .tour-friend--salt .tour-friend-media,
html[data-tour-theme="myspace"] .tour-friend--hallway-scenes .tour-friend-media,
html[data-tour-theme="myspace"] .tour-friend--foghorn .tour-friend-media,
.myspace-theme .tour-friend--pretty-suspect .tour-friend-media,
.myspace-theme .tour-friend--cosmic-waste .tour-friend-media,
.myspace-theme .tour-friend--dead-nexus .tour-friend-media,
.myspace-theme .tour-friend--hide-heaven .tour-friend-media,
.myspace-theme .tour-friend--drawn-by-knives .tour-friend-media,
.myspace-theme .tour-friend--salt .tour-friend-media,
.myspace-theme .tour-friend--hallway-scenes .tour-friend-media,
.myspace-theme .tour-friend--foghorn .tour-friend-media {
  display: grid !important;
  width: 112px !important;
  height: 112px !important;
  max-width: 112px !important;
  max-height: 112px !important;
  min-width: 112px !important;
  min-height: 112px !important;
  aspect-ratio: auto !important;
  place-items: center !important;
  margin: 0 auto !important;
  padding: 4px !important;
  overflow: hidden !important;
  border: 3px outset #bceff8 !important;
  color: #fff;
  font: 900 0.88rem/0.9 var(--myspace-display-font) !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

html.myspace-theme .tour-friend-media img,
html[data-tour-theme="myspace"] .tour-friend-media img,
.myspace-theme .tour-friend-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
}

html.myspace-theme .tour-friend p,
html.myspace-theme .myspace-friends-note,
html[data-tour-theme="myspace"] .tour-friend p,
html[data-tour-theme="myspace"] .myspace-friends-note,
.myspace-theme .tour-friend p,
.myspace-theme .myspace-friends-note {
  width: 112px !important;
  max-width: 112px !important;
  margin: 4px auto 0 !important;
  color: #111 !important;
  font: 700 0.7rem/1.1 Verdana, Arial, Helvetica, sans-serif !important;
  text-align: center !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

html.myspace-theme .tour-friend:hover .tour-friend-media,
html.myspace-theme .tour-friend:focus-visible .tour-friend-media,
html[data-tour-theme="myspace"] .tour-friend:hover .tour-friend-media,
html[data-tour-theme="myspace"] .tour-friend:focus-visible .tour-friend-media,
.myspace-theme .tour-friend:hover .tour-friend-media,
.myspace-theme .tour-friend:focus-visible .tour-friend-media {
  border-style: inset !important;
  box-shadow:
    0 0 0 2px #ff4ec8,
    0 0 12px rgba(255, 78, 200, 0.72) !important;
}

@media (max-width: 820px) {
  html.myspace-theme .tour-friends-list,
  html[data-tour-theme="myspace"] .tour-friends-list,
  .myspace-theme .tour-friends-list {
    grid-template-columns: repeat(4, 100px) !important;
    gap: 9px !important;
    padding: 8px !important;
  }

  html.myspace-theme .tour-friend,
  html[data-tour-theme="myspace"] .tour-friend,
  .myspace-theme .tour-friend,
  html.myspace-theme .tour-friend p,
  html.myspace-theme .myspace-friends-note,
  html[data-tour-theme="myspace"] .tour-friend p,
  html[data-tour-theme="myspace"] .myspace-friends-note,
  .myspace-theme .tour-friend p,
  .myspace-theme .myspace-friends-note {
    width: 100px !important;
    max-width: 100px !important;
  }

  html.myspace-theme .tour-friend-media,
  html[data-tour-theme="myspace"] .tour-friend-media,
  .myspace-theme .tour-friend-media {
    width: 100px !important;
    height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
    min-width: 100px !important;
    min-height: 100px !important;
  }
}

@media (max-width: 560px) {
  html.myspace-theme .tour-friends-list,
  html[data-tour-theme="myspace"] .tour-friends-list,
  .myspace-theme .tour-friends-list {
    grid-template-columns: repeat(2, 104px) !important;
    justify-content: center !important;
    gap: 10px 14px !important;
    padding: 10px !important;
  }

  html.myspace-theme .tour-friend,
  html[data-tour-theme="myspace"] .tour-friend,
  .myspace-theme .tour-friend,
  html.myspace-theme .tour-friend p,
  html.myspace-theme .myspace-friends-note,
  html[data-tour-theme="myspace"] .tour-friend p,
  html[data-tour-theme="myspace"] .myspace-friends-note,
  .myspace-theme .tour-friend p,
  .myspace-theme .myspace-friends-note {
    width: 104px !important;
    max-width: 104px !important;
  }

  html.myspace-theme .tour-friend-media,
  html[data-tour-theme="myspace"] .tour-friend-media,
  .myspace-theme .tour-friend-media {
    width: 104px !important;
    height: 104px !important;
    max-width: 104px !important;
    max-height: 104px !important;
    min-width: 104px !important;
    min-height: 104px !important;
  }
}
