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

/* Progress Container */
.progress-container {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: min(400px, 80vw);
    height: 25px;
    background: rgba(0,0,0,0.6);
    border: 3px solid #555;
    border-radius: 5px;
    overflow: hidden;
    display: none;
}

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

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A, #CDDC39);
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px black;
}

/* Secret Hint Tooltip */
.secret-hint {
    position: fixed;
    padding: 12px 20px;
    background: rgba(0,0,0,0.9);
    color: #ffd700;
    font-size: 1rem;
    border: 3px solid #ffd700;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
    white-space: nowrap;
}

.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;
}

