/* YouTube Short Video Styling */
.video-card-short .video-short {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-placeholder-short {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16; /* Hochformat für Shorts */
  background: #000;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-placeholder-short:hover {
  transform: scale(1.02);
}

.video-placeholder-short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-placeholder-short .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(31, 31, 31, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-placeholder-short .play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 18px solid #ffffff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 3px;
  margin-top: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-placeholder-short:hover .play-button {
  background: rgba(51, 51, 51, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%) translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Short Video Card Anpassungen */
.video-card-short {
  text-align: center;
}

.video-card-short .card-content h2 {
  margin-bottom: 15px;
  margin-top: 35px;
}

/* Mobile Responsive für Shorts */
@media (max-width: 600px) {
  .video-card-short .video-short {
    max-width: 320px;
  }
  
  .video-placeholder-short .play-button {
    width: 50px;
    height: 50px;
  }
  
  .video-placeholder-short .play-button::before {
    border-left: 14px solid #ffffff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 0;
    margin-top: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  }
}

/* Dark Theme für Short Videos */
.video-card-short {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card-short:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.2);
}