:root {
    --bg: #070a12;
    --panel: rgba(18, 20, 30, 0.72);
    --border: rgba(255, 255, 255, 0.06);

    --text: #e6e9f2;
    --muted: #8b93a7;
    --accent: #7aa2f7;
    --warn: #facc15;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;

    background: radial-gradient(circle at top, #0f1424 0%, var(--bg) 55%, #05070d 100%);
    color: var(--text);

    font-family: "JetBrains Mono", "JetBrainsMono Nerd Font", monospace;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 60px 16px;
}

/* glow background */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(122,162,247,0.08), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(167,139,250,0.06), transparent 45%);
    pointer-events: none;
}

/* PROFILE */
.profile {
    width: min(1000px, 92vw);
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 10px 14px;
    margin-bottom: 16px;

    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;

    border: 2px solid rgba(122,162,247,0.25);

    box-shadow: 0 0 25px rgba(122,162,247,0.18);
}

.name {
    font-size: 20px;
    font-weight: 700;

    background: linear-gradient(90deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.role {
    font-size: 14px;
    color: var(--warn);
    opacity: 0.9;
}

/* TERMINAL */
.terminal {
    width: min(1000px, 92vw);
    min-height: 520px;

    background: linear-gradient(180deg, rgba(18,20,30,0.75), rgba(10,12,20,0.9));
    border: 1px solid var(--border);
    border-radius: 14px;

    padding: 22px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.55);

    transition: 0.25s ease;
    position: relative;
}

.terminal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;

    background: linear-gradient(90deg, transparent, rgba(122,162,247,0.35), transparent);
}

.terminal:hover {
    transform: translateY(-2px);
}

/* OUTPUT */
.output {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 14px;
    white-space: pre-wrap;
}

/* INPUT */
.input-line {
    display: flex;
    gap: 10px;
    align-items: center;
}

.prompt {
    color: var(--accent);
    font-size: 14px;
}

input {
    flex: 1;

    background: transparent;
    border: none;
    outline: none;

    color: var(--text);
    font-size: 14.5px;

    caret-color: var(--accent);

    font-family: inherit;
}

::selection {
    background: rgba(122,162,247,0.25);
}
