/* style.css */

body {
  font-family: system-ui, -apple-system, sans-serif;
}

/* YouTube-like video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px 16px;
  padding: 0;
}

.thumbnail {
  transition: transform 0.2s ease;
  border-radius: 12px;
  overflow: hidden;
  background: #18181b;
}

.thumbnail:hover {
  transform: scale(1.02);
}

.video-card {
  margin-top: 12px;
  padding-bottom: 0;
}

.video-card h3 {
  margin: 0 0 4px;
  line-height: 1.4;
  font-size: 1rem;
  font-weight: 500;
}

.video-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #a1a1aa;
}

/* Mobile */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}