* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #000000;
  color: white;
  text-align: center;
}

/* HERO BACKGROUND USING Beneath_Neon_1920w.png */

.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  background-image:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
    url("/Beneath_Neon_1920w.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay h1 {
  font-size: 4rem;
  letter-spacing: 6px;
  text-shadow: 0 0 20px #9d00ff, 0 0 60px #6A0DAD;
}

.overlay p {
  margin: 20px 0;
  font-size: 1.2rem;
}

.stream-buttons {
  margin-top: 20px;
}

.stream-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 10px 25px;
  border: 2px solid #6A0DAD;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.stream-buttons a:hover {
  background: #6A0DAD;
}

section {
  padding: 100px 20px;
  background: #000000;
}

h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  letter-spacing: 3px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  max-width: 1100px;
  margin: 40px auto;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: none;
}

.about-text {
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
  opacity: 0.85;
}

footer {
  padding: 30px;
  background: #000;
}