/* ==========================================================================
   VIDEO GALLERY LAYOUT & SECTIONS
   ========================================================================== */
.gallery-container {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    padding: 0 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Slightly wider boxes for widescreen video previews */
    gap: 1.5rem;
}

.video-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-item video {
    width: 100%;
    height: 200px;
    background: #000000; /* Black box fallback layer while elements load */
    display: block;
    object-fit: cover;
}

.video-caption {
    padding: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.video-caption-temp {
    padding: 0.75rem;
    font-size: 1.5rem;
    color: rgba(255, 0, 0, 0.8);
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   CATEGORY FILTER STYLING
   ========================================================================== */
.filter-btn.active {
    background: rgba(0, 217, 255, 0.4) !important;
    border-color: #00f2ff !important;
}