/* ===================== */
/* WORK IN PROGRESS OVERLAY */
/* ===================== */
.wip-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.wip-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hide header, footer, and content when WIP is active */
body.wip-active header,
body.wip-active footer,
body.wip-active #content,
body.wip-active #intro-overlay {
    display: none !important;
}

/* Logo container - only icon, no text */
.wip-logo {
    width: 120px;
    margin-bottom: 60px;
    animation: logo-pulse 2s ease-in-out infinite;
}

.wip-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(207, 192, 159, 0.4));
}

@keyframes logo-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(207, 192, 159, 0.4));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(207, 192, 159, 0.7));
    }
}

/* LED Strip Container */
.led-strip-container {
    width: 300px;
    height: 8px;
    background: rgba(207, 192, 159, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(207, 192, 159, 0.1);
}

/* LED Bar */
.led-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, 
        #cfc09f 0%, 
        #f5e6c8 25%, 
        #cfc09f 50%, 
        #f5e6c8 75%, 
        #cfc09f 100%
    );
    border-radius: 4px;
    position: relative;
    transition: width 0.3s ease;
    box-shadow: 
        0 0 10px rgba(207, 192, 159, 0.8),
        0 0 20px rgba(207, 192, 159, 0.5),
        0 0 30px rgba(207, 192, 159, 0.3);
}

/* LED dots effect on the bar */
.led-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 8px,
        rgba(255, 255, 255, 0.6) 9px,
        rgba(255, 255, 255, 0.6) 10px,
        transparent 11px,
        transparent 15px
    );
    animation: led-flow 0.5s linear infinite;
}

@keyframes led-flow {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 15px 0;
    }
}

/* LED glow effect */
.led-bar::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(207, 192, 159, 0.3);
    border-radius: 6px;
    filter: blur(4px);
    z-index: -1;
}

/* WIP Text */
.wip-text {
    margin-top: 30px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(207, 192, 159, 0.6);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .wip-logo {
        width: 90px;
        margin-bottom: 50px;
    }
    
    .led-strip-container {
        width: 250px;
    }
    
    .wip-text {
        font-size: 11px;
        letter-spacing: 2px;
    }
}
