/* ReconForge - Intro Animation Styles */
.intro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #050505 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeOut 1s ease-in-out 3s forwards;
    transition: opacity 1s ease-in-out;
}

.intro-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 65, 0.1) 0%, transparent 50%);
    animation: introGlow 4s ease-in-out infinite;
}

@keyframes introGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.intro-logo {
    position: relative;
    width: 150px;
    height: 150px;
    animation: logoAnimation 3s ease-in-out;
    margin-bottom: 20px;
}

.spider-logo {
    width: 100%;
    filter: 
        drop-shadow(0 0 20px rgba(57, 255, 20, 0.8))
        drop-shadow(0 0 40px rgba(57, 255, 20, 0.6))
        drop-shadow(0 0 60px rgba(57, 255, 20, 0.4));
    animation: pulseLogo 2s infinite alternate;
}

@keyframes pulseLogo {
    0% { transform: scale(0.95); }
    100% { transform: scale(1.05); }
}

.intro-text {
    text-align: center;
    opacity: 0;
    animation: textFadeIn 2s ease-in-out 1s forwards;
}

.intro-text h1 {
    color: #39ff14;
    font-family: 'Orbitron', 'JetBrains Mono', monospace;
    font-size: 3.2rem;
    font-weight: 700;
    text-shadow: 
        0 0 30px rgba(57, 255, 20, 0.8),
        0 0 60px rgba(57, 255, 20, 0.6),
        0 0 90px rgba(57, 255, 20, 0.4);
    letter-spacing: 4px;
    margin: 0;
    background: linear-gradient(45deg, #39ff14, #00ff41, #39ff14);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.intro-credits {
    color: rgba(224, 255, 224, 0.8);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    display: flex;
    gap: 15px;
    align-items: center;
    opacity: 0;
    animation: textFadeIn 1.5s ease-in-out 1.5s forwards;
}

.credit-name {
    color: #39ff14;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 1px;
}

.credit-name:hover {
    background: rgba(57, 255, 20, 0.2);
    border-color: #39ff14;
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.8);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    transform: scale(1.05);
}

@keyframes logoAnimation {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    40% {
        transform: translateY(0);
        opacity: 1;
    }
    60% { transform: scale(1); }
    70% { transform: scale(1.1); }
    80% { transform: scale(1); }
    90% { transform: scale(1.05); }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}