/* videos.css */

/* Specific styles for the Videos page */
.videos-section {
    padding: 5rem 0;
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px var(--neon-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-wrapper h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--neon-color);
    margin: 0;
    text-align: center;
    text-shadow: 0 0 5px var(--neon-color);
}

.video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px var(--neon-color);
}
