@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow: hidden;
}

.terminal-container {
    width: 100%;
    max-width: 850px;
    background: #000000;
    border: 1px solid #333333;
    padding: 30px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.05);
}

.header-block {
    margin-bottom: 25px;
    border-bottom: 1px dashed #222222;
    padding-bottom: 15px;
}

.title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.meta-info {
    font-size: 0.8rem;
    color: #888888;
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.tier-menace { color: #ff0000; font-weight: bold; }
.tier-extreme { color: #ffaa00; font-weight: bold; }
.tier-hard { color: #00ffcc; font-weight: bold; }

.cipher-box {
    margin: 25px 0;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #dddddd;
    background: #050505;
    padding: 20px;
    border-left: 2px solid #ffffff;
}

.input-line {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.prompt-symbol {
    color: #ff0000;
    margin-right: 12px;
    font-weight: bold;
}

.terminal-input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.status-message {
    margin-top: 15px;
    font-size: 0.85rem;
    min-height: 20px;
}

.lockout-screen {
    color: #ff0000;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.hidden { display: none; }
