/* ------------------------------
   GLOBAL RESET & BASE
------------------------------ */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #0a0a0a;
  color: #ffffff;
  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;
}

/* ------------------------------
   HERO
------------------------------ */
.hero {
  position: relative;
  padding: 140px 20px 120px;
  text-align: center;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 70%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 50%);
  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.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}
.title-main {
  display: block;
  color: #fff;
}
.title-sub {
  display: block;
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 2px;
  opacity: 0.9;
}
.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}
.hero-meta {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: #e91e63;
  color: #fff;
}
.btn-primary:hover {
  background: #ff2f7a;
}
.hero-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 1rem;
}
.hero-link:hover {
  text-decoration: underline;
}
.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: #e91e63;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.2s ease;
}
.btn:hover { background: #ff2f7a; }

/* ------------------------------
   ABOUT SECTION
------------------------------ */
.about-section {
  padding: 80px 20px;
  background: #0a0a0a;
}
.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: 3px;
  background: #e91e63;
  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: #e91e63;
  margin-top: 1.25rem;
}
.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: #111;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  background: #181818;
}
.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: 80px 20px;
  background: #111;
}
.gm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .gm-grid { grid-template-columns: 1fr; }
}
.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.25rem;
  background: rgba(233, 30, 99, 0.1);
  border-left: 4px solid #e91e63;
  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: #e91e63;
  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: #e91e63;
  color: #fff;
  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, #1a0a12 0%, #0a0a0a 100%);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(233, 30, 99, 0.15) 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;
}

/* ------------------------------
   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(233, 30, 99, 0.4);
}

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

/* --- 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;
}

/* --- 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: 10px;
  height: 60px;
  background: #ff4fd8;
  border-radius: 6px;
  animation: pulse 1.2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(255, 79, 216, 0.6);
}

.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: #141414;
  padding: 1.8rem;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.track-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 79, 216, 0.25);
}

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

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

/* --- 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;
}

/* --- 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: 10px;
  height: 60px;
  background: #ff4fd8;
  border-radius: 6px;
  animation: pulse 1.2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(255, 79, 216, 0.6);
}

.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: #141414;
  padding: 1.8rem;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.track-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 79, 216, 0.25);
}

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

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

/* --- 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: #141414;
  padding: 2rem;
  border-radius: 12px;
  transition: 0.3s ease;
}
.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 79, 216, 0.25);
}
.support-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;
  background: #ff4fd8;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}
.support-btn:hover {
  background: #ff2acb;
}

/* --- 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.2rem;
  background: #ff4fd8;
  color: white;
  font-size: 1.3rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}
.tickets-cta:hover {
  background: #ff2acb;
}

/* --- 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-placeholder {
  width: 100%;
  height: 300px;
  background: #222;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

/* 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(255, 79, 216, 0.1);
  border: 1px solid rgba(255, 79, 216, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

/* 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(255, 79, 216, 0.1);
  border-radius: 6px;
  font-size: 0.95rem;
}

/* 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(255, 79, 216, 0.1);
  border-radius: 6px;
  font-size: 0.95rem;
}

/* 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(255, 79, 216, 0.15),
    rgba(0, 0, 0, 0.9)
  );
  filter: blur(40px);
  transform: translateY(0);
  transition: transform 0.1s linear;
  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 {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 79, 216, 0.9);
  border-radius: 50%;
  animation: float 8s infinite ease-in-out;
}}
.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}
.particle:nth-child(3) {
  top: 40%;
  left: 50%;
  animation-delay: 4s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  50% { transform: translateY(-30px) translateX(20px); opacity: 0.8; }
}