/* ============================================================
   FUNK CANCER — 1st Annual Benefit Concert
   Black / charcoal / gold theme, purple accents
   (purple = pediatric cancer awareness), disco ball + spotlights
   ============================================================ */

:root {
  --bg-black: #0a0a0c;
  --bg-char: #141416;
  --charcoal: #1b1b1e;
  --charcoal-hi: #232327;
  --gold: #f0c24b;
  --gold-hi: #f7dd8b;
  --gold-deep: #b8860b;
  --purple: #a855f7;
  --purple-soft: #c9a2f5;
  --ink: #f4f1ea;
  --ink-soft: rgba(244, 241, 234, 0.72);
  --line-gold: rgba(240, 194, 75, 0.28);
  --line-soft: rgba(244, 241, 234, 0.14);
  --font-display: "Anton", sans-serif;
  --font-body: "Outfit", sans-serif;
  /* driven by JS on scroll */
  --scroll: 0;
  --beam-sway: 0deg;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1100px 650px at 15% -5%, rgba(240, 194, 75, 0.09), transparent 60%),
    radial-gradient(950px 550px at 85% 12%, rgba(168, 85, 247, 0.08), transparent 60%),
    radial-gradient(900px 900px at 50% 110%, rgba(240, 194, 75, 0.07), transparent 65%),
    linear-gradient(180deg, var(--bg-black) 0%, var(--bg-char) 45%, var(--bg-black) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection { background: var(--gold); color: #1a1200; }

/* ---------- sparkle canvas ---------- */
#sparkles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ---------- stage light beams ---------- */
.beams {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.beam {
  position: absolute;
  top: -12vh;
  width: 16vw;
  min-width: 130px;
  height: 130vh;
  opacity: 0.4;
  filter: blur(18px);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0% 100%);
  transform-origin: 50% 0;
  will-change: transform;
}

.beam-l1, .beam-l2 { left: -4vw; }
.beam-r1, .beam-r2 { right: -4vw; }

.beam-l1 {
  background: linear-gradient(180deg, rgba(240, 194, 75, 0.6), rgba(240, 194, 75, 0) 80%);
  animation: sway-a 9s ease-in-out infinite alternate;
}
.beam-l2 {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 78%);
  animation: sway-b 12s ease-in-out infinite alternate;
}
.beam-r1 {
  background: linear-gradient(180deg, rgba(240, 194, 75, 0.55), rgba(240, 194, 75, 0) 80%);
  animation: sway-c 10s ease-in-out infinite alternate;
}
.beam-r2 {
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.4), rgba(168, 85, 247, 0) 75%);
  animation: sway-d 13s ease-in-out infinite alternate;
}

@keyframes sway-a { from { transform: rotate(calc(-24deg + var(--beam-sway))); } to { transform: rotate(calc(14deg + var(--beam-sway))); } }
@keyframes sway-b { from { transform: rotate(calc(18deg + var(--beam-sway))); }  to { transform: rotate(calc(-10deg + var(--beam-sway))); } }
@keyframes sway-c { from { transform: rotate(calc(22deg - var(--beam-sway))); }  to { transform: rotate(calc(-16deg - var(--beam-sway))); } }
@keyframes sway-d { from { transform: rotate(calc(-14deg - var(--beam-sway))); } to { transform: rotate(calc(10deg - var(--beam-sway))); } }

/* ---------- ticker ---------- */
.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-bottom: 1px solid var(--line-gold);
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(4px);
  padding: 0.55rem 0;
}

.ticker-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: ticker 30s linear infinite;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--ink);
  white-space: nowrap;
}

.ticker-track i { color: var(--gold); font-style: normal; }
.ticker-track i.hh { color: var(--purple-soft); }

@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 5rem;
}

.hero-inner {
  text-align: center;
  max-width: 900px;
  position: relative;
}

/* badge + radio partner row */
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 2.6rem);
  margin-bottom: 1.6rem;
}

/* 1st annual badge */
.badge-annual {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.2vw, 1.3rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #1a1200;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold) 45%, #c9971c);
  padding: 0.7rem 1.2rem;
  transform: rotate(-7deg);
  box-shadow: 0 0 26px rgba(240, 194, 75, 0.35), 0 4px 14px rgba(0, 0, 0, 0.5);
  clip-path: polygon(3% 8%, 97% 0, 100% 88%, 5% 100%, 0 60%);
  text-transform: uppercase;
}

