.festival-cover {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

.festival-cover__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

/* Blurred image fill */
.festival-cover__blurred-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(18px) brightness(0.42) saturate(1.05);
  transform: scale(1.06);
  opacity: 0.9;
  pointer-events: none;
}

/* Main image */
.festival-cover__main-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}

/* Overlay for readability */
.festival-cover__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
      radial-gradient(700px 320px at 50% 50%, rgba(0,0,0,0.35), transparent 62%),
      linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.40) 45%, rgba(0,0,0,0.55) 100%);
}

/* Subtle grain */
.festival-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0.7px, transparent 1px),
    radial-gradient(circle at 80% 70%, #fff 0.7px, transparent 1px),
    radial-gradient(circle at 60% 20%, #fff 0.7px, transparent 1px),
    radial-gradient(circle at 30% 80%, #fff 0.7px, transparent 1px);
  background-size: 9px 9px, 11px 11px, 13px 13px, 7px 7px;
  background-position: 0 0, 2px 3px, 1px 5px, 4px 1px;
}

/* =========================
   COVER CONTENT
   ========================= */
.festival-cover__inner {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100% - 32px));
  padding: 100px 12px 0px 12px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  pointer-events: auto;
  opacity: 0;
  filter: blur(6px);
}

/* Entrance animation */
.festival-cover.is-visible .festival-cover__inner {
  animation: festivalCoverReveal 900ms cubic-bezier(.2,.8,.2,1) 180ms forwards;
}

@keyframes festivalCoverReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 22px));
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(0);
  }
}

/* Top label */
.festival-cover__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(0,0,0,0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.9);
}

.festival-cover__tag-icons {
  display: inline-flex;
  gap: 5px;
}

.festival-cover__tag-icons span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
}

.festival-cover__tag-icons span:nth-child(1) { background: var(--wef-red); }
.festival-cover__tag-icons span:nth-child(2) { background: var(--wef-yellow); }
.festival-cover__tag-icons span:nth-child(3) { background: var(--wef-green); }

/* Title */
.festival-cover__headline {
  font-family: WildHeads;
  margin: 0;
  text-align: center;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 2px;
  text-shadow:
    0 6px 20px rgba(0,0,0,0.55),
    0 2px 6px rgba(0,0,0,0.45);
}

.festival-cover__headline-mark {
  color: var(--wef-red);
}

/* Subtitle */
.festival-cover__description {
  margin: 0 auto;
  text-align: center;
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

/* Actions */
.festival-cover__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
}

/* =========================
   OPTIONAL BOTTOM CONTROL
   ========================= */
.festival-cover__panel {
  position: absolute;
  z-index: 5;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 8px;
}

.festival-cover__panel-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.42);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.festival-cover__panel-btn:hover {
  background: rgba(0,0,0,0.58);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.festival-cover__panel-btn:focus-visible {
  outline: 2px solid var(--wef-yellow);
  outline-offset: 2px;
}

/* =========================
   OPTIONAL LOADER
   ========================= */
.festival-cover__preload {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.16), rgba(0,0,0,0.55)),
    #000;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.festival-cover__preload.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.festival-cover__preload-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.16);
  border-top-color: var(--wef-yellow);
  animation: festivalSpin 1s linear infinite;
}

@keyframes festivalSpin {
  to { transform: rotate(360deg); }
}

/* =========================
   RESPONSIVE
   ========================= */

/* Large desktop */
@media (min-width: 1440px) {
  .festival-cover__inner {
    width: min(980px, 70vw);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .festival-cover__inner {
    width: min(760px, calc(100% - 32px));
    gap: 12px;
    padding: 100px 10px 0px 10px;
  }

  .festival-cover__buttons {
    gap: 10px;
  }

  .festival-cover__panel {
    right: 10px;
    bottom: 10px;
  }

  .festival-cover__panel-btn {
    padding: 9px 10px;
    font-size: 11px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .festival-cover {
    min-height: 70svh;
    min-height: 70vh; 
  }

  .festival-cover__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .festival-cover__main-image {
    object-fit: cover;
    object-position: center center;
  }

  .festival-cover__inner {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95vw;
    padding: 100px 10px 0px 10px;
    gap: 10px;
    justify-items: center;
    text-align: center;
  }

  .festival-cover.is-visible .festival-cover__inner {
    animation: festivalCoverRevealMobile 900ms cubic-bezier(.2,.8,.2,1) 180ms forwards;
  }

  @keyframes festivalCoverRevealMobile {
    0% {
      opacity: 0;
      transform: translate(-50%, calc(-50% + 18px));
      filter: blur(6px);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%);
      filter: blur(0);
    }
  }

  .festival-cover__tagline {
    font-size: 10px;
    padding: 7px 10px;
  }

  .festival-cover__headline {
    font-size: 30px;
    text-align: center;
  }

  .festival-cover__description {
    font-size: 17px;
    margin: 0 auto;
    text-align: center;
  }

  .festival-cover__buttons {
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
  }

  .festival-cover__panel {
    right: 10px;
    bottom: 10px;
  }

  .festival-cover__panel-btn {
    padding: 8px 10px;
    font-size: 11px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .festival-cover.is-visible .festival-cover__inner {
    animation: none;
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: none;
  }

  .festival-cover__preload-ring {
    animation: none;
  }

  .festival-cover__panel-btn {
    transition: none;
  }
}

/* =========================
   DAYS
   ========================= */
.lineup-days{
  padding: 0 0 70px;
}

.lineup-day{
  position: relative;
  padding: 50px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.lineup-day:first-child{
  padding-top: 0;
}

.lineup-day__header{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 26px;
}

.lineup-day__icon{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,10,14,.34);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  font-size: 22px;
  flex: 0 0 auto;
}

.lineup-day__meta{
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lineup-day__title{
  margin-bottom: 10px;
  margin-top: 10px;
  color: var(--fi-text);
  font-family: WildHeads;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.4;
  text-shadow:
    0 4px 0 rgba(0,0,0,0.35),
    0 10px 30px rgba(0,0,0,0.35);
    text-transform: uppercase;
}

.lineup-day__desc{
  color: var(--fi-muted);
  font-size: 18px;
  line-height: 1.55;
  text-wrap: balance;
}

@media(max-width: 767px){
  .lineup-day__title{
    font-size: 25px;
  }
  .lineup-day__desc{
    font-size: 17px;
  }
}

/* =========================
   ARTIST CARDS
   ========================= */
.lineup-artist-card{
  position: relative;
  height: 100%;
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(10,12,16,.46);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 22px 56px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
}

.lineup-artist-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 220px at 18% 20%, rgba(121,213,255,.05), transparent 55%),
    radial-gradient(600px 220px at 82% 80%, rgba(252,200,72,.05), transparent 55%);
  pointer-events:none;
}

.lineup-artist-card__title{
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--wef-cream);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.lineup-artist-card__text{
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.lineup-artist-card--tba{
  border-style: dashed;
  border-color: rgba(255,255,255,.18);
}

.lineup-artist-card--tba .lineup-artist-card__title{
  color: rgba(245,241,232,.88);
}


@media (max-width: 767.98px){
  .lineup-day__header{
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .lineup-day__icon{
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}