body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #140014;
  color: white;
  overflow-x: hidden;
}

/* Loader */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 2s forwards;
  animation-delay: 2s;
}
@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

/* Header */
header {
  position: fixed;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  background: rgba(20,0,20,0.9);
  z-index: 1000;
}
.logo {
  font-weight: 800;
  font-size: 28px;
  color: #ff2ea6;
}
header nav a {
  color: white;
  margin-left: 30px;
  text-decoration: none;
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(20,0,20,0.8), rgba(20,0,20,0.8)),
              url('../images/hero.jpg') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: 110px;
  font-weight: 800;
  color: white;
  text-shadow: 0 0 20px #ff2ea6, 0 0 60px #ff2ea6;
}

.cta {
  margin-top: 20px;
  padding: 15px 35px;
  background: #ff2ea6;
  border-radius: 50px;
  color: white;
  text-decoration: none;
}

/* Light beams */
.beam {
  position: fixed;
  width: 300px;
  height: 150vh;
  background: linear-gradient(to bottom, rgba(255,46,166,0.3), transparent);
  transform: rotate(25deg);
  animation: move 8s infinite linear;
}
.beam-left { left: -200px; }
.beam-right { right: -200px; animation-duration: 12s; }

@keyframes move {
  from { transform: translateY(-100%) rotate(25deg); }
  to { transform: translateY(100%) rotate(25deg); }
}

/* Particles */
#particles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Tickets */
.ticket-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}
.ticket-card {
  background: #200020;
  padding: 40px;
  width: 300px;
  border: 1px solid #ff2ea6;
  transition: 0.4s;
}
.ticket-card:hover {
  box-shadow: 0 0 20px #ff2ea6;
}
.vip-highlight {
  border: 2px solid #ff2ea6;
  box-shadow: 0 0 30px #ff2ea6;
}
.price {
  font-size: 40px;
  color: #ff2ea6;
}

footer {
  text-align: center;
  padding: 40px;
}