:root {
  --bg: #07131f;
  --bg-soft: #0d1e30;
  --surface: rgba(9, 24, 39, 0.8);
  --surface-strong: rgba(7, 17, 28, 0.95);
  --line: rgba(142, 216, 255, 0.2);
  --line-strong: rgba(255, 238, 188, 0.35);
  --text: #edf6ff;
  --muted: #b4cbe0;
  --accent: #8fe4ff;
  --accent-strong: #f7d978;
  --accent-deep: #59b6ff;
  --chip: rgba(110, 190, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Avenir Next", "Hiragino Sans", "Yu Gothic", sans-serif;
  background:
    radial-gradient(circle at top, rgba(74, 144, 226, 0.22), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(255, 225, 128, 0.12), transparent 24%),
    linear-gradient(180deg, #04101a 0%, #081423 36%, #07131f 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 12%, rgba(255, 244, 207, 0.72) 0 1.2px, transparent 1.7px),
    radial-gradient(circle at 82% 32%, rgba(143, 228, 255, 0.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 28% 78%, rgba(143, 228, 255, 0.6) 0 1.3px, transparent 1.9px),
    radial-gradient(circle at 64% 88%, rgba(255, 255, 255, 0.66) 0 1px, transparent 1.6px);
  opacity: 0.85;
}

body::after {
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(143, 228, 255, 0.05) 48% 50%, transparent 50%),
    linear-gradient(225deg, transparent 0 48%, rgba(247, 217, 120, 0.04) 48% 50%, transparent 50%);
  background-size: 36px 36px;
  opacity: 0.24;
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header {
  margin-bottom: 28px;
}

.home-link,
.limited-label,
.site-footer p {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.home-link {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(4, 14, 22, 0.55);
}

.limited-label {
  margin: 0;
  color: var(--accent-strong);
}

.hero,
.section,
.site-footer {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 24, 39, 0.82), rgba(4, 14, 23, 0.82));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr);
  gap: 30px;
  padding: 34px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -70px -110px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 217, 120, 0.26), transparent 68%);
  pointer-events: none;
}

.eyebrow,
.section-kicker,
.card-label,
.dialog-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.hero h1,
.section-heading h2,
.dialog-copy h3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 700;
  line-height: 1.08;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 3.3vw, 3.5rem);
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  font-size: 0.78em;
  letter-spacing: 0.025em;
}

.hero h1 span:last-child {
  color: var(--accent-strong);
  font-size: clamp(1.65rem, 3.1vw, 3.15rem);
  white-space: nowrap;
}

.hero-date {
  width: fit-content;
  display: grid;
  gap: 6px;
  margin: 20px 0 0;
  padding: 10px 16px 11px;
  border: 1px solid rgba(123, 222, 255, 0.38);
  border-radius: 18px;
  background: rgba(123, 222, 255, 0.08);
  color: var(--accent-strong);
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.07em;
}

.hero-date strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.82em;
  letter-spacing: 0.1em;
}

.hero-date strong i {
  width: 1px;
  height: 1em;
  background: rgba(123, 222, 255, 0.45);
}

.hero-lead {
  max-width: 62ch;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}

.live-venue-card {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 17px 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 92, 92, 0.62);
  border-radius: 18px;
  background:
    linear-gradient(105deg, rgba(116, 8, 18, 0.68), rgba(14, 30, 44, 0.92) 66%),
    rgba(7, 20, 31, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3), 0 0 28px rgba(255, 45, 45, 0.1);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.live-venue-card::after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  top: -85px;
  right: 30px;
  border-radius: 50%;
  background: rgba(255, 43, 43, 0.12);
  filter: blur(4px);
  pointer-events: none;
}

.live-venue-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 120, 120, 0.95);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36), 0 0 34px rgba(255, 45, 45, 0.18);
}

.live-venue-icon {
  width: 50px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #ff253a;
  box-shadow: 0 8px 22px rgba(255, 37, 58, 0.3);
}

.live-venue-icon span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
}

.live-venue-copy {
  display: grid;
  gap: 1px;
}

.live-venue-label {
  color: #ff9ba5;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.live-venue-copy strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.25;
}

.live-venue-copy small {
  color: var(--muted);
  font-size: 0.8rem;
}

