/**
 * Ellingson Mineral Company - Dev Environment
 * Terminal/hacker aesthetic with green-on-black theme
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #00ff00;
    font-family: 'Courier New', Monaco, monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 800px;
}

.logo {
    font-size: 14px;
    color: #ffaa00;
    margin-bottom: 40px;
    white-space: pre;
    line-height: 1.2;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ff00;
}

.subtitle {
    color: #ffaa00;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.status {
    border: 1px solid #00ff00;
    padding: 20px;
    margin: 20px 0;
}

.status-line {
    margin: 10px 0;
}

.blink {
    animation: blink 1s infinite;
}

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

.footer {
    margin-top: 40px;
    color: #666;
    font-size: 0.8em;
}
