/* ============================================================
   ORIGIN SIGNAL — style.css
   ============================================================ */

/* ---- Variables ---- */
:root {
  --green:        #00e040;
  --green-bright: #00ff47;
  --green-mid:    #00b030;
  --green-dark:   #004a18;
  --green-hero:   #00cc38;

  --bg:           #ffffff;
  --bg-2:         #f4fcf6;
  --bg-3:         #ebf7ef;
  --text:         #0d0d0d;
  --text-muted:   #2d6638;
  --text-light:   #d8f0de;
  --text-muted-light: #9fd4ac;

  --border:       rgba(0, 160, 50, 0.25);
  --border-mid:   rgba(0, 160, 50, 0.40);
  --border-light: rgba(255, 255, 255, 0.18);

  --font-display: 'Orbitron', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
  --font-body:    'Noto Sans JP', sans-serif;

  --glow-xs: 0 0 8px  rgba(0, 200, 60, 0.45);
  --glow-sm: 0 0 16px rgba(0, 200, 60, 0.45);
  --glow-md: 0 0 28px rgba(0, 200, 60, 0.40), 0 0 56px rgba(0, 200, 60, 0.15);
  --glow-lg: 0 0 40px rgba(0, 200, 60, 0.55), 0 0 90px rgba(0, 200, 60, 0.22);

  --max-w: 1080px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   Signal Canvas
   ============================================================ */
#signal-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9990;
  mix-blend-mode: multiply;
}

/* ============================================================
   Custom Cursor
   ============================================================ */
body { cursor: none; }

.cursor-dot {
  position: fixed;
  width: 7px;
  height: 7px;
  background: var(--green-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: var(--glow-xs);
  transition: opacity 0.2s;
  will-change: left, top;
}

@media (hover: none) {
  .cursor-dot { display: none; }
  body { cursor: auto; }
}

/* ============================================================
   Navigation
   ============================================================ */
#nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  padding: 14px 24px;
  transition: background 0.3s, border-color 0.3s;
  background: linear-gradient(to bottom, rgba(0, 180, 50, 0.55) 0%, transparent 100%);
}

#nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text);
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .nav-links { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.13em;
  color: var(--text);
  border: 1px solid var(--green);
  background: var(--green);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
  will-change: transform;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-mid);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
  z-index: 0;
}

.btn > * { position: relative; z-index: 1; }

.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--text); box-shadow: var(--glow-md); }

.btn-primary {
  background: var(--green);
  box-shadow: var(--glow-xs);
}

.btn-nav {
  padding: 7px 14px;
  font-size: 10px;
}

.btn-large {
  padding: 15px 40px;
  font-size: 14px;
}

.btn-hero {
  margin-top: 40px;
  padding: 14px 36px;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.btn-arrow {
  font-size: 9px;
  line-height: 1;
}

/* ============================================================
   Container / Section Base
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--dark   { background: var(--green-dark); }
.section--darker { background: #002e10; }

/* Text overrides for dark sections */
.section--dark .section-eyebrow,
.section--darker .section-eyebrow {
  color: var(--green-bright);
}

.section--dark .section-title,
.section--darker .section-title {
  color: var(--text-light);
}

.section--dark .section-title::after,
.section--darker .section-title::after {
  background: var(--green-bright);
  box-shadow: var(--glow-sm);
}

/* Eyebrow */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--green-dark);
  opacity: 0.8;
  margin-bottom: 6px;
}

/* Section title */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 52px;
}

.section-title::after {
  content: '';
  display: block;
  margin-top: 14px;
  width: 48px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* CTA wrapper */
.section-cta {
  margin-top: 48px;
}

/* ---- Scroll fade-in ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px 56px;
  background: var(--green-hero);
}

/* Flyer background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-flyer {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.18;
  filter: saturate(0.6) blur(3px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 160, 40, 0.50) 0%,
      rgba(0, 200, 50, 0.10) 35%,
      rgba(0, 200, 50, 0.15) 65%,
      rgba(255, 255, 255, 0.70) 92%,
      var(--bg) 100%
    );
}

/* Scanlines */
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.05) 3px,
    rgba(0, 0, 0, 0.05) 4px
  );
  animation: scanMove 12s linear infinite;
}

@keyframes scanMove {
  from { background-position: 0 0; }
  to   { background-position: 0 120px; }
}

