body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  background: #111;
  color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background-color: #000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav a {
  color: #ccc;
  margin-left: 16px;
  text-decoration: none;
}

.section {
  padding: 20px;
}

.video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 0;
}

.video-card {
  width: 140px;
  cursor: pointer;
  text-align: center;
}

.video-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.video-card p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #ddd;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}



.player-container {
  background: #000;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 10px;
}

video {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 8px;
}
