/* ------------------------------
   GLOBAL RESET & BASE
------------------------------ */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #050505;
  color: #e8e4df;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ------------------------------
   LAYOUT
------------------------------ */
.section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}
.section h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ------------------------------
   LAYOUT - CONTAINER
------------------------------ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ------------------------------
   FAITH-ERA IMAGERY OVERLAYS
------------------------------ */
/* Faint image overlay layer */
.faith-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.faith-overlay-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  mix-blend-mode: screen;
  filter: grayscale(0.3) contrast(1.2);
  animation: faithOverlayBreath 20s ease-in-out infinite alternate;
}
.faith-overlay-img.symbols {
  opacity: 0.06;
  object-position: center center;
  animation-duration: 18s;
}
.faith-overlay-img.vinyl {
  opacity: 0.04;
  object-position: center center;
  animation-duration: 25s;
  animation-delay: 5s;
}
@keyframes faithOverlayBreath {
  0% { opacity: 0.03; }
  50% { opacity: 0.08; }
  100% { opacity: 0.04; }
}

/* Faith-era gold glyphs (CSS symbols) */
.faith-glyphs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.faith-glyph {
  position: absolute;
  color: rgba(212, 175, 55, 0.12);
  font-weight: 300;
  line-height: 1;
  user-select: none;
}
/* Cross */
.glyph-cross {
  top: 15%;
  left: 8%;
  font-size: 5rem;
  transform: rotate(-8deg);
  animation: glyphFade1 12s ease-in-out infinite alternate;
}
/* Star */
.glyph-star {
  top: 25%;
  right: 10%;
  font-size: 3.5rem;
  transform: rotate(12deg);
  animation: glyphFade2 15s ease-in-out infinite alternate;
}
/* Heart */
.glyph-heart {
  bottom: 20%;
  left: 12%;
  font-size: 3rem;
  transform: rotate(-15deg);
  animation: glyphFade3 10s ease-in-out infinite alternate;
}
/* Note */
.glyph-note {
  bottom: 30%;
  right: 8%;
  font-size: 4rem;
  transform: rotate(5deg);
  animation: glyphFade1 14s ease-in-out infinite alternate;
}
/* Ankh / symbol */
.glyph-ankh {
  top: 55%;
  left: 45%;
  font-size: 3rem;
  transform: rotate(-3deg);
  animation: glyphFade2 11s ease-in-out infinite alternate;
}
/* Small cross */
.glyph-cross-sm {
  top: 70%;
  right: 20%;
  font-size: 2.5rem;
  transform: rotate(20deg);
  animation: glyphFade3 13s ease-in-out infinite alternate;
}
@keyframes glyphFade1 {
  0% { opacity: 0.08; }
  50% { opacity: 0.18; }
  100% { opacity: 0.1; }
}
@keyframes glyphFade2 {
  0% { opacity: 0.12; }
  50% { opacity: 0.06; }
  100% { opacity: 0.15; }
}
@keyframes glyphFade3 {
  0% { opacity: 0.06; }
  50% { opacity: 0.14; }
  100% { opacity: 0.08; }
}

/* Section-level faint overlays */
.section-faith-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.section-faith-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.035;
  mix-blend-mode: screen;
  filter: grayscale(0.4);
}

