/* ══ FUSION PAGE — EXCLUSIVE COLLAB PORTAL ══ */

/* ── MERGE INTRO OVERLAY ── */
#merge-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #080505;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s ease;
}
#merge-overlay.hidden {
  display: none;
}
#merge-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}
#merge-gif {
  width: min(70vw, 420px);
  height: min(70vw, 420px);
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(232, 21, 21, 0.4), 0 0 120px rgba(255, 102, 0, 0.2);
  transform: scale(1);
  transition: transform 0.6s ease-in, border-radius 0.6s ease-in;
}
#merge-overlay.fade-out #merge-gif {
  transform: scale(6);
  border-radius: 0;
}

/* ── NAV LOGO AS LINK (fusion page) ── */
a.nav-logo {
  text-decoration: none;
  cursor: pointer;
}

/* ── NAV FUSION LINK (injected on both pages) ── */
.nav-fusion {
  position: relative;
  color: var(--accent2) !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
}
.nav-fusion::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border-radius: 2px;
  animation: pulse-underline 2s ease-in-out infinite;
}
@keyframes pulse-underline {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── ACCESS GATE OVERLAY ── */
#fusion-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  padding: 2rem;
}

.gate-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: neon-glow-bg 8s linear infinite;
}

.gate-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1rem;
}

.gate-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 10vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
  background: linear-gradient(135deg, #fff 0%, #ff6600 40%, #e81515 70%, #ff007a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  animation: hue-shift 10s linear infinite;
}

.gate-subtitle {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.gate-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

#gate-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 0.85rem 1.5rem;
  text-align: center;
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#gate-input::placeholder {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: none;
}
#gate-input:focus {
  border-color: var(--accent1);
  box-shadow: 0 0 20px rgba(232, 21, 21, 0.2);
}
#gate-input.shake {
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-6px); }
  80%       { transform: translateX(6px); }
}

#gate-btn {
  background: linear-gradient(135deg, #e81515, #ff6600, #ff007a);
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.85rem 2rem;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 25px rgba(232, 21, 21, 0.35);
}
#gate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(232, 21, 21, 0.5);
}

.gate-error {
  color: var(--accent1);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}
.gate-error.hidden { display: none; }

/* ── FUSION CONTENT ── */
#fusion-content { display: none; }
#fusion-content.visible { display: block; }

/* ── SUCCESS BANNER ── */
#success-banner {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  background: linear-gradient(135deg, #1a1a0a, #0a1a0a);
  border: 1px solid #44ff88;
  border-radius: 14px;
  padding: 1.2rem 2rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 30px rgba(68, 255, 136, 0.2);
  animation: slide-down 0.4s ease;
}
#success-banner.hidden { display: none; }
.success-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: #44ff88;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.success-body {
  font-size: 0.85rem;
  color: var(--muted);
}
@keyframes slide-down {
  from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── FUSION HERO ── */
#fusion-hero {
  position: relative;
  z-index: 2;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 2rem 4rem;
}

.fusion-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 21, 21, 0.12);
  border: 1px solid rgba(232, 21, 21, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1.5rem;
}
.fusion-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent1);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.1; }
}

.fusion-hero-title {
  font-family: var(--font-title);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 5%, #ff6600 35%, #e81515 60%, #ff007a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1.5rem;
  animation: hue-shift 12s linear infinite;
}

.fusion-hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.75;
}

/* ── FORM SECTION ── */
#fusion-form-section {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.fusion-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.85rem 1.2rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(160, 120, 120, 0.5);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(232, 21, 21, 0.5);
  box-shadow: 0 0 15px rgba(232, 21, 21, 0.1);
}

