/* ============================================
   LANDING PAGE - COMPONENT STYLES
   Progress bar, hints, particles
   ============================================ */

/* Progress Container */
.progress-container {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: min(450px, 85vw);
    height: 30px;
    background: rgba(0, 20, 40, 0.9);
    border: 2px solid #00d4ff;
    border-radius: 3px;
    overflow: hidden;
    display: none;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.progress-container.visible {
    display: block;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff4400, #ff6600, #ffaa00);
    transition: width 0.3s ease;
    box-shadow: 
        0 0 30px rgba(255, 100, 0, 0.8),
        inset 0 -5px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.85rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Secret Hint Tooltip */
.secret-hint {
    position: fixed;
    padding: 12px 20px;
    background: rgba(0, 20, 40, 0.95);
    color: #00d4ff;
    font-size: 0.9rem;
    border: 2px solid #00d4ff;
    border-radius: 5px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
    white-space: nowrap;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.secret-hint.visible {
    opacity: 1;
}

/* Particle Effects Container */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Lightning Flash */
.lightning-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 220, 255, 0.3);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
}

.lightning-flash.active {
    animation: lightning 0.2s ease-out;
}

@keyframes lightning {
    0% { opacity: 1; }
    20% { opacity: 0.2; }
    40% { opacity: 0.8; }
    60% { opacity: 0.1; }
    80% { opacity: 0.5; }
    100% { opacity: 0; }
}

/* Beam Charge Indicator */
.beam-charging {
    position: fixed;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    color: #00d4ff;
    font-size: 1.2rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    opacity: 0;
    pointer-events: none;
    z-index: 15;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.beam-charging.visible {
    opacity: 1;
    animation: chargeFlash 0.3s ease-in-out infinite;
}

@keyframes chargeFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

