.lifestyle-section {
  text-align: center;
  height: 100vh;
  padding: 100px 20px;
  background: #0a0a0a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.lifestyle-section h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e5e5e5;
}

.lifestyle-section p {
  font-size: 1.2rem;
  margin-bottom: 60px;
  color: #aaa;
}

.lifestyle-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1140px;
  height: 550px;
  margin: 0 auto;
  gap: 20px; /* space between videos */
}

.cine-video {
  flex: 1;                 /* make all 3 equal width */
  max-width: 360px;        /* ~ 1140/3 minus gap */
  height: 100%;            /* fill the 550px container height */
  object-fit: cover;       /* crop to fit */
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #000;
}

/* Hover glow for desktop */
@media (min-width: 769px) {
  .cine-video:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 180, 100, 0.7),
                0 0 40px rgba(255, 180, 100,0.5);
  }
}

/* Glow when active on mobile */
.cine-video.active {
  box-shadow: 0 0 20px rgba(255,255,255,0.7),
              0 0 40px rgba(255, 180, 100,0.5),
              0 0 60px rgba(255, 180, 100,0.3);
}