.form-select {
  cursor: pointer;
  background-image: url("../arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 3rem;
}
.form-select option { background: #130a0a; }

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* ── WORD SECTION ── */
.word-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.words-counter {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.words-counter span {
  color: var(--accent1);
  font-weight: 700;
  font-size: 0.95rem;
}

#randomize-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
#randomize-btn:hover {
  border-color: var(--accent2);
  color: var(--accent2);
  background: rgba(255, 102, 0, 0.08);
}
#randomize-btn svg {
  transition: transform 0.4s ease;
}
#randomize-btn.spinning svg {
  animation: spin 0.5s ease;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.word-pool {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem;
  min-height: 80px;
  align-content: flex-start;
}

.word-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(160, 120, 120, 0.2);
  border-radius: 50px;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 1rem;
  transition: all 0.15s;
  min-height: 34px;
}
.word-chip:hover {
  background: rgba(232, 21, 21, 0.1);
  border-color: rgba(232, 21, 21, 0.4);
  color: var(--text);
  transform: translateY(-1px);
}
.word-chip.selected {
  background: linear-gradient(135deg, rgba(232,21,21,0.25), rgba(255,102,0,0.2));
  border-color: var(--accent1);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 0 10px rgba(232, 21, 21, 0.2);
}
.word-chip.shake {
  animation: chip-shake 0.35s ease;
}
@keyframes chip-shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px); }
}

.selected-words-display {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  min-height: 44px;
  align-items: center;
  padding: 0.6rem 0;
}

.selected-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(232,21,21,0.2), rgba(255,102,0,0.15));
  border: 1px solid var(--accent1);
  border-radius: 50px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem 0.35rem 1rem;
  animation: pop-in 0.2s ease;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.selected-chip:hover {
  background: linear-gradient(135deg, rgba(232,21,21,0.35), rgba(255,102,0,0.25));
  border-color: var(--accent2);
}
.selected-chip-remove {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.6;
  font-style: normal;
  font-weight: 400;
  transition: opacity 0.15s;
}
.selected-chip:hover .selected-chip-remove {
  opacity: 1;
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

.selected-placeholder {
  font-size: 0.82rem;
  color: rgba(160, 120, 120, 0.5);
  font-style: italic;
}

.word-hint {
  font-size: 0.75rem;
  color: rgba(160, 120, 120, 0.5);
  letter-spacing: 0.04em;
}

/* ── FORM DIVIDER ── */
.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── SUBMIT BUTTON ── */
.fusion-submit-wrap {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.fusion-submit {
  padding: 1rem 3rem;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #e81515, #ff6600, #ff007a);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(232, 21, 21, 0.35);
}
.fusion-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(232, 21, 21, 0.5);
}

/* ── LINEUP SECTION ── */
#fusion-lineup {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem 7rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.lineup-note {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 0.6rem;
  margin-bottom: 3.5rem;
}

.lineup-spots-left {
  display: inline-block;
  background: rgba(232, 21, 21, 0.12);
  border: 1px solid rgba(232, 21, 21, 0.3);
  border-radius: 50px;
  color: var(--accent1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.3rem 1rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.lineup-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.lineup-spot {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  position: relative;
}
.lineup-spot:last-child { border-bottom: none; }

.lineup-spot.filled {
  background: linear-gradient(90deg, rgba(232,21,21,0.1), rgba(255,102,0,0.06));
  animation: neon-glow-bg 8s linear infinite;
}
.lineup-spot.filled:hover { background: linear-gradient(90deg, rgba(232,21,21,0.16), rgba(255,102,0,0.1)); }

.lineup-spot.empty {
  background: transparent;
}
.lineup-spot.empty:hover { background: rgba(255,255,255,0.02); }

.spot-num {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent1);
  opacity: 0.6;
  min-width: 2rem;
}
.lineup-spot.empty .spot-num { color: var(--muted); opacity: 0.35; }

.spot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(232, 21, 21, 0.3);
}

