html {
  scroll-behavior: smooth;
}

html, body { height: 100%; margin: 0; }
.app-wrapper { min-height: 100%; width: 100%; }

@font-face {
  font-family: 'Cubano';
  src: url('../assets/fonts/Cubano.ttf') format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'ProximaNova';
  src: url('../assets/fonts/ProximaNova-Bold.otf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'ProximaNova';
  src: url('../assets/fonts/ProximaNova-Black.ttf') format('truetype');
  font-weight: 900;
}

@font-face {
  font-family: 'ProximaNova';
  src: url('../assets/fonts/ProximaNova-ExtraBold.ttf') format('truetype');
  font-weight: 800;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes starTwinkle {
  0% {
    opacity: 0.2;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.4);
  }

  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes squiggleRight{
  0%{
    background-position:0 center;
  }
  70%{
    background-position:120px center;
  }
  100%{
    background-position:140px center;
  }
}

@keyframes squiggleLeft{
  0%{
    background-position:0 center;
  }
  70%{
    background-position:-120px center;
  }
  100%{
    background-position:-140px center;
  }
}

@keyframes ticketGlowPulse {
  0% {
    box-shadow:
      0 0 0 2px rgba(201,162,39,0.35),
      0 20px 60px rgba(0,0,0,0.55),
      0 0 0 rgba(147,51,234,0);
  }

  50% {
    box-shadow:
      0 0 0 2px rgba(201,162,39,0.5),
      0 24px 70px rgba(0,0,0,0.6),
      0 0 28px rgba(147,51,234,0.35);
  }

  100% {
    box-shadow:
      0 0 0 2px rgba(201,162,39,0.35),
      0 20px 60px rgba(0,0,0,0.55),
      0 0 0 rgba(147,51,234,0);
  }
}

@keyframes ticketAttention {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 30px rgba(201,162,39,0.18);
  }
  5% {
    transform: translateY(-5px) scale(1.06);
    box-shadow:
      0 18px 45px rgba(201,162,39,0.35),
      0 0 25px rgba(201,162,39,0.55),
      0 0 18px rgba(147,51,234,0.35);
  }
  10% {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 34px rgba(201,162,39,0.28);
  }
  15% {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
      0 16px 40px rgba(201,162,39,0.32),
      0 0 18px rgba(201,162,39,0.45),
      0 0 12px rgba(147,51,234,0.28);
  }
  20% {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 34px rgba(201,162,39,0.28);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 30px rgba(201,162,39,0.18);
  }
}

@keyframes posterGlowPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.7;
  }
}

@keyframes fogDrift {
  0% { transform: translateX(0); }
  50% { transform: translateX(25%); }
  100% { transform: translateX(0); }
}

@keyframes fogMove1 {
  from { transform: translateX(-10%) translateY(0); }
  to { transform: translateX(10%) translateY(-3%); }
}

@keyframes fogMove2 {
  from { transform: translateX(5%) translateY(3%); }
  to { transform: translateX(-5%) translateY(-4%); }
}

@keyframes fogMove3 {
  from { transform: translateX(-6%) translateY(-2%); }
  to { transform: translateX(6%) translateY(2%); }
}

.float-animation { animation: float 6s ease-in-out infinite; }
.pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

.shimmer-text {
    background: linear-gradient(90deg, #E6D533 0%, #f4e4ba 50%, #E6D533 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.gradient-border {
    position: relative;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), transparent);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, #E6D533, transparent, #9333ea);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;

    animation: starTwinkle 3s infinite ease-in-out;
}

#stars-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease;
}

.faq-content.open {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    padding-bottom: 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #E6D533 0%, #d4af37 100%);
    color: #0a0a0f;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(230, 213, 51, 0.45);
    filter: brightness(1.05);
}

.btn-secondary {
    border: 1px solid rgba(201, 162, 39, 0.5);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: #E6D533;
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(201, 162, 39, 0.05);
}

.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

body { 
    box-sizing: border-box; 
}

.nav-logo {
  filter: drop-shadow(0 0 6px rgba(168,85,247,0.5));
}

.poster-section {
  background: #0b0b14;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.poster-container {
  max-width: 900px;
  width: 100%;
}

.poster-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.poster-preview {
  width: 220px;
  max-width: 80%;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

#site-nav .nav-active {
  color: #E6D533;
  font-weight: 600;
}

.lineup-hero-flyer {
  width: 100%;
  max-width: 540px;
  height: auto;

  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 10;

  object-fit: contain;

  border-radius: 5px;
}

