/* =========================
   FUTURISTIC TERMINAL
========================= */
.terminal {
    width: 100%;
    max-width: 760px;
    background: rgba(10, 15, 28, 0.95);
    border: 1px solid rgba(0,255,255,0.15);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
            0 0 25px rgba(0,255,255,0.08),
            0 0 80px rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    z-index: -1;
}

/* =========================
   HEADER
========================= */
.terminal-header {
    height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    background:
            linear-gradient(
                    180deg,
                    rgba(255,255,255,0.04),
                    rgba(255,255,255,0.02)
            );
    border-bottom:
            1px solid rgba(255,255,255,0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.terminal-title {
    margin-left: 10px;
    color: #7dd3fc;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: Consolas, monospace;
}

/* =========================
   BODY
========================= */
.terminal-body {
    padding: 10px;
    overflow-x: auto;
}

.terminal-body pre {
    margin: 0;
}

.terminal-body code {
    font-family:
            "JetBrains Mono",
            "Fira Code",
            Consolas,
            monospace;
    font-size: 0.95rem;
    line-height: 1.9;
    color: #e2e8f0;
}

/* =========================
   SYNTAX HIGHLIGHTING
========================= */
.comment {
    color: #64748b;
}

.keyword {
    color: #c084fc;
}

.class {
    color: #38bdf8;
}

.method {
    color: #22d3ee;
}

.variable {
    color: #facc15;
}

.string {
    color: #4ade80;
}

.constant {
    color: #fb7185;
}

.operator {
    color: #94a3b8;
}

.type {
    color: #f472b6;
}