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

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

.terminal {
    max-width: 800px;
    width: 100%;
}

.command {
    font-size: 16px;
    margin-bottom: 20px;
}

.ascii-art {
    font-size: 14px;
    line-height: 1.2;
    white-space: pre;
    overflow-x: auto;
    margin-bottom: 30px;
    text-shadow: 0 0 5px #00ff00;
}

.content {
    font-size: 16px;
    line-height: 1.8;
}

.prompt {
    color: #00ff00;
    margin-top: 20px;
}

.cursor {
    animation: blink 1s infinite;
}

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

a {
    color: #00ff00;
    text-decoration: none;
    border-bottom: 1px dotted #00ff00;
}

a:hover {
    text-shadow: 0 0 10px #00ff00;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    .ascii-art {
        font-size: 10px;
        line-height: 1.15;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .command {
        font-size: 14px;
    }
    
    .content {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .ascii-art {
        font-size: 9px;
    }
}

/* Mail server status styling */
.mail-status {
    margin: 0;
}

.mail-status p {
    margin: 0;
    line-height: 1.8;
}

.flash-update {
    animation: pulse-update 1s ease-in-out infinite;
}

@keyframes pulse-update {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.timestamp {
    color: #00aa00;
    font-size: 0.9em;
}

.checking {
    color: #ffaa00;
    animation: pulse 1s ease-in-out infinite;
}

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

.success {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.error {
    color: #ff4444;
    text-shadow: 0 0 5px #ff4444;
}
