.story-section {
  font-family: 'Courier Prime', monospace;
  color: #fff;
}

.story-title {
  font-size: 3rem;
  letter-spacing: 8px;
  font-weight: 400;
}

.story-para {

  font-size: 1rem;
  line-height: 1.6;
  color: #bbb;
  letter-spacing: 2px;
}

/* Video Container */
.video-container {
  max-width: 1000px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Darkens thumbnail to pop the play button */
  transition: transform 0.5s ease;
}

.video-wrapper:hover .video-poster {
  transform: scale(1.02);
}

/* Custom Play Button */
.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.play-icon-circle {
  width: 80px;
  height: 80px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.video-wrapper:hover .play-icon-circle {
  background: #EE2E3C;
  border-color: #EE2E3C;
  transform: scale(1.1);
}

#storyVideo {
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .story-title { font-size: 1.8rem; }
  .play-icon-circle { width: 60px; height: 60px; }
}

@media (max-width: 576px) {
  .story-title { font-size: 30px !important; line-height: 1.2; letter-spacing: 0 !important; }
}