.spot-avatar-empty {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(160, 120, 120, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spot-name {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}
.lineup-spot.empty .spot-name { color: rgba(160, 120, 120, 0.35); font-style: italic; }

.spot-role {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-left: auto;
}

.spot-lock {
  font-size: 0.85rem;
  opacity: 0.2;
  margin-left: auto;
}

.spot-song {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.75;
  white-space: nowrap;
  margin-left: auto;
}

/* ── INFO GRID (spots / deadline / release) ── */
.fusion-info-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}

.fusion-info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 130px;
  flex: 1;
  max-width: 180px;
}

.fusion-info-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
}

.fusion-info-value {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.fusion-info-sub {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ── PROCESS SECTION ── */
#fusion-process {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 3rem;
}

.process-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 21, 21, 0.4);
}

.process-step-num {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent1);
  opacity: 0.7;
}

.process-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,21,21,0.18), rgba(255,102,0,0.12));
  border: 1px solid rgba(232, 21, 21, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent2);
}

.process-step-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}

.process-step-body {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.6rem;
  padding-top: 3.5rem;
  color: rgba(232, 21, 21, 0.4);
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 400px;
    margin: 3rem auto 0;
  }
  .process-arrow {
    padding: 0;
    transform: rotate(90deg);
    height: 24px;
  }
}

/* ── STYLE WARNING ── */
.style-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: var(--accent2);
  line-height: 1.55;
  animation: pop-in 0.2s ease;
}
.style-warning.hidden { display: none; }

/* ── PLAYLIST FIELD ── */
.form-input-prefix-wrap {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input-prefix-wrap:focus-within {
  border-color: rgba(232, 21, 21, 0.5);
  box-shadow: 0 0 15px rgba(232, 21, 21, 0.1);
}
.form-input-prefix {
  padding: 0 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.15);
  min-height: 46px;
}
.form-input-prefix-wrap .form-input {
  border: none;
  border-radius: 0;
  background: transparent;
}
.form-input-prefix-wrap .form-input:focus {
  box-shadow: none;
}

/* ── CONTACT NOTE ── */
#fusion-contact {
  text-align: center;
  padding: 2rem var(--page-pad);
  position: relative;
  z-index: 2;
}
.fusion-contact-note {
  font-size: 0.95rem;
  color: rgba(220, 190, 190, 0.7);
  line-height: 1.6;
}
.fusion-contact-link {
  color: var(--accent2);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 102, 0, 0.35);
  transition: border-color 0.2s, color 0.2s;
}
.fusion-contact-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* ── FOOTER NOTE ── */
.fusion-footer-note {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: rgba(160, 120, 120, 0.4);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .fusion-form { padding: 1.8rem 1.5rem; }
  .lineup-grid { max-width: 100%; }
  .gate-box { padding: 2.5rem 1.8rem; }
}

@media (max-width: 480px) {
  .spot-name { font-size: 0.82rem; }
  .lineup-spot { padding: 0.75rem 1rem; }
}

/* ── PRIVATE PLAYER ── */
#fusion-player-section { position: relative; z-index: 2; padding: 5rem 2rem; text-align: center; }
#fusion-player-section.hidden { display: none; }

.fusion-player-inner { max-width: 540px; margin: 0 auto; }

.fusion-player-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: neon-glow-bg 8s linear infinite;
}

.player-song-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #fff 0%, #ff6600 50%, #e81515 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.fusion-audio-el {
  width: 100%;
  accent-color: var(--accent1);
  border-radius: 8px;
}

.fusion-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #e81515, #ff6600);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 25px rgba(232, 21, 21, 0.3);
}
.fusion-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(232, 21, 21, 0.5);
}

.player-lyrics-wrap {
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: left;
}
.player-lyrics-wrap.hidden { display: none; }

.player-lyrics-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1rem;
}

.player-lyrics {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.9;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 340px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(232,21,21,0.3) transparent;
}
.player-lyrics::-webkit-scrollbar { width: 4px; }
.player-lyrics::-webkit-scrollbar-track { background: transparent; }
.player-lyrics::-webkit-scrollbar-thumb { background: rgba(232,21,21,0.3); border-radius: 4px; }
