:root {
    --bg: #0b0b0b;
    --panel: #111;
    --border: #2a2a2a;
    --text: #eaeaea;
    --gray: #8a8a8a;
    --accent: #ffffff;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.container {
    max-width: 900px;
    width: 100%;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.tagline {
    color: var(--gray);
    margin-top: 8px;
    font-size: 14px;
}

.terminal {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    min-height: 250px;
    max-height: 400px;
    overflow-y: auto;
    font-size: 14px;
}

.terminal a {
    color: #0F0;
    text-decoration: underline;
}

.terminal a:hover {
    color: #8f8;
}

.line {
    margin: 4px 0;
    white-space: pre-wrap;
}

.prompt {
    color: #aaa;
}

.command {
    color: #fff;
}

.output {
    color: #bbb;
}

.cursor {
    display: inline-block;
    width: 10px;
    background: white;
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.suggestions {
    margin-top: 10px;
}

.suggestions button {
    background: #222;
    color: #eee;
    border: none;
    padding: 5px 10px;
    margin: 2px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
    font-family: inherit;
    cursor: pointer;
    font-size: 13px;
    opacity: .85;
}

.suggestions button:hover {
    background: #333;
    opacity: 1;
    transform: translateY(-1px);
}

footer {
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

footer a {
    color: #aaa;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

@media (max-width:600px) {
    .logo {
        font-size: 22px;
    }

    .terminal {
        padding: 15px;
        font-size: 13px;
    }
}