/* ============================================
   BLOCK 6 — CASINO EN VIVO (cinematic split img-L / text-R)
   ============================================ */
.home_block_6_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.home_block_6_text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.home_block_6_visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.home_block_6_visual::before {
  content: "";
  position: absolute;
  inset: 6% 2%;
  background: radial-gradient(circle at 50% 45%, var(--accent-glow) 0%, transparent 65%);
  filter: blur(28px);
  z-index: 0;
}
.home_block_6_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .home_block_6_inner { grid-template-columns: 1fr; gap: 4rem; }
  .home_block_6_visual { order: -1; }
}