.live-venue-arrow {
  position: relative;
  z-index: 1;
  color: #ffb0b7;
  font-size: 1.4rem;
}

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

.primary-action,
.secondary-action,
.band-card button,
.poster-preview-button,
.dialog-close {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.primary-action {
  background: linear-gradient(135deg, #f0d27a, #fff0c4);
  color: #102238;
  box-shadow: 0 12px 32px rgba(247, 217, 120, 0.25);
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(8, 22, 35, 0.6);
}

.primary-action:hover,
.secondary-action:hover,
.band-card button:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.hero-stats div,
.intro-panel,
.feature-card,
.lineup-only-panel,
.band-card,
.search-field,
.dialog-layout {
  border: 1px solid var(--line);
  background: rgba(6, 18, 28, 0.62);
}

.hero-stats div {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-stats dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-stats dd {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
}

.hero-visuals {
  display: grid;
  gap: 18px;
}

.hero-main-visual,
.hero-side-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.hero-main-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.hero-side-card {
  padding: 18px;
}

.hero-side-card img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  margin-bottom: 12px;
}

.poster-preview-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
}

.poster-preview-button img {
  margin-bottom: 0;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.poster-preview-button span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(3, 11, 18, 0.78);
  color: var(--text);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.poster-preview-button:hover img,
.poster-preview-button:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.05);
}

.poster-preview-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.card-caption {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  margin-top: 26px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.1vw, 3rem);
}

.section-note,
.toolbar-note,
.lineup-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.intro-panel,
.feature-card,
.lineup-only-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.intro-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.intro-panel p + p {
  margin-top: 18px;
}

.event-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-points li {
  padding: 12px 14px;
  border-left: 3px solid var(--accent-strong);
  background: rgba(143, 228, 255, 0.06);
  color: var(--text);
}

.lineup-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.lineup-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--chip);
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.4;
}

.lineup-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04);
}

.lineup-chip.has-profile::before {
  background: var(--accent-strong);
}

.lineup-only-panel {
  margin-top: 18px;
}

.lineup-only-panel h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.lineup-only-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lineup-only-panel li {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.feature-card {
  margin: 0;
}

.feature-card a {
  display: block;
  border-radius: 18px;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-card figcaption {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.timetable-embed-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #060914;
}

.timetable-frame {
  display: block;
  width: 100%;
  height: 1400px;
  border: 0;
  background: #060914;
}

.timetable-frame-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  background: rgba(6, 18, 28, 0.95);
}

.timetable-frame-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.timetable-frame-footer a {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(143, 228, 255, 0.1);
  color: var(--text);
}

.band-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.search-field {
  display: grid;
  gap: 8px;
  width: min(100%, 380px);
  padding: 16px 18px;
  border-radius: var(--radius-lg);
}

.search-field span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  padding: 0;
  border: 0;
  color: var(--text);
  font: inherit;
  background: transparent;
  outline: none;
}

.search-field input::placeholder {
  color: rgba(237, 246, 255, 0.46);
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.band-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.band-card.is-pending {
  border-style: dashed;
  background: rgba(6, 18, 28, 0.4);
}

.band-card.is-pending .band-card-visual {
  background:
    radial-gradient(circle at center, rgba(240, 210, 122, 0.12), transparent 45%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 9px, transparent 9px 18px),
    rgba(4, 12, 20, 0.82);
}

.band-card.is-pending .band-card-fallback,
.band-card.is-pending .band-card-label {
  color: #e9d79b;
}

.band-card-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at top, rgba(143, 228, 255, 0.34), transparent 42%),
    linear-gradient(180deg, rgba(4, 17, 27, 0.8), rgba(4, 10, 18, 0.95));
}

.band-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-card-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
  color: var(--accent);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.band-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.band-card-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.band-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.4;
}

.band-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.band-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: fit-content;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(143, 228, 255, 0.12);
  color: var(--text);
}

.band-card-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: fit-content;
  padding: 0 16px;
  border: 1px solid rgba(240, 210, 122, 0.25);
  border-radius: 999px;
  color: #e9d79b;
  background: rgba(240, 210, 122, 0.07);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.x-links-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(6, 18, 28, 0.62);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.x-links-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.x-links-table th,