.ticket-squiggle {
  width: 100%;
  max-width: 700px;
  height: 16px;
  margin: 18px auto;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='16' viewBox='0 0 300 16'%3E%3Cpath d='M0 8 C20 2, 40 14, 60 8 S100 2, 120 8 S160 14, 180 8 S220 2, 240 8 S280 14, 300 8' fill='none' stroke='%23E6D533' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 center;

  transition: background-position 1.8s cubic-bezier(.12,.8,.22,1);
}

.ticket-wrapper:hover .top {
  background-position: 160px center;
  transition: background-position 2.8s cubic-bezier(.12,.8,.22,1);
}

.ticket-wrapper:hover .bottom {
  background-position: -160px center;
  transition: background-position 2.8s cubic-bezier(.12,.8,.22,1);
}

.lineup-hero-bg-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: 1;
}

.lineup-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lineup-page .app-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lineup-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lineup-page #lineup {
  min-height: calc(100vh - 88px);
  scroll-margin-top: 88px;
  display: flex;
  align-items: flex-start;
}

.lineup-page #lineup > div {
  width: 100%;
  padding-top: 60px;
}

.lineup-page footer {
  margin-top: 0;
}



.hero-ticket-cta {
  display: inline-block;
  text-decoration: none;
  color: #0a0a0f;
  background: linear-gradient(180deg, #E6D533 0%, #a8841f 45%, #E6D533 100%);
  border: 4px solid #e7c65a;
  border-radius: 18px;
  padding: 14px;
  box-shadow:
    0 0 0 2px rgba(201,162,39,0.35),
    0 20px 60px rgba(0,0,0,0.55);
  clip-path: polygon(
    0 14%,
    4% 14%,
    4% 0,
    96% 0,
    96% 14%,
    100% 14%,
    100% 86%,
    96% 86%,
    96% 100%,
    4% 100%,
    4% 86%,
    0 86%
  );
  transition: transform .25s ease, box-shadow .25s ease;
}

.hero-ticket-cta:hover {
  transform: translateY(-4px) scale(1.02);
  animation: ticketGlowPulse 1.8s ease-in-out infinite;
}

.hero-ticket-cta-inner {

  display:block;
  min-width:260px;
  padding:16px 32px;

  border:3px solid rgba(255,230,150,.5);
  border-radius:10px;

  font-family:'Cubano','ProximaNova',sans-serif;

  font-size:clamp(1.8rem,4vw,3rem);
  line-height:.95;
  letter-spacing:.03em;

  color:#1b1300;
  text-transform:uppercase;
  text-align:center;

  text-shadow:0 2px 0 rgba(255,255,255,.2);
}

.site-header {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.92) 0%,
    rgba(70, 30, 120, 0.6) 60%,
    rgba(147, 51, 234, 0.45) 100%
  );

  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-row {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-wrap{
  flex-shrink:0;
}
.header-logo {
  height: 58px;
  width: auto;
}

.header-center-nav{
  flex:1;
  display:flex;
  justify-content:center;
  gap:34px;
  max-width:760px;
  margin:0 auto;
}

.header-link {
  color: #e5e7eb;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.header-link:hover {
  color: #E6D533;
}

.header-socials{
  flex-shrink:0;
  display:flex;
  align-items:center;
  gap:12px;
}

.header-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0f;
  background: linear-gradient(135deg, #E6D533 0%, #d4af37 100%);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 22px rgba(201, 162, 39, 0.18);
}

.header-social-link:hover {
  transform: translateY(-2px);
  opacity: 0.96;
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.28);
}
.social-connect {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-connect-btn {
  background: #E6D533;
  color: black;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.social-connect-btn:hover {
  transform: translateY(-2px);
}

.lineup-social-link{
  color:#E6D533;
  background:rgba(255,255,255,0.05);
  padding:16px;
  border-radius:999px;
  transition:all .2s ease;
}

.lineup-social-link:hover{
  background:#E6D533;
  color:#000;
  transform:translateY(-2px);
}
.header-ticket-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #E6D533 0%, #d4af37 100%);
  color: #0a0a0f;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;

  will-change: transform;

  animation: ticketAttention 6s infinite;

  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.header-ticket-btn:hover {
  animation-play-state: paused;

  transform: translateY(-2px) scale(1.04);

  box-shadow:
    0 0 0 2px rgba(230,213,51,0.6),
    0 10px 30px rgba(0,0,0,0.45),
    0 0 28px rgba(147,51,234,0.6);

  filter: brightness(1.08);
}

.mobile-ticket-btn{

  padding:8px 16px;

  border-radius:999px;

  background:linear-gradient(135deg,#E6D533 0%,#d4af37 100%);
  color:#0a0a0f;

  font-family:'ProximaNova',sans-serif;
  font-weight:800;
  font-size:14px;

  white-space:nowrap;

  box-shadow:0 8px 22px rgba(201,162,39,0.25);

  transition:transform .2s ease, box-shadow .2s ease;
}

.mobile-ticket-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 30px rgba(201,162,39,0.35);
}

.countdown-bar{
  width:100%;
  text-align:center;

  margin-top:12px;
  margin-bottom:18px;

  font-family:'Cubano','ProximaNova',sans-serif;

  font-size:clamp(13px,3.2vw,22px);
  letter-spacing:.12em;
  font-weight:700;

  color:#f4e4ba;

  z-index:20;
}

.countdown-inner{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:6px 10px;

  max-width:90%;
  margin:0 auto;
}

.countdown-bar span{
  color:#E6D533;
  font-weight:700;
}

.hero-countdown{
  position:absolute;
  top:92px;              /* sits right under header */
  left:50%;
  transform:translateX(-50%);
  z-index:20;

  width:100%;
  display:flex;
  justify-content:center;

  pointer-events:none;

  font-family:'Cubano','ProximaNova',sans-serif;
  font-size:clamp(14px,3.2vw,22px);
  letter-spacing:.12em;
  font-weight:700;

  color:#f4e4ba;
}

.hero-countdown span{
  color:#E6D533;
}

.poster-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;

  transform: translate(-50%, -50%);
  z-index: 0;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(147,51,234,0.35) 0%,
      rgba(201,162,39,0.25) 40%,
      rgba(0,0,0,0) 70%
    );

  animation: posterGlowPulse 6s ease-in-out infinite;
}

