/* Projects Page Styles */
#projects {
    background: 
        url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover,
        linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
}

#projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
        transparent 0%, 
        rgba(0, 255, 0, 0.03) 50%, 
        transparent 100%),
        repeating-linear-gradient(
            0deg,
            rgba(0, 255, 0, 0.1) 0px,
            rgba(0, 255, 0, 0.1) 1px,
            transparent 1px,
            transparent 2px
        );
    animation: scan 2s linear infinite;
    opacity: 0.3;
}

#projects::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center,
            transparent 0%,
            rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(45deg,
            rgba(0, 255, 0, 0.1) 0%,
            rgba(0, 0, 255, 0.1) 50%,
            rgba(255, 0, 255, 0.1) 100%);
    background-blend-mode: overlay;
    animation: pulse 4s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes scan {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

.project-card {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
}

.project-card:hover {
    border-color: rgba(0, 255, 0, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
} 