.video-section {
    background-color: rgba(30, 30, 30, 0.9);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #333;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.video-card {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border: 1px solid #333;
    transition: all 0.3s;
}

.video-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.5);
}

.video-title {
    color: var(--warning-color);
    margin: 0 0 10px 0;
}

.video-date {
    color: #999;
    font-size: 0.8em;
    margin: 0;
}

.video-desc {
    margin: 10px 0 0 0;
    font-size: 0.9em;
}