/* HERO PREMIUM */
.hero {
  position: relative;
  padding: 120px 20px;
  background: url('../img/hero-entertainment.webp') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* DARK + GRADIENT */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: auto;
  text-align: center;

  backdrop-filter: blur(6px);
  padding: 30px;
  border-radius: 16px;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  background: rgba(255, 153, 0, 0.15);
  color: #ff9900;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 15px;
  border: 1px solid rgba(255,153,0,0.3);
}

/* TITLE */
.hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* HIGHLIGHT */
.hero h1 span {
  color: #ff9900;
}

/* DESC */
.hero p {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* CTA */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTON PRIMARY */
.btn-primary {
  background: linear-gradient(135deg, #ff9900, #ff6600);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,153,0,0.4);
}

/* BUTTON SECONDARY */
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 80px 15px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-content {
    padding: 20px;
  }
}