/* title — gold logo artwork */
.title {
  display: flex;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.title-logo {
  display: block;
  width: min(640px, 86vw);
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(240, 194, 75, 0.22));
}

.tagline {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: clamp(0.68rem, 1.8vw, 0.95rem);
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.tagline i { font-style: normal; color: var(--purple-soft); margin: 0 0.5rem; }

.benefit-line {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(0.6rem, 1.5vw, 0.78rem);
  font-weight: 600;
  margin-bottom: 2.2rem;
}

.benefit-line a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 194, 75, 0.4);
  padding-bottom: 2px;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.benefit-line b { color: var(--gold); font-weight: 800; }

.benefit-line a:hover { color: #fff; border-color: var(--gold); }
.benefit-line a:hover b { color: var(--gold-hi); }

/* countdown */
.countdown {
  display: flex;
  gap: clamp(0.5rem, 1.6vw, 1rem);
  justify-content: center;
  flex-wrap: wrap;
}

.cd-unit {
  min-width: clamp(70px, 9vw, 96px);
  padding: 0.8rem 0.6rem 0.7rem;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--charcoal), #101012);
  border: 1px solid var(--line-gold);
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.5), 0 8px 18px rgba(0, 0, 0, 0.4);
}

.cd-unit b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold) 55%, #c9971c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  font-variant-numeric: tabular-nums;
}

.cd-unit small {
  display: block;
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--purple-soft);
}

.cd-caption {
  margin: 0.9rem 0 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.countdown.cd-live {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--gold);
  text-shadow: 0 0 24px rgba(240, 194, 75, 0.5);
  transform: rotate(-2deg);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:active { transform: scale(0.97); }

.btn-ic { width: 20px; height: 20px; flex: none; }

.btn-gold {
  color: #1a1200;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold) 40%, #d3a02b);
  box-shadow: 0 0 28px rgba(240, 194, 75, 0.35), 0 6px 18px rgba(0, 0, 0, 0.45);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 44px rgba(240, 194, 75, 0.55), 0 10px 24px rgba(0, 0, 0, 0.5);
}

.btn-purple {
  color: #fff;
  background: linear-gradient(135deg, #b06bf7, var(--purple) 55%, #7e22ce);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.3), 0 6px 18px rgba(0, 0, 0, 0.45);
}
.btn-purple:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.5), 0 10px 24px rgba(0, 0, 0, 0.5);
}

.btn-ghost {
  color: var(--ink);
  border: 2px solid rgba(240, 194, 75, 0.5);
  background: rgba(240, 194, 75, 0.08);
}
.btn-ghost:hover {
  background: rgba(240, 194, 75, 0.18);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 26px rgba(240, 194, 75, 0.25);
}

.btn-big { font-size: 1.1rem; padding: 1.15rem 2.6rem; }

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* radio partner "sticker" */
.radio-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  text-decoration: none;
  transform: rotate(-3deg);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.radio-chip small {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.radio-chip img {
  display: block;
  width: clamp(110px, 13vw, 150px);
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.55));
}

/* hero variant sits beside the 1st Annual badge, a bit bigger */
.radio-chip-hero {
  margin-top: 0;
  transform: rotate(3deg);
}

.radio-chip-hero img { width: clamp(140px, 17vw, 200px); }

.radio-chip-hero:hover { transform: rotate(1deg) translateY(-3px); }

.radio-chip:hover {
  transform: rotate(-1deg) translateY(-3px);
  filter: drop-shadow(0 0 18px rgba(240, 194, 75, 0.25));
}

.radio-chip-footer {
  transform: rotate(2.5deg);
  margin: 0 0 2.2rem;
}

.radio-chip-footer:hover { transform: rotate(1deg) translateY(-3px); }

/* scroll hint + equalizer */
.hero-scroll-hint {
  margin-top: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.62rem;
  font-weight: 600;
}

.eq { display: flex; gap: 4px; align-items: flex-end; height: 22px; }

