.video-gallery video {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.video-gallery video:hover {
  transform: scale(1.05);
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 20px;
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.video-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.video-info {
  padding: 15px;
}

.video-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.video-description {
  font-size: 0.95em;
  color: #555;
}

