body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #0d0015;
  color: #eee;
  text-align: center;
  font-size: 14px;
}

/* HERO WITH VIDEO (Welcome + Live) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  padding-bottom: 60px;
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  margin-bottom: 40px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.hero .intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ffe6f7;
}
.cta-btn {
  display: inline-block;
  background: #ff1a8c;
  padding: 14px 28px;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 15px #ff4dd2, 0 0 30px #ff3399;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: #ff66cc;
  box-shadow: 0 0 25px #ff66cc, 0 0 50px #ff99cc;
}

/* Neon animated title */
.animated-title {
  color: #ff1a8c;
  text-shadow: 0 0 10px #ff4dd2, 0 0 20px #ff3399, 0 0 30px #ff66cc;
  animation: neonFlicker 2.5s infinite;
}
@keyframes neonFlicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow:
      0 0 5px #ff4dd2,
      0 0 10px #ff3399,
      0 0 20px #ff66cc,
      0 0 40px #ff1a8c;
    opacity: 1;
  }
  20%, 24%, 55% {
    text-shadow: none;
    opacity: 0.6;
  }
}

/* SECTION TITLES */
.section-title {
  margin-top: 35px;
  font-size: 1.4rem;
  color: #ff66b2;
  text-shadow: 0 0 8px #ff1a8c;
}

/* LIVE SITES INSIDE HERO */
.live-section {
  position: relative;
  z-index: 2;
}
.live-sites {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.site-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(60,0,40,0.8);
  border-radius: 10px;
  border: 2px solid #ff1a8c;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  box-shadow: 0 0 12px rgba(255,0,128,0.6);
}
.site-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff4dd2, 0 0 40px #ff66b2;
}
.site-card h3 {
  margin: 0;
  font-size: 1rem;
}
.site-card p {
  margin: 0;
  font-weight: bold;
  font-size: 0.85rem;
  color: #00ffe6;
  text-shadow: 0 0 5px #00ffee;
}

/* UPCOMING SECTION WITH BACKGROUND VIDEO */
.upcoming-section {
  position: relative;
  padding: 60px 20px;
  color: #fff;
  overflow: hidden;
}
.section-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4);
}
.section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.upcoming-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.upcoming-list {
  list-style: decimal inside;
  padding: 15px;
  max-width: 650px;
  margin: 20px auto 0;
  text-align: left;
  font-size: 0.85rem;
}
.upcoming-list li {
  margin: 10px 0;
  padding: 10px 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  border: 1px solid #ff3399;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 0 6px #ff66cc;
  transition: all 0.2s;
}
.upcoming-list li:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 15px #ff3399;
}
.upcoming-list em {
  color: #00ffe6;
  font-style: normal;
  font-weight: bold;
  font-size: 0.8rem;
}
.upcoming-list .fi {
  font-size: 1rem;
  filter: drop-shadow(0 0 3px #ff4dd2);
}

/* FOOTER */
footer {
  padding: 15px;
  background: #0d0015;
  color: #ff99cc;
  margin-top: 40px;
  font-size: 0.8rem;
  border-top: 2px solid #ff1a8c;
  text-shadow: 0 0 8px #ff4dd2;
}
footer .disclaimer {
  margin-top: 10px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #ffb3d9;
}
