body {
    background: #001100 url('../img/terminal_bg.png') no-repeat center center fixed;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
}

nav {
    padding: 1rem;
    border-bottom: 2px solid #00ff00;
}

nav a {
    color: #00ff00;
    text-decoration: none;
    margin-right: 2rem;
}

.terminal {
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    margin: 2rem;
    border: 1px solid #00ff00;
}

/* 
.cursor {
    animation: blink 1s infinite;
    border: 1px solid red; /* Temporary debug border 
} 

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
} */

.typing-effect {
    border-right: 2px solid #00ff00;
    animation: typing 3s steps(40), blink-caret 0.75s step-end infinite;
}


footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer img {
    width: 80px;
    margin-bottom: 1rem;
    animation: flash 1s infinite;
}

@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}

footer .footer-content:hover img {
    animation: none;
    opacity: 1;
    filter: drop-shadow(0 0 10px #0f0);
    transform: scale(1.2);
    transition: all 0.5s;
}

.praise-text {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    animation: flash 1s infinite;
}

footer .footer-content:hover .praise-text {
    animation: none; 
    filter: none;
    transform: none;
}


@media only screen and (max-width: 1000px) {
    
    .database-entry {
        padding: 1rem;
        margin: 0.5rem;
        font-size: 0.9em;
    }
    
    .tech-details {
        font-size: 0.85em;
        opacity: 0.7;
    }
    
    .status-indicator {
        width: 12px;
        height: 12px;
    }
}

@media only screen and (max-width: 800px) {
    .database-entry {
        margin: 0.25rem;
        padding: 0.75rem;
        font-size: 0.85em;
    }
    
    .tech-details {
        display: none;
    }
    
    .database-entry::before {
        animation-duration: 4s;
    }
    
    h3 {
        font-size: 1.1em;
    }
}

@media only screen and (max-width: 600px) {
    .database-entry {
        border-width: 2px;
        box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
    }
    
    .status-indicator {
        width: 10px;
        height: 10px;
    }
    
}

