body{
  background: #12121a;
  color: #ddd;
  font-family: sans-serif;
  padding: 20px;
}

h1{
  text-align: center;
  text-shadow: 0 0 5px #444;
  margin-bottom: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #444;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.video-thumb {
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center;
}

.video-thumb:hover {
  transform: scale(1.05);
}

.video-thumb video {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 8px #575757;
  background: #000;
}

.video-title {
  margin-top: 8px;
  font-size: 14px;
  color: #bbb;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
