
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #fff;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-logo {
  width: 90%;
  max-width: 900px;
  margin-bottom: 1rem;
}

.cta-button {
  background: #e60073;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  font-size: 1.2rem;
  border-radius: 30px;
  box-shadow: 0 6px #9c004f;
  transition: 0.2s;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px #9c004f;
}

/* 3D Nav Buttons */
.main-nav {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-button {
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(145deg, #1a1a1a, #2c2c2c);
  border: 1px solid #444;
  border-radius: 10px;
  box-shadow: 3px 3px 10px #000, -3px -3px 10px #333;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 15px #000, -5px -5px 15px #444;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}

.feature {
  background: #222;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  width: 200px;
  text-decoration: none;
}

.feature img {
  width: 100%;
  border-radius: 8px;
}

.stream {
  text-align: center;
  padding: 2rem;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.news-card {
  background: #1c1c1c;
  padding: 1rem;
  border-radius: 8px;
  width: 300px;
}

.news-card img {
  width: 100%;
  border-radius: 8px;
}

.social {
  text-align: center;
  padding: 2rem;
}
