body {
    background-color: #121212;
    color: white;
    font-family: Arial, sans-serif;
  }
  .video-player {
    max-width: 960px;
    margin: 0 auto;
  }
  .video-list .card {
    background-color: #1e1e1e;
    border: none;
    transition: transform 0.2s ease;
  }
  .video-list .card:hover {
    transform: scale(1.03);
  }
  .video-list img {
    border-radius: 8px;
    object-fit: cover;
    height: 150px;
  }
  