/* Section glyph accents (smaller, subtler) */
.section-glyph {
  position: absolute;
  color: rgba(212, 175, 55, 0.06);
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ------------------------------
   HERO
------------------------------ */
.hero {
  position: relative;
  padding: 160px 20px 140px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% 90%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 50% 0%, rgba(255, 200, 100, 0.03) 0%, transparent 50%),
    radial-gradient(circle at center, #0d0d0d 0%, #050505 70%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 40%, transparent 70%, rgba(0,0,0,0.4) 100%),
    radial-gradient(ellipse 30% 50% at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.logo-container {
  margin-bottom: 1.5rem;
}
.logo-container .logo {
  max-width: 200px;
  height: auto;
}
.hero-title {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 6px;
  margin-bottom: 0.5rem;
}
.title-main {
  display: block;
  color: #fff;
  text-shadow:
    0 0 60px rgba(212, 175, 55, 0.15),
    0 0 120px rgba(212, 175, 55, 0.05);
}
.title-sub {
  display: block;
  font-size: 0.45em;
  font-weight: 400;
  letter-spacing: 4px;
  color: rgba(212, 175, 55, 0.7);
  text-transform: uppercase;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-style: italic;
  letter-spacing: 1px;
}
.hero-meta {
  font-size: 0.95rem;
  color: rgba(212, 175, 55, 0.6);
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #050505;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #e6c547 0%, #d4af37 100%);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.35);
}
.hero-link {
  color: rgba(212, 175, 55, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.hero-link:hover {
  color: rgba(212, 175, 55, 0.9);
}

/* Audition Banner */
.audition-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.7rem 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50px;
  text-decoration: none;
  color: #d4af37;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: bannerPulse 3s ease-in-out infinite;
}
.audition-banner:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}
.audition-badge {
  background: #d4af37;
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}
.audition-text {
  color: rgba(255, 255, 255, 0.9);
}
@keyframes bannerPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
  50% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.1); }
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
}

/* ------------------------------
   BUTTONS
------------------------------ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #050505;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.btn:hover {
  background: linear-gradient(135deg, #e6c547 0%, #d4af37 100%);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

/* ------------------------------
   ABOUT SECTION
------------------------------ */
.about-section {
  padding: 80px 20px;
  background: #080808;
}
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 0 auto 1rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-image img {
  width: 100%;
  border-radius: 8px;
}
.about-text p {
  margin-bottom: 1rem;
  opacity: 0.9;
}
.about-text .highlight {
  font-weight: 600;
  color: #d4af37;
  margin-top: 1.25rem;
  font-style: italic;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
.feature-card {
  background: rgba(15, 15, 15, 0.8);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.08);
}
.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.feature-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ------------------------------
   GEORGE MICHAEL SECTION
------------------------------ */
.george-michael-section {
  padding: 100px 20px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(255, 180, 80, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    #0a0a0a;
}
.gm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .gm-grid { grid-template-columns: 1fr; }
}
.gm-image {
  border-radius: 12px;
  overflow: hidden;
}
.gm-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.gold {
  color: #d4a84b;
}
.gm-text p {
  margin-bottom: 1rem;
  opacity: 0.9;
}
.quote-box {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid rgba(212, 175, 55, 0.4);
  border-radius: 0 8px 8px 0;
}
.quote-text {
  font-style: italic;
  margin-bottom: 0.5rem;
}
.quote-source {
  font-size: 0.9rem;
  opacity: 0.7;
}
.gm-image img {
  width: 100%;
  border-radius: 8px;
}

/* ------------------------------
   MUSIC & SOUND WORLD
------------------------------ */
.msw-section {
  padding: 80px 20px;
  background: #111;
}
.msw-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.msw-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.msw-description {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.msw-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  height: 48px;
}
.msw-bars .bar {
  width: 10px;
  min-height: 8px;
  background: #d4af37;
  border-radius: 4px 4px 0 0;
  animation: msw-pulse 1s ease-in-out infinite;
}
.msw-bars .bar1 { animation-delay: 0s; }
.msw-bars .bar2 { animation-delay: 0.15s; }
.msw-bars .bar3 { animation-delay: 0.3s; }
.msw-bars .bar4 { animation-delay: 0.45s; }
.msw-bars .bar5 { animation-delay: 0.6s; }
@keyframes msw-pulse {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: translateY(-60px) translateX(40px); opacity: 1; }
}

