input[type="text"], input[type="range"], button {
    background: rgba(0, 30, 0, 0.8);
    color: #0f0;
    border: 1px solid #0f0;
    font-family: 'Courier New', monospace;
    font-size: 1em;
    padding: 0.5em 1em;
    margin: 0.5em 0;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,255,0,0.2);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="text"]:focus, input[type="range"]:focus, button:focus {
    border-color: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

input[type="range"] {
    width: 100%;
    accent-color: #0f0;
    background: transparent;
}

button {
    cursor: pointer;
    background: #001100;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0,255,0,0.1);
}

button:hover {
    background: #003300;
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 15px #0f0;
}
.hidden-block {
    visibility: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0;
}
body {
    background: #000 url('../img/terminal_bg.png') no-repeat center center fixed;
    background-size: cover;
    color: #0f0;
}

.database-entry {
    background: rgba(0, 30, 0, 0.9);
    border: 1px solid #0f0;
    padding: 20px;
    margin: 15px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.database-entry::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 255, 0, 0.1),
        transparent
    );
    animation: scanline 6s infinite;
}

@keyframes scanline {
    100% {
        left: 100%;
    }
}

.status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.corrupted .status-indicator {
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
}

.pure .status-indicator {
    background: #0f0;
    box-shadow: 0 0 10px #0f0;
}

.tech-details {
    border-top: 1px dashed #0f0;
    margin-top: 1rem;
    padding-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.tech-details span {
    display: block;
    margin: 0.3rem 0;
}

.tech-details::before {
    display: block;
    color: #0f0;
    margin-bottom: 0.5rem;
}
