/* Video Embed Component */
.molecule-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--color-bg-black);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 100px rgba(59, 130, 246, 0.1);
  margin: var(--spacing-8) 0;
}

.molecule-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.molecule-video-embed__wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.molecule-video-embed__badge {
  position: absolute;
  top: var(--spacing-4);
  right: var(--spacing-4);
  background: var(--color-primary-gradient);
  color: var(--color-text-white);
  padding: var(--spacing-2) var(--spacing-4);
  border-radius: 20px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
  pointer-events: none;
}

.molecule-video-embed__title {
  text-align: center;
  margin-bottom: var(--spacing-6);
}

.molecule-video-embed__description {
  text-align: center;
  max-width: 800px;
  margin: var(--spacing-4) auto 0;
  color: var(--color-text-light-gray);
}

/* Responsive */
@media (max-width: 768px) {
  .molecule-video-embed {
    border-radius: 12px;
    margin: var(--spacing-6) 0;
  }
  
  .molecule-video-embed iframe {
    border-radius: 12px;
  }
  
  .molecule-video-embed__badge {
    top: var(--spacing-2);
    right: var(--spacing-2);
    font-size: var(--font-size-xs);
    padding: var(--spacing-1) var(--spacing-3);
  }
}