/* Grid */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Horizontal sweep line */
.hero-hline {
  position: absolute;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
  opacity: 0.35;
  z-index: 2;
  animation: hlineSweep 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hlineSweep {
  0%   { top: 10%; opacity: 0; }
  20%  { opacity: 0.45; }
  80%  { opacity: 0.45; }
  100% { top: 90%; opacity: 0; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
}

.hero-pretag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 20px;
  animation: blink 2.4s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 0.25; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 14vw, 128px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 0.88;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  user-select: none;
}

.hero-origin {
  color: #0d0d0d;
}

.hero-signal {
  color: #003815;
  text-shadow: 0 0 50px rgba(0, 255, 71, 0.40);
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.hero-date-row {
  font-family: var(--font-mono);
  font-size: clamp(13px, 2.8vw, 20px);
  letter-spacing: 0.16em;
  color: #0d0d0d;
}

.hero-at { margin: 0 8px; color: #003d18; }

.hero-time-row {
  font-size: clamp(11px, 2vw, 13px);
  color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 12px;
}

.hero-time-row strong { color: #0d0d0d; }
.hero-sep { opacity: 0.35; }

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: rgba(0, 0, 0, 0.45);
}

.scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, #003d18, transparent);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { opacity: 0.5; transform: scaleY(1);    }
  50%       { opacity: 0.15; transform: scaleY(0.4); }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 50%, var(--bg) 100%);
}

/* Two-column layout: text + flyer */
.about-cols {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 52px;
  align-items: start;
}

@media (max-width: 860px) {
  .about-cols {
    grid-template-columns: 1fr;
  }
  .about-flyer {
    max-width: 420px;
    margin: 0 auto;
  }
}

.about-flyer img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 36px rgba(0, 140, 40, 0.22), 0 2px 8px rgba(0,0,0,0.10);
}

.about-body p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1.08em;
  color: var(--text) !important;
  line-height: 1.85;
}

.about-feature {
  display: flex;
  gap: 20px;
  margin-top: 44px;
  padding: 20px 20px 20px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 200, 60, 0.05);
}

.feature-accent-line {
  width: 3px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 2px;
}

.feature-body h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.feature-body p {
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   LINE UP
   ============================================================ */
#lineup { background: var(--bg-2); }

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

@media (max-width: 720px) {
  .lineup-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 440px) {
  .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

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

.performer-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.performer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease), filter 0.45s;
  filter: saturate(0.9) brightness(1.0);
}

.performer-card:hover .performer-img-wrap img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(1.05);
}

.performer-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 200, 60, 0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}

.performer-card:hover .performer-glow { opacity: 1; }

.performer-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: border-color 0.4s, box-shadow 0.4s;
  pointer-events: none;
}

.performer-card:hover .performer-img-wrap::after {
  border-color: var(--green);
  box-shadow: inset 0 0 16px rgba(0, 200, 60, 0.10);
}

.performer-info { text-align: center; }

.performer-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.performer-handle {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.65;
}

/* Guest Section */
.guest-section { margin-bottom: 52px; }

.guest-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--green-dark);
}

.guest-divider::before,
.guest-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-mid);
}

.guest-grid {
  display: flex;
  justify-content: center;
}

.performer-card--guest {
  max-width: 320px;
  width: 100%;
}

.performer-card--guest .performer-img-wrap {
  border: 2px solid var(--green);
  border-radius: 18px;
  box-shadow: var(--glow-md);
}

.performer-card--guest:hover .performer-img-wrap::after {
  border-color: var(--green-bright);
  box-shadow: inset 0 0 24px rgba(0, 200, 60, 0.18);
}

.guest-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #0d0d0d;
  background: var(--green);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
  box-shadow: var(--glow-xs);
}

.performer-name--guest {
  font-size: 18px !important;
  font-weight: 700;
}

/* Crew */
.crew-section { margin-top: 8px; }

.crew-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  opacity: 0.6;
}

.crew-divider::before,
.crew-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 480px;
}

.crew-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
}

.crew-img-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.crew-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(1.0);
}

.crew-role {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.8;
  margin-bottom: 3px;
  line-height: 1.3;
}

.crew-name {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text);
}

/* ============================================================
   TIME TABLE — COMING SOON
   ============================================================ */
.coming-soon-wrap {
  display: flex;
  justify-content: center;
}