.fog-layer {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;

  will-change: transform;
  pointer-events: none;
  z-index: 3;

  background-image: url("../assets/images/fog.png");
  animation: fogDrift 260s linear infinite;
  background-repeat: repeat-x;
  background-size: 1200px auto;

  opacity: 0.12;
}

.fog-layer-1 { animation-duration: 160s; opacity: .08; }
.fog-layer-2 { animation-duration: 220s; opacity: .10; }
.fog-layer-3 { animation-duration: 280s; opacity: .08; }

#fireflies {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.firefly {
  position: absolute;
  width: 3px;
  height: 3px;

  background: #f4e4ba;
  border-radius: 50%;

  box-shadow:
    0 0 6px #f4e4ba,
    0 0 12px #f4e4ba,
    0 0 18px #f4e4ba;

  opacity: 0.8;

  animation: fireflyFloat linear infinite;
}

.mobile-ticket-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10,10,20,0.95);
  backdrop-filter: blur(8px);
  padding: 12px;
  display: none;
  justify-content: center;
  z-index: 9999;
}

.mobile-ticket-btn {
  background: #E6D533;
  color: black;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
}

.ticket-urgency {
  margin-top: 8px;
  color: #ffd94a;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.lineup-share {
  margin-top: 20px;
  text-align: center;
}

.lineup-share a {
  margin: 0 8px;
  color: #E6D533;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 768px) {
  .mobile-ticket-bar {
    display: flex;
  }
}

@keyframes fireflyFloat {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-60vh) translateX(10px);
  }

  100% {
    transform: translateY(-120vh) translateX(-10px);
  }
}

/* Ensure lineup hero always fits real screen height */
#lineup-hero{
  min-height:100vh;
  min-height:100dvh;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    }
}

@media (max-width:1023px){
  .header-row{
    grid-template-columns: 1fr auto;
  }

  .header-center-nav{
    display:none;
  }

  .header-logo{
    height:48px;
  }
}

@media (max-width:420px){

  .countdown-inner{
    white-space:normal;
    line-height:1.4;
  }

}

/* LINEUP HERO MOBILE */
@media (max-width:768px){

  .lineup-hero-flyer{
    max-height:60vh;
    max-width:92%;
  }

}

/* Mobile dropdown under header */
@media (max-width:1023px){

  #mobile-menu{
    position:absolute;
    top:88px;        /* same height as your header */
    left:0;
    width:100%;

    background:rgba(10,10,15,.96);
    backdrop-filter:blur(12px);

    border-top:1px solid rgba(255,255,255,.08);

    z-index:40;
  }

}

/* MOBILE ONLY – shift lineup background down */
/* MOBILE ONLY – tighten lineup hero fit */
@media (max-width:768px){

  .lineup-hero-bg-art{
    object-fit: cover;
    object-position: center 110px;
    transform: scale(1.12);
  }

}

@media (min-width:1024px){
  .mobile-ticket-btn{
    display:none;
  }
}

/* Disable section highlight on mobile */
@media (max-width:1023px){

  #site-nav .nav-active{
    color:#e5e7eb;
    font-weight:700;
  }

}