#video-player {
  position: relative;
  background-color: #030322;
  min-height: calc(100vh - 95px);
  margin-top: 0;
  padding-top: 0;
}

#video-player .video-container {
  position: relative;
  width: 100%;
  height: 40vh;
  background-color: black;
  margin-top: 0;
  z-index: 1;
}

#video-player .video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: relative;
  z-index: 1;
}

#video-player .video-info {
  padding: 20px;
  background: linear-gradient(180deg, rgba(3, 3, 34, 0.9) 0%, rgba(3, 3, 34, 1) 50%);
  min-height: calc(60vh - 95px);
  color: white;
}

#video-player .video-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 15px;
  color: white;
}

#video-player .video-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

#video-player .publish-date {
  font-size: 14px;
  color: #cccccc;
}

#video-player .live-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #ff0000;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

#video-player .live-indicator svg {
  width: 12px;
  height: 12px;
  fill: white;
}

#video-player .video-description {
  font-size: 14px;
  line-height: 1.5;
  color: #e0e0e0;
  margin-top: 20px;
}

#video-player .video-description p {
  margin-bottom: 10px;
}

/* Responsividade */
@media (min-width: 768px) {
  #video-player .video-container {
    height: 45vh;
  }

  #video-player .video-info {
    min-height: calc(55vh - 95px);
  }

  #video-player .video-title {
    font-size: 22px;
  }
}

@media (min-width: 1024px) {
  #video-player .video-container {
    height: 50vh;
  }

  #video-player .video-info {
    min-height: calc(50vh - 95px);
  }
}
