.video-card {
  background: linear-gradient(to right, #fff5f3, #ffe8e3);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.video-card:hover:not(.video-card-active) {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.video-card-active {
  background: #1a1a1a;
  padding: 0;
}

.video-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px;
}

.video-card-active .video-card-header {
  padding: 16px 24px;
  background: linear-gradient(to right, #2a2a2a, #1f1f1f);
  border-radius: 12px 12px 0 0;
}

.video-card-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 250px;
}

.video-card-icon {
  background: #ff6b4a;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
}

.video-card-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.video-card-text h3 {
  margin: 0;
  color: #d14d2a;
  font-size: 19px;
  font-weight: 600;
  transition: color 0.3s;
}

.video-card-active .video-card-text h3 {
  color: #ff8a6a;
}

.video-card-text p {
  margin: 4px 0 0 0;
  color: #8b5e52;
  font-size: 14px;
  transition: color 0.3s;
}

.video-card-active .video-card-text p {
  color: #aaa;
}

.video-card-button {
  background: #ff6b4a;
  color: white;
  padding: 11px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(255,107,74,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.video-card-button:hover {
  background: #e65a3a;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255,107,74,0.4);
}

.video-card-active .video-card-button {
  background: #555;
}

.video-card-active .video-card-button:hover {
  background: #666;
}

.video-player-container {
  display: none;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.video-card-active .video-player-container {
  display: block;
  animation: slideDown 0.3s ease;
}

.video-player-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .video-card-header {
    padding: 20px;
  }
  
  .video-card-content {
    gap: 12px;
  }
  
  .video-card-icon {
    min-width: 40px;
    min-height: 40px;
    padding: 10px;
  }
  
  .video-card-text h3 {
    font-size: 17px;
  }
  
  .video-card-text p {
    font-size: 13px;
  }
}