/* ============================================
   BLOCK 8 — APUESTAS EN VIVO (cinematic with bg image)
   ============================================ */

.home_block_8 {
  position: relative;
  padding: 14rem var(--main-padding);
  overflow: hidden;
  background: var(--bg-dark);
}

.home_block_8_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home_block_8_bg_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(1.2) contrast(1.05);
}

.home_block_8_bg_overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 0, 64, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(255, 107, 53, 0.18) 0%, transparent 50%),
    linear-gradient(160deg, rgba(10, 5, 8, 0.78) 0%, rgba(28, 13, 18, 0.55) 50%, rgba(10, 5, 8, 0.88) 100%);
}

.home_block_8_inner {
  position: relative;
  z-index: 2;
}

.home_block_8_content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 78rem;
}

.home_block_8_title {
  color: var(--text-on-dark);
}

.home_block_8_lead {
  color: var(--text-on-dark);
  max-width: 64rem;
}

.home_block_8_list > li {
  color: var(--text-on-dark-muted);
}

.home_block_8_outro {
  color: var(--text-on-dark-muted);
  max-width: 64rem;
}

@media (max-width: 1024px) {
  .home_block_8 {
    padding: 16rem var(--main-padding);
  }
  .home_block_8_bg_img { opacity: 0.35; }
  .home_block_8_content {
    gap: 3rem;
    max-width: 100%;
  }
}
