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

body {
    background-color: #181a20;
    color: #8b8d94;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.4;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.terminal {
    background-color: #23252e;
    border: 1px solid #2e3039;
    border-radius: 2px;
    width: 100%;
    max-width: 1000px;
    padding: 30px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}

.output {
    white-space: pre-wrap;
}

.command {
    color: #6cbf6b;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: bold;
}

.text-line {
    margin-bottom: 6px;
    color: #8b8d94;
}

.status {
    color: #6cbf6b;
}

.mirror-link {
    color: #5d8aa8;
    word-break: break-all;
    margin-bottom: 5px;
    padding-left: 10px;
}

.cursor {
    animation: blink 1s infinite;
    color: #8b8d94;
}

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