.x-links-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.x-links-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--accent-strong);
  background: #0a1b29;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.x-links-table tbody tr:last-child td {
  border-bottom: 0;
}

.x-links-table tbody tr:hover {
  background: rgba(143, 228, 255, 0.045);
}

.x-links-table td:first-child {
  width: 31%;
  color: var(--text);
  font-weight: 700;
}

.x-links-table td:nth-child(2) {
  width: 41%;
  color: var(--muted);
}

.x-links-table a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #9fe8ff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.x-links-table a::before {
  content: "X";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(159, 232, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
}

.x-links-table a:hover {
  color: #fff;
}

.x-link-unavailable {
  color: rgba(237, 246, 255, 0.45);
}

.band-dialog {
  width: min(calc(100% - 24px), 1000px);
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: rgba(3, 11, 18, 0.96);
  color: var(--text);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.55);
}

.band-dialog::backdrop {
  background: rgba(2, 8, 14, 0.78);
  backdrop-filter: blur(8px);
}

.poster-dialog {
  width: min(calc(100% - 24px), 1400px);
  max-height: calc(100vh - 24px);
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: rgba(3, 11, 18, 0.98);
  color: var(--text);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.6);
}

.poster-dialog::backdrop {
  background: rgba(2, 8, 14, 0.86);
  backdrop-filter: blur(10px);
}

.poster-dialog-content {
  padding: 0 18px 18px;
}

.poster-dialog-content h2 {
  margin: 0 0 16px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.poster-dialog-image {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #eef3f8;
  cursor: zoom-in;
}

.poster-dialog-image img {
  width: 100%;
  max-height: calc(100vh - 220px);
  object-fit: contain;
}

.poster-dialog-note {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.85rem;
}

.dialog-close-row {
  display: flex;
  justify-content: flex-end;
  padding: 16px 16px 0;
}

.dialog-close {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 0;
  margin: 0 18px 18px;
  overflow: hidden;
  border-radius: 24px;
}

.dialog-visual {
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(143, 228, 255, 0.3), transparent 42%),
    linear-gradient(180deg, rgba(8, 22, 35, 0.95), rgba(4, 11, 18, 0.98));
}

.dialog-visual img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  object-position: center;
}

.dialog-copy {
  padding: 26px 26px 30px;
}

.dialog-copy h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.dialog-creator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 14px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(143, 228, 255, 0.2);
  border-radius: 16px;
  background: rgba(143, 228, 255, 0.06);
}

.dialog-creator[hidden] {
  display: none;
}

.dialog-creator p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dialog-creator strong {
  color: var(--text);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.dialog-creator a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(159, 232, 255, 0.34);
  border-radius: 999px;
  color: #a8ecff;
  background: rgba(3, 12, 20, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.dialog-creator a:hover {
  border-color: rgba(159, 232, 255, 0.72);
  color: #fff;
}

.dialog-body {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.dialog-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.site-footer {
  margin-top: 26px;
  padding: 20px 24px;
  border-radius: 999px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero,
    .dialog-layout,
    .band-grid,
    .intro-grid {
      grid-template-columns: 1fr;
    }

    .timetable-frame {
      height: 2500px;
    }

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

  .dialog-visual {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding: 18px 0 36px;
  }

  .site-header,
  .site-footer,
  .band-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .section {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-stats,
  .band-grid {
    grid-template-columns: 1fr;
  }

  .search-field {
    width: 100%;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .live-venue-card {
    gap: 12px;
    padding: 15px;
  }

  .timetable-frame {
    height: 2600px;
  }

  .timetable-frame-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .dialog-copy {
    padding: 22px;
  }

  .dialog-creator {
    grid-template-columns: 1fr;
  }

  .dialog-creator a {
    width: fit-content;
  }

  .band-dialog {
    width: min(calc(100% - 12px), 1000px);
    border-radius: 24px;
  }

  .poster-dialog {
    width: min(calc(100% - 12px), 1400px);
    border-radius: 24px;
  }
}

@media (max-width: 420px) {
  .live-venue-card {
    grid-template-columns: auto 1fr;
  }

  .live-venue-arrow {
    display: none;
  }
}