.eq b {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--purple-soft), var(--gold));
  animation: eq-bounce 0.9s ease-in-out infinite;
}

.eq b:nth-child(1) { animation-delay: 0s; }
.eq b:nth-child(2) { animation-delay: 0.15s; }
.eq b:nth-child(3) { animation-delay: 0.3s; }
.eq b:nth-child(4) { animation-delay: 0.1s; }
.eq b:nth-child(5) { animation-delay: 0.25s; }
.eq b:nth-child(6) { animation-delay: 0.05s; }
.eq b:nth-child(7) { animation-delay: 0.35s; }
.eq b:nth-child(8) { animation-delay: 0.2s; }
.eq b:nth-child(9) { animation-delay: 0.4s; }

@keyframes eq-bounce {
  0%, 100% { height: 6px; }
  50% { height: 22px; }
}

/* ---------- disco ball ---------- */
.disco-rig {
  position: absolute;
  top: 0;
  left: clamp(0.5rem, 6vw, 7rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.disco-string {
  width: 2px;
  height: clamp(40px, 8vh, 90px);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.6));
}

.disco-ball {
  display: block;
  width: clamp(90px, 13vw, 170px);
  height: clamp(90px, 13vw, 170px);
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(240, 194, 75, 0.35),
    0 0 90px rgba(240, 194, 75, 0.18);
}

.disco-glow {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 180%;
  height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(240, 194, 75, 0.22), transparent 65%);
  filter: blur(8px);
}

/* ---------- sections ---------- */
section { position: relative; z-index: 2; padding: 5.5rem 1.5rem; }

.section-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 0 24px rgba(240, 194, 75, 0.3);
}

/* ---------- lineup ---------- */
.lineup { text-align: center; }

.lineup-names {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.artist { line-height: 0.95; }

.artist span { display: block; }

.artist-zapp span {
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 8.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(175deg, var(--gold-hi) 0%, var(--gold) 45%, #a8770d 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: rotate(-2deg);
  filter: drop-shadow(0 4px 0 #5c3d05) drop-shadow(0 0 26px rgba(240, 194, 75, 0.35));
}

.artist-zapp small {
  display: block;
  color: var(--purple-soft);
  letter-spacing: 0.6em;
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  margin-top: 0.4rem;
}

.artist-shg span {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.4rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, #ffffff 0%, #e8ecf5 30%, #9aa2b5 50%, #ffffff 60%, #b9bfcd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: rotate(1.5deg);
  filter: drop-shadow(0 4px 0 #33383f) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.6));
}

.artist-ff span {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8.5vw, 5.6rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #e2ccfd 0%, var(--purple-soft) 45%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 0 #4c1d7a) drop-shadow(0 0 30px rgba(168, 85, 247, 0.35));
}

.lineup-sub {
  margin-top: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.lineup-sub b { color: var(--gold); }
.lineup-sub em { color: var(--purple-soft); font-style: normal; }

/* ---------- details ---------- */
.details { max-width: 1100px; margin: 0 auto; }

.details-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 1px;
  background: var(--line-gold);
  border: 1px solid var(--line-gold);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), 0 18px 40px rgba(0, 0, 0, 0.45);
}

.detail {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.8rem 1.6rem;
  background: linear-gradient(180deg, var(--charcoal), #111113);
}

.detail-icon {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--charcoal-hi);
  border: 1px solid var(--line-gold);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
}

.detail-icon svg { width: 26px; height: 26px; }

.detail-text small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--purple-soft);
  margin-bottom: 0.25rem;
}

.detail-text strong {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.25;
}

.venue-photo {
  position: relative;
  /* full-bleed: break out of the centered 1100px container */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 2rem;
  overflow: hidden;
  aspect-ratio: 2.7 / 1;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), 0 18px 40px rgba(0, 0, 0, 0.45);
}

.venue-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* sunset sky + terraza stage canopy in frame; trim the empty plaza floor */
  object-position: 50% 40%;
  display: block;
}

/* dark wash so the photo sits inside the theme */
.venue-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.4), transparent 32%, transparent 68%, rgba(10, 10, 12, 0.55)),
    linear-gradient(90deg, rgba(10, 10, 12, 0.2), transparent 25%, transparent 75%, rgba(10, 10, 12, 0.2));
  pointer-events: none;
}

