.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.5)
  );
}

.hero {
  position: relative;
  height: 90vh;
  background: url('../assets/hero.jpg') center 20% / cover no-repeat;
}

.hero-logo {
  width: 120px;
  margin-bottom: 20px;
}

.hero {
  pointer-events: none;
}

.hero-overlay {
  pointer-events: auto;
}

.hero-overlay {
  background: linear-gradient(
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.3)
  );
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
}

.hero h1 {
  font-size: 3rem;
}

.hero-sub {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #f5c542;
}

.invite-badge {
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 0 10px rgba(212,175,55,0.2);
  padding: 10px 18px;
  border-radius: 8px;
  color: #f5c542;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.stats {
  background: #0b1a2a;
  padding: 40px 20px;
  margin-top: 30px;
}

.stat-group {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat h2 {
  font-size: 3rem;
font-weight: bold;
  color: #d4af37;
}

.stats-sub {
  text-align: center;
  margin-top: 20px;
  color: #ccc;
}

.stats-subtext {
  text-align: center;
  margin-top: 15px;
  color: #aaa;
  font-size: 0.95rem;
}

.credibility {
  color: #d4af37;
  font-weight: bold;
  margin-bottom: 10px;
}

.video-section {
  background: #0b1a2a;
  box-shadow: 0 0 40px rgba(0,0,0,0.7);
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  margin: auto;
}

.video-thumbnail {
  position: relative;
  display: inline-block;
}

.video-thumbnail img {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.03);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 15px 20px;
}

.requirements ul {
  list-style: none;
}

.requirements li {
  margin: 10px 0;
}

.final-cta {
  background: #111;
  padding: 120px 20px;
}

.credibility-section {
  background: #05070d;
  padding: 20px;
  text-align: center;
}


.impact {
  background: #05070d;
}

.cta:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
}

.levels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.level {
  background: #0b1a2a;
  padding: 20px;
  border-radius: 10px;
  width: 150px;
  font-weight: bold;
  transition: 0.2s ease;
}

.level:hover {
  transform: translateY(-5px);
  background: #102840;
}

.proven-path {
  text-align: center;
}

.alumni ul {
  list-style: none;
  margin-top: 15px;
}

.alumni li {
  margin: 8px 0;
  color: #ccc;
}

.featured-banner {
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f5c542;
  margin: 20px 0;
}

.players {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.player-card {
  background: #0f2235;
  padding: 15px 25px;
  border-radius: 8px;
  color: #ccc;
}