/* ============================= */
/* ENTERTAINMENT PLATFORM PAGE */
/* ============================= */

/* ============================= */
/* HERO */
/* ============================= */

.page-hero.entertainment-platform-hero,
.page-hero.entertainment-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 8vw 100px;
  overflow: hidden;
}

.entertainment-platform-hero .page-hero-media,
.entertainment-hero .page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 22%, rgba(41, 93, 255, 0.18), transparent 26%),
    radial-gradient(circle at 82% 24%, rgba(0, 166, 255, 0.10), transparent 20%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.12), rgba(5, 5, 6, 0.30)),
    url("../../assets/images/site images/16.png") center center / cover no-repeat;
}

.entertainment-platform-hero .page-hero-video,
.entertainment-hero .page-hero-video {
  display: none;
}

.entertainment-platform-hero .page-hero-media::before,
.entertainment-hero .page-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 110px 110px;
  opacity: 0.16;
  mask-image: radial-gradient(circle at center, black 58%, transparent 95%);
  pointer-events: none;
}

.entertainment-platform-hero .page-hero-overlay,
.entertainment-hero .page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.70) 0%, rgba(5, 5, 6, 0.46) 34%, rgba(5, 5, 6, 0.18) 62%, rgba(5, 5, 6, 0) 100%),
    linear-gradient(to bottom, rgba(5, 5, 6, 0.08), rgba(5, 5, 6, 0.26)),
    radial-gradient(circle at 75% 24%, rgba(41, 93, 255, 0.08), transparent 18%);
  z-index: 1;
}

.entertainment-platform-hero .page-hero-content,
.entertainment-hero .page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.entertainment-page-logo {
  width: 168px;
  height: auto;
  object-fit: contain;
  margin-bottom: 24px;
  opacity: 0.96;
}

.entertainment-platform-hero h1,
.entertainment-hero h1 {
  max-width: min(24ch, 100%);
  margin-bottom: 20px;
  text-wrap: balance;
}

.entertainment-platform-hero p,
.entertainment-hero p {
  max-width: 560px;
  margin-bottom: 30px;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================= */
/* INTRO */
/* ============================= */

.entertainment-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
}

.entertainment-intro-copy p + p {
  margin-top: 12px;
}

.entertainment-intro-panel {
  position: relative;
  padding: 30px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.032);
  border: 1px solid rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
  overflow: hidden;
}

.entertainment-intro-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.012) 28%,
    transparent 58%
  );
  pointer-events: none;
}

.entertainment-intro-panel h3 {
  margin-bottom: 12px;
}

.entertainment-intro-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.entertainment-intro-list li {
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.entertainment-intro-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #295dff, #00a6ff);
  box-shadow: 0 0 14px rgba(41, 93, 255, 0.35);
}

/* ============================= */
/* FEATURED PRODUCT */
/* ============================= */

.feature-product-shell {
  position: relative;
}

.feature-product-card {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #06080d;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.30);
}

.feature-product-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48) contrast(1.04);
  transform: scale(1.02);
}

.feature-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 5, 6, 0.88), rgba(5, 5, 6, 0.20)),
    linear-gradient(to right, rgba(5, 5, 6, 0.70), rgba(5, 5, 6, 0.08));
  z-index: 1;
}

.feature-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 166, 255, 0.12), transparent 18%);
  z-index: 1;
  pointer-events: none;
}

.feature-product-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  padding: 34px;
}

.feature-product-copy {
  max-width: 620px;
}

.feature-product-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.feature-product-logo {
  width: 168px;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.feature-product-copy h2 {
  margin-bottom: 12px;
  max-width: 16ch;
}

.feature-product-copy p {
  max-width: 42ch;
}

.feature-product-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* ============================= */
/* BENEFITS */
/* ============================= */

.entertainment-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.entertainment-benefit-card {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
  transition:
    transform 0.32s ease,
    background 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
  overflow: hidden;
}

.entertainment-benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.01) 26%,
    transparent 55%
  );
  pointer-events: none;
}

.entertainment-benefit-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.046);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.entertainment-benefit-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.entertainment-benefit-card h3 {
  margin-bottom: 10px;
}

.entertainment-benefit-card p {
  max-width: 30ch;
}

/* ============================= */
/* EXPERIENCE STRIP */
/* ============================= */

.entertainment-experience-strip {
  position: relative;
  padding: 40px 34px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 30%, rgba(41, 93, 255, 0.10), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(0, 166, 255, 0.08), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.entertainment-experience-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.012) 26%,
    transparent 55%
  );
  pointer-events: none;
}

.entertainment-experience-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.entertainment-experience-copy h2 {
  margin-bottom: 12px;
  max-width: 14ch;
}

.entertainment-experience-points {
  display: grid;
  gap: 14px;
}

.entertainment-experience-points li {
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.entertainment-experience-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #295dff, #00a6ff);
}

/* ============================= */
/* CTA */
/* ============================= */

.entertainment-cta-strip {
  position: relative;
  padding: 42px 34px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 22% 28%, rgba(41, 93, 255, 0.10), transparent 24%),
    radial-gradient(circle at 76% 72%, rgba(0, 166, 255, 0.08), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.entertainment-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.012) 26%,
    transparent 55%
  );
  pointer-events: none;
}

.entertainment-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.entertainment-cta-copy h2 {
  margin-bottom: 12px;
  max-width: 14ch;
}

.entertainment-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ============================= */
/* SECTION VARIANT */
/* ============================= */

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1100px) {
  .entertainment-intro-grid,
  .entertainment-experience-inner,
  .entertainment-cta-inner {
    grid-template-columns: 1fr;
  }

  .entertainment-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .page-hero.entertainment-hero {
    padding: 140px 6vw 80px;
    min-height: 78vh;
  }

  .entertainment-benefit-grid {
    grid-template-columns: 1fr;
  }

  .feature-product-card,
  .feature-product-content {
    min-height: 460px;
  }

  .feature-product-copy h2 {
    max-width: 14ch;
  }
}

@media (max-width: 680px) {
  .entertainment-page-logo,
  .feature-product-logo {
    width: 140px;
  }

  .feature-product-content,
  .entertainment-experience-strip,
  .entertainment-cta-strip {
    padding: 28px 24px;
  }

  .page-hero-actions,
  .feature-product-actions,
  .entertainment-cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
