/* Hacker Loading Screen */
.hacker-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
}

.loader-content {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

.loader-text {
    color: #00ff00;
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #00ff00;
    min-height: 60px;
}

.loader-cursor {
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.loader-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00cc00, #00ff00);
    width: 0%;
    box-shadow: 0 0 10px #00ff00;
    transition: width 0.3s ease;
}

.loader-percentage {
    color: #00ff00;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 10px #00ff00;
    margin-top: 10px;
}

.loader-matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
    pointer-events: none;
}

.matrix-column {
    position: absolute;
    top: -100%;
    color: #00ff00;
    font-size: 14px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    animation: matrix-fall linear infinite;
}

@keyframes matrix-fall {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(calc(100vh + 100%));
    }
}

.loader-status {
    color: #00ff00;
    font-size: 12px;
    margin-top: 15px;
    opacity: 0.7;
}

.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}
