/* ROC Banner Video Player Styles */
.roc-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 20px 10px 10px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

.video-player:hover .roc-video-controls {
  opacity: 1;
}

.roc-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  margin-bottom: 8px;
  position: relative;
}

.roc-progress-filled {
  height: 100%;
  background: #fff;
  width: 0%;
  transition: width 0.1s;
}

.roc-controls-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.roc-mute-btn {
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
}

.roc-mute-btn svg {
  width: 100%;
  height: 100%;
}

.roc-learn-more-btn {
  background: rgba(255,255,255,0.9);
  color: #000;
  padding: 6px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

.roc-learn-more-btn:hover {
  background: rgba(255,255,255,1);
  text-decoration: none;
  color: #000;
}

.roc-pause-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 5;
}

.video-player:hover .roc-pause-overlay {
  display: flex;
}

.video-player.paused:hover .roc-pause-overlay {
  display: none;
}

.roc-pause-icon {
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roc-end-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0,0,0,0.75);
  z-index: 15;
}

.roc-end-card.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.roc-end-card-top {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.roc-endcard-learn-btn {
  background: #fff;
  color: #000;
  padding: 8px 24px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.roc-endcard-learn-btn:hover {
  background: rgba(255,255,255,0.9);
  text-decoration: none;
  color: #000;
}

.roc-end-card-center {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  cursor: pointer;
}

.roc-replay-icon-large {
  margin: 0 auto 12px;
}

.roc-replay-text {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.roc-end-card-center:hover .roc-replay-text {
  opacity: 0.8;
}

.roc-brand-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.roc-end-card-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  opacity: 0.6;
}

.roc-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 10;
}

.roc-thumb-overlay.hidden {
  display: none;
}