.coming-soon-box {
  position: relative;
  width: 100%;
  max-width: 580px;
  padding: 56px 40px;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  text-align: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.cs-scanbar {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  animation: csScan 3.5s ease-in-out infinite;
}

@keyframes csScan {
  0%   { top: 0;    opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}

.cs-label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 38px);
  letter-spacing: 0.28em;
  color: var(--green-bright);
  text-shadow: var(--glow-md);
  margin-bottom: 14px;
}

.coming-soon-box p {
  font-size: 13px;
  color: var(--text-muted-light);
}

/* ============================================================
   TICKET
   ============================================================ */
#ticket { background: var(--bg); }

.ticket-wrap { max-width: 600px; }

.ticket-table {
  width: 100%;
  border-collapse: collapse;
}

.ticket-table th,
.ticket-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}

.ticket-table thead th {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--green-dark);
  background: rgba(0, 200, 60, 0.08);
  text-transform: uppercase;
}

.ticket-table tbody tr {
  transition: background 0.2s;
}

.ticket-table tbody tr:hover {
  background: rgba(0, 200, 60, 0.05);
}

.ticket-table td:last-child {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--green-dark);
  white-space: nowrap;
}

.drink-tag {
  font-size: 10px;
  opacity: 0.65;
  margin-left: 3px;
}

.ticket-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.75;
}

.ticket-cta { text-align: center; }

.ticket-ext-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.55;
}

/* ============================================================
   INFORMATION
   ============================================================ */
.info-wrap { max-width: 700px; }

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  vertical-align: top;
  color: var(--text-light);
}

.info-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted-light);
  white-space: nowrap;
  width: 210px;
  font-weight: 400;
}

@media (max-width: 560px) {
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
  }
  .info-table th {
    width: auto;
    padding-bottom: 2px;
    opacity: 0.7;
  }
  .info-table td {
    padding-top: 2px;
  }
  .info-table tr {
    padding-bottom: 16px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-light);
  }
}

.map-link {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--green-bright);
  text-decoration: none;
  transition: text-shadow 0.2s;
}

.map-link:hover { text-shadow: var(--glow-sm); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--border-light);
  background: var(--green-dark);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--green-bright);
  text-shadow: var(--glow-sm);
  margin-bottom: 6px;
}

.footer-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-muted-light);
  margin-bottom: 24px;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-muted-light);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.sns-link:hover {
  color: var(--green-bright);
  border-color: var(--green-bright);
  box-shadow: var(--glow-sm);
}

.footer-copy {
  font-size: 11px;
  color: var(--text-muted-light);
  opacity: 0.5;
  letter-spacing: 0.08em;
}

/* ============================================================
   Performer tap hint
   ============================================================ */
.performer-tap-hint {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  background: rgba(0, 180, 50, 0.88);
  color: #0d0d0d;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-align: center;
  padding: 7px 0;
  transform: translateY(100%);
  transition: transform 0.22s var(--ease);
  border-radius: 0 0 13px 13px;
}

.performer-card:hover .performer-tap-hint,
.crew-card:hover .performer-tap-hint { transform: translateY(0); }

/* ============================================================
   Performer Modal
   ============================================================ */
.performer-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  /* 閉じているとき: 不可視 + クリック無効 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* 閉じアニメ後に visibility を hidden に */
  transition: opacity 0.32s ease, visibility 0s linear 0.32s;
}

.performer-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  /* 開くとき: visibility を即座に visible に */
  transition: opacity 0.32s ease, visibility 0s linear 0s;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 12, 0.70);
  backdrop-filter: blur(5px);
}

.modal-card {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: 20px;
  border: 1px solid var(--border-mid);
  max-width: 500px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 100, 30, 0.28), 0 4px 16px rgba(0,0,0,0.12);
  opacity: 0;
  transform: scale(0.94) translateY(22px);
  transition:
    opacity   0.32s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.performer-modal.open .modal-card {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.2s;
}

.modal-close:hover { background: rgba(0, 200, 60, 0.18); }

.modal-inner {
  display: flex;
  gap: 20px;
  padding: 28px;
  align-items: flex-start;
}

.modal-img-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border-mid);
}

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

.modal-content { flex: 1; min-width: 0; }

.modal-name {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.modal-handle {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green-dark);
  margin-bottom: 14px;
  opacity: 0.8;
}

.modal-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.85;
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 480px) {
  .modal-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }
}

/* ============================================================
   Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Timetable Image
   ============================================================ */
.timetable-img-wrap {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.timetable-img {
  max-width: 100%;
  width: 600px;
  height: auto;
  border-radius: 8px;
}
