/* --- HERO TEXT EFFECTS --- */
.hero-text h1 span {
    display: block;
    font-size: 1.1em;
    font-weight: 900;
    color: #0d0d0d; 
    letter-spacing: 4px;
    text-shadow: 
        -1.5px -1.5px 0 #15fd00,  
         1.5px -1.5px 0 #15fd00,
        -1.5px  1.5px 0 #15fd00,
         1.5px  1.5px 0 #15fd00,
         0 0 10px rgba(21, 253, 0, 0.5);
    transition: all 0.4s ease;
}

.hero-text h1:hover span {
    color: #15fd00; 
    text-shadow: 0 0 30px #15fd00; 
    transform: scale(1.02);
}

/* --- LOGO ANIMATION CONTAINER --- */
.logo-animation-container {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    z-index: -1; 
    pointer-events: none;
    opacity: 0.15;
    padding-top: 80px;
}

#logoOutline {
    stroke-dasharray: 5000;
    stroke-dashoffset: 5000;
    filter: drop-shadow(0 0 0px #15fd00);
}

#animatedLogo {
    width: 100%;
    height: auto;
}

/* --- POPUPS & BANNERS --- */
.popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.popup-content {
    background: #111;
    padding: 30px;
    border: 2px solid #15fd00;
    text-align: center;
    border-radius: 15px;
}

.status-banner {
    background: #111;
    border-bottom: 2px solid #15fd00;
    padding: 10px;
    text-align: center;
    display: none;
}