/* Entertainment Page Styles - PLNewHotgr */
.section {
  padding: var(--space-16) 0;
}
.section-alt {
  background: var(--color-navy-light);
}
.lead {
  font-size: var(--font-size-lg);
  color: var(--color-gray-200);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
/* Hero */
.hero-entertainment {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-entertainment .hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-entertainment .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.02);
}
.hero-entertainment .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.2) 0%, rgba(10,22,40,0.6) 40%, rgba(10,22,40,0.9) 100%);
}
.hero-entertainment .hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-entertainment h1 {
  text-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.hero-cta {
  margin-top: var(--space-6);
  display: inline-flex;
  gap: var(--space-4);
}
/* Cards refinements */
.card .card-footer {
  color: var(--color-gray-300);
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-entertainment { min-height: 60vh; }
  .hero-cta { width: 100%; justify-content: center; flex-wrap: wrap; }
}