/* casino logo chip on the photo */
.venue-logo {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  top: clamp(1rem, 3vw, 2rem);
  z-index: 1; /* above the ::after wash */
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: rgba(10, 10, 12, 0.5);
  backdrop-filter: blur(3px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.venue-logo img {
  display: block;
  width: clamp(120px, 14vw, 200px);
  height: auto;
}

@media (max-width: 820px) {
  .venue-photo { aspect-ratio: 16 / 9; }
}

.details-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

/* ---------- charity ---------- */
.charity { display: flex; justify-content: center; }

.charity-card {
  max-width: 760px;
  width: 100%;
  text-align: center;
  padding: 3.2rem clamp(1.5rem, 5vw, 3.5rem);
  border-radius: 26px;
  background: linear-gradient(180deg, var(--charcoal), #101012);
  border: 1px solid var(--line-gold);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.45), 0 24px 50px rgba(0, 0, 0, 0.5);
}

.charity-heart svg {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 0 14px rgba(192, 132, 252, 0.5));
  animation: heart-beat 2.4s ease-in-out infinite;
}

@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  12% { transform: scale(1.12); }
  24% { transform: scale(1); }
  36% { transform: scale(1.08); }
  48% { transform: scale(1); }
}

.charity-lede {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  margin: 1.6rem 0 2rem;
}

.charity-lede b { color: var(--gold); font-weight: 800; }

.charity-logo {
  display: inline-block;
  padding: 1.4rem 2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.charity-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(240, 194, 75, 0.25);
}

.charity-logo img { max-width: min(320px, 70vw); display: block; }

.charity-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.link-plain {
  color: var(--purple-soft);
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.link-plain:hover { color: var(--gold); }

/* ---------- sponsors ---------- */
.sponsors {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.sponsor-tier { margin-bottom: 3.5rem; }
.sponsor-tier:last-child { margin-bottom: 0; }

.tier-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: clamp(0.78rem, 2vw, 1rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 2rem;
}

.tier-label i { font-style: normal; color: var(--purple-soft); margin: 0 0.5rem; }

.tier-note {
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.sponsor-grid > .sponsor-card {
  flex: 1 1 220px;
  max-width: 258px;
}

/* single featured sponsor (e.g. platinum) */
.sponsor-grid-solo > .sponsor-card {
  flex: 0 1 460px;
  max-width: 460px;
}

/* small centered tier (community sponsors) */
.sponsor-grid-duo > .sponsor-card {
  flex: 0 1 325px;
  max-width: 325px;
}

.sponsor-card {
  text-decoration: none;
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 1.5rem 1.7rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line-gold);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(240, 194, 75, 0.3), 0 14px 30px rgba(0, 0, 0, 0.4);
}

.sponsor-card img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 560px) {
  .sponsor-grid > .sponsor-card { flex-basis: 100%; max-width: none; }
  .sponsor-card { min-height: 150px; }
}

/* ---------- footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4.5rem 1.5rem 3rem;
  border-top: 1px solid var(--line-gold);
  background: linear-gradient(180deg, transparent, rgba(10, 10, 12, 0.85));
}

.footer-motto {
  text-transform: uppercase;
  letter-spacing: 0.45em;
  font-weight: 700;
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}

.footer-funk {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--gold-hi) 10%, var(--gold) 50%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(240, 194, 75, 0.3));
  margin-bottom: 1.6rem;
}

.footer-funk i { font-style: normal; -webkit-text-fill-color: var(--purple-soft); }

.eq-footer { justify-content: center; margin: 0 auto 2rem; }

.footer-cta { margin-bottom: 2.4rem; }

.footer-fine {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.footer-fine a { color: var(--purple-soft); text-decoration: none; }
.footer-fine a:hover { color: var(--gold); }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .details-bar { grid-template-columns: 1fr; }
  .disco-rig { left: 2vw; }
  .disco-string { height: 26px; }
  .hero { min-height: 88vh; padding-top: 5.5rem; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track, .beam, .eq b, .charity-heart svg { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  #sparkles { display: none; }
}
