.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.video-thumb {
    position: relative;
    height: 200px;
    cursor: pointer;
}

.video-thumb img {
    width: 100%; height: 100%; object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(139, 0, 0, 0.8);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: #fff;
    font-size: 1.5rem;
    transition: var(--transition);
}

.video-thumb:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary-color);
}

.video-info {
    padding: 15px;
}

.video-platform {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.video-info h3 {
    font-size: 1rem;
    margin-top: 5px;
}
