.video-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #eef2f6;
  margin-top: 30px; }

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
  border-color: #dce3ec; }

.video-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  cursor: pointer;
  overflow: hidden;
  background-color: #eef2f8; }

.cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 125%;
  height: 125%;
  object-fit: cover;
  z-index: 5;
  transition: opacity 0.25s ease;
  pointer-events: none; }

.video-player {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8; }

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  transition: background 0.2s ease;
  pointer-events: none; }

.play-button {
  width: 64px;
  height: 64px;
  background: rgba(30, 41, 59, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1), background 0.2s, box-shadow 0.2s;
  box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(2px); }

.play-button svg {
  width: 32px;
  height: 32px;
  fill: white;
  margin-left: 4px; }

.video-wrapper:hover .play-button {
  transform: scale(1.06);
  background: #ef4444;
  box-shadow: 0 16px 24px -8px rgba(239, 68, 68, 0.4); }

.video-info {
  padding: 0.5rem 1rem 1rem;
  background: #ffffff;
  border-top: 1px solid #f0f2f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem; }

.info-text {
  flex: 1; }

.info-text p {
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  margin-bottom: 0;
  color: #09479e; }

.status-badge {
  line-height: 1;
  font-size: 0.65rem;
  font-weight: normal;
  background: #eef2ff;
  padding: 6px 8px;
  border-radius: 30px;
  color: #005cae;
  transition: all 0.2s;
  display: inline-block; }

.status-badge.loading {
  background: #fff3e0;
  color: #c2410c;
  animation: pulse 1.2s infinite; }

@keyframes pulse {
  0% {
    opacity: 0.7; }
  50% {
    opacity: 1;
    background: #ffedd5; }
  100% {
    opacity: 0.7; } }
.status-badge.ready {
  background: #e6f7e6;
  color: #2e7d32; }

.fullscreen-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 6px;
  border-radius: 32px;
  font-size: 0.7rem;
  font-weight: 500;
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit; }

.fullscreen-btn:hover {
  background: #eef2ff;
  border-color: #cbd5e1;
  color: #0f172a;
  transform: scale(0.96); }

.fullscreen-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor; }

@media (max-width: 600px) {
  .video-wrapper {
    height: 240px; } }

/*# sourceMappingURL=video-player.css.map */
