/* VIDEO GALLERY STYLES */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff; /* Neumorphism */
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.video-card:hover {
    transform: translateY(-12px);
    box-shadow: 30px 30px 80px #d9d9d9, -30px -30px 80px #ffffff;
}

.video-thumb {
    position: relative;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.08);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4.5rem;
    color: #ff0000;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    animation: pulse-play 2s infinite;
    transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
    color: var(--accent);
    transform: translate(-50%, -50%) scale(1.15);
}

@keyframes pulse-play {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.12); }
}

.video-info {
    padding: 1.2rem;
    text-align: center;
}

.video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.video-info p {
    font-size: 0.95rem;
    color: #555;
}

/* Accent button */
.btn-accent {
    background: var(--accent);
    color: #333;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.5);
}