body {
  font-family: Arial, sans-serif;
  background: #181818;
  color: #fff;
  margin: 0;
  padding: 0;
}
h1 {
  text-align: center;
  margin-top: 30px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.video-container {
  background: #222;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9/16;
  min-height: 390px;
  min-width: 220px;
  position: relative;
}
.video-container:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
  border-radius: 8px;
  position: static;
  left: unset;
  top: unset;
  transform: scale(1.8, 1.8);
  transition: none;
}
.short-video-container {
  background: #222;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9/16;
  min-height: 390px;
  min-width: 220px;
  position: relative;
}
.short-video-container:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.long-video-container {
  background: #222;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  min-height: 220px;
  min-width: 390px;
  position: relative;
}
.long-video-container:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
#global-audio-slider {
  accent-color: orange;
}
