body {
  background: #05010a;
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
}
.header-glow {
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 25px #ff00cc;
}
.logo {
  font-size: 1.7rem;
  font-weight: bold;
}
.navbar a {
  margin: 0 1rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.navbar a:hover {
  color: #ff66ff;
}
.hero-glow {
  text-align: center;
  padding: 6rem 1rem 3rem;
}
.hero-glow h1 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  line-height: 1.3;
}
.cta-button {
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 25px #ff00cc;
  display: inline-block;
  margin-top: 2rem;
}
.video-feed {
  text-align: center;
  padding: 4rem 2rem;
}
.feed-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.video-card {
  background: #111;
  padding: 1rem;
  border: 3px solid #ff00cc;
  border-radius: 12px;
  box-shadow: 0 0 20px #ff00cc;
  width: 260px;
}
.video-card video {
  width: 100%;
  border-radius: 8px;
}
.footer-glow {
  background: #0a0a0a;
  padding: 2rem;
  text-align: center;
  color: #bbb;
}
.flag {
  margin-top: 1rem;
  font-weight: bold;
  color: #ff00cc;
}