/* ------------------------------
   SETLIST SECTION
------------------------------ */
.setlist-section {
  padding: 80px 20px;
  background: #0a0a0a;
}
.section-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: -0.5rem;
}
.setlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.song-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #111;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.song-card:hover {
  background: #181818;
  transform: translateX(4px);
}
.song-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.song-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}
.song-artist, .song-theme {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ------------------------------
   CTA SECTION
------------------------------ */
.cta-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0d0a05 0%, #050505 100%);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-text {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}
.btn-large {
  padding: 14px 32px;
  font-size: 1.1rem;
}
.cta-details {
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* ------------------------------
   ABOUT JASONPLUS SECTION
------------------------------ */
.about-jp-section {
  padding: 80px 20px;
  background: #111;
}
.jp-logo {
  max-width: 180px;
  margin-bottom: 1rem;
}
.jp-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
  max-width: 700px;
}
.jp-bio {
  margin-top: 2rem;
}
.jp-bio-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.jp-headshot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.jp-bio-lead {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ------------------------------
   FOOTER CONTENT
------------------------------ */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo {
  max-width: 120px;
  opacity: 0.9;
}
.footer-text {
  font-size: 0.95rem;
  opacity: 0.8;
}
.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* --- CAST SECTION --- */

.cast-section {
  padding: 6rem 2rem;
  background: #0a0a0a;
  color: white;
  text-align: center;
}

.cast-section .section-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Marquee */
.cast-marquee {
  overflow: hidden;
  white-space: nowrap;
  margin: 2rem 0;
  opacity: 0.8;
}

.cast-marquee .marquee-track {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Grid */
.cast-section .cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin: 3rem auto;
  max-width: 1200px;
}

.cast-card {
  background: #111;
  padding: 1.5rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.cast-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

/* Photo Placeholder */
.cast-photo {
  width: 100%;
  height: 260px;
  background: #222;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Name & Role */
.cast-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.cast-role {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}

/* Bio Reveal */
.cast-bio {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.cast-card:hover .cast-bio {
  max-height: 200px;
  opacity: 1;
}

/* --- TEAM INTRO --- */
.team-intro {
  max-width: 600px;
  margin: -1rem auto 3rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- CREATIVE TEAM GRID --- */
.creative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.creative-card {
  background: rgba(15, 15, 15, 0.8);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.creative-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.2);
}
.creative-photo {
  width: 100px;
  height: 100px;
  background: #1a1a1a;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 2px solid rgba(212, 175, 55, 0.15);
}
.creative-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #fff;
}
.creative-roles {
  font-size: 0.85rem;
  color: rgba(212, 175, 55, 0.7);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.creative-bio {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* --- CAST WANTED SLOTS --- */
.cast-open .cast-photo.cast-wanted {
  background: rgba(212, 175, 55, 0.06);
  border: 2px dashed rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.wanted-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.3;
}
.cast-open .cast-role {
  color: rgba(212, 175, 55, 0.6);
  font-style: italic;
}
.cast-confirmed {
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.cast-audition-cta {
  text-align: center;
  margin: 3rem 0 2rem;
  font-size: 1.1rem;
}
.cast-audition-cta a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.cast-audition-cta a:hover {
  color: #e6c547;
}

/* ------------------------------
   CAST GRID (legacy)
------------------------------ */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.cast-member {
  background: #111;
  padding: 20px;
  border-radius: 6px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cast-member:hover {
  transform: translateY(-4px);
  background: #181818;
}
.cast-member h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.cast-member p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* ------------------------------
   MUSIC SECTION
------------------------------ */
.music-track {
  margin-bottom: 20px;
  padding: 20px;
  background: #111;
  border-radius: 6px;
}
.music-track h4 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.music-track p {
  opacity: 0.8;
}

/* ------------------------------
   FOOTER
------------------------------ */
.footer {
  text-align: center;
  padding: 60px 20px;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 600px) {
  .hero h1 { font-size: 2.4rem; }
  .section { padding: 60px 20px; }
}

/* Fade-in animation */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee */
.marquee {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  animation: marquee 18s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Cast hover expand */
.cast-member {
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.cast-member.expanded {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Music World pulse */
.pulse {
  width: 14px;
  height: 14px;
  background: #d4af37;
  border-radius: 50%;
  display: inline-block;
  margin: 6px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- MUSIC SECTION --- */

.music-section {
  padding: 6rem 2rem;
  background: #0d0d0d;
  color: white;
  text-align: center;
}

.music-section .section-title {
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Pulse Bars */
.pulse-bars {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.pulse-bars .bar {
  width: 8px;
  height: 60px;
  background: linear-gradient(180deg, #d4af37, rgba(212, 175, 55, 0.4));
  border-radius: 6px;
  animation: pulse 1.2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.pulse-bars .bar:nth-child(2) { animation-delay: 0.15s; }
.pulse-bars .bar:nth-child(3) { animation-delay: 0.3s; }
.pulse-bars .bar:nth-child(4) { animation-delay: 0.45s; }
.pulse-bars .bar:nth-child(5) { animation-delay: 0.6s; }

@keyframes pulse {
  0%, 100% { height: 40px; opacity: 0.6; }
  50% { height: 90px; opacity: 1; }
}

/* Description */
.music-description {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* Tracklist */
.tracklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.track-card {
  background: rgba(12, 12, 12, 0.9);
  padding: 1.8rem;
  border-radius: 8px;
  text-align: left;
  border: 1px solid rgba(212, 175, 55, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.track-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.06);
}

.track-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.track-note {
  opacity: 0.75;
  line-height: 1.5;
}

/* Music section visual accent */
.music-visual {
  max-width: 320px;
  margin: 0 auto 3rem;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.7;
  border: 1px solid rgba(212, 175, 55, 0.1);
}
.music-accent-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Support section gold figures overlay */
.support-figures {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 350px;
  height: auto;
  opacity: 0.08;
  mix-blend-mode: screen;
  filter: brightness(1.5);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .support-figures { display: none; }
}

/* Creative team + cast headshots */
.creative-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.cast-headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* --- SUPPORT SECTION --- */
.support-section {
  padding: 6rem 2rem;
  background: #0a0a0a;
  color: white;
  text-align: center;
}
.support-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.85;
  font-size: 1.2rem;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.support-card {
  background: rgba(12, 12, 12, 0.9);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  transition: 0.3s ease;
}
.support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.05);
}
.support-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #050505;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}
.support-btn:hover {
  background: linear-gradient(135deg, #e6c547 0%, #d4af37 100%);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* --- TICKETS SECTION --- */
.tickets-section {
  padding: 6rem 2rem;
  background: #0d0d0d;
  color: white;
  text-align: center;
}
.tickets-description {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.85;
}
.tickets-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #050505;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}
.tickets-cta:hover {
  background: linear-gradient(135deg, #e6c547 0%, #d4af37 100%);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.35);
}

/* Greyed-out ticket links */
.tickets-disabled {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.35) !important;
  box-shadow: none !important;
  cursor: default;
  pointer-events: none;
}

/* --- VENUE SECTION --- */
.venue-section {
  padding: 6rem 2rem;
  background: #0a0a0a;
  color: white;
  text-align: center;
}
.venue-description {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.85;
}
.venue-map {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.venue-map iframe {
  display: block;
}

/* Support refinement */
.support-impact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto 3rem;
  opacity: 0.85;
  flex-wrap: wrap;
}
.support-impact .impact-item {
  padding: 0.6rem 1.2rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: rgba(212, 175, 55, 0.8);
}

/* Tickets refinement */
.tickets-details {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.75;
  flex-wrap: wrap;
}
.ticket-item {
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 6px;
  font-size: 0.95rem;
  color: rgba(212, 175, 55, 0.7);
}

/* Parallax base */
.parallax-section {
  position: relative;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(212, 175, 55, 0.08),
    rgba(0, 0, 0, 0.95)
  );
  filter: blur(40px);
  z-index: 1;
}
.parallax-content {
  position: relative;
  z-index: 2;
}
/* Particle effects */
.parallax-foreground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.particle {
  display: none;
}