/* Ellingson Mineral Company - Corporate Style (1995) */

body {
    background-color: #CCCCCC;
    background-image: url('../img/bg_tile.gif');
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', serif;
}

a {
    color: #003366;
}

a:visited {
    color: #660066;
}

a.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
}

a.nav-link:hover {
    color: #FFFF00;
    text-decoration: underline;
}

#corporate-header {
    width: 100%;
}

#corporate-nav {
    width: 100%;
}

#main-content {
    padding: 20px 0;
}

#corporate-footer {
    padding: 20px 0;
}

.status-ok {
    color: #009900;
    font-weight: bold;
}

.status-error {
    color: #FF0000;
    font-weight: bold;
}

/* Hidden elements - !important needed to override ID selector specificity */
.hidden {
    display: none !important;
}

/* Virus overlay styling */
#virus-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#virus-warning {
    text-align: center;
    color: #00FF00;
    font-family: 'Courier New', monospace;
}

#skull-art {
    color: #FF0000;
    font-size: 14px;
    animation: pulse 1s infinite;
}

#virus-message {
    color: #00FF00;
    font-size: 18px;
    margin-top: 20px;
}

/* Tanker routes overlay - positioned top-left */
#tanker-routes {
    position: fixed;
    top: 10%;
    left: 5%;
    background: #000000;
    border: 3px solid #00FF00;
    padding: 20px;
    z-index: 8888;
    font-family: 'Courier New', monospace;
    color: #00FF00;
    box-shadow: 0 0 20px #00FF00;
}

#route-data {
    font-size: 12px;
    white-space: pre;
    margin: 0;
}

/* Hacker message overlay - positioned bottom-right */
#hacker-message {
    position: fixed;
    bottom: 10%;
    right: 5%;
    background: #000000;
    border: 2px solid #FF0000;
    padding: 30px;
    z-index: 7777;
    text-align: center;
}

.terminal-text {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    color: #00FF00;
    text-shadow: 0 0 10px #00FF00;
}

.small-text {
    font-size: 12px;
    color: #FF0000;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Corruption layer */
#corruption-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 6666;
}
