/* Video play button styling */
.play-btn {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: rgba(230, 122, 33, 0.85);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
  cursor: pointer;
}

.play-btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #fff;
}

.play-btn:hover {
  background: rgba(230, 122, 33, 1);
  box-shadow: 0 0 20px rgba(230, 122, 33, 0.6);
}

.video-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}