/* Gallery frame styling to match logo blue glow */
.gallery-container {
    position: relative;
    padding: 20px;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 0 15px var(--neon-blue),
                inset 0 0 10px rgba(0, 176, 255, 0.2);
    background-color: rgba(10, 26, 42, 0.1);
    max-width: 1200px;
}

.gallery-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    background: linear-gradient(45deg, transparent, var(--neon-blue), transparent);
    z-index: -1;
    opacity: 0.5;
    animation: frame-pulse 3s infinite alternate;
}

@keyframes frame-pulse {
    0% {
        opacity: 0.3;
        box-shadow: 0 0 10px var(--neon-blue);
    }
    100% {
        opacity: 0.6;
        box-shadow: 0 0 20px var(--neon-blue);
    }
}
