.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
}

.video-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border: 1px solid #1a1a1a;
    transition: 0.3s;
}

.video-item h3 {
    font-family: 'Special Elite', cursive;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    filter: grayscale(0.5);
    transition: 0.5s;
}

.video-item:hover iframe { filter: grayscale(0); }