/*
Theme Name: Tushar Terminal
Description: A premium Rust-first systems developer portfolio.
Version: 1.0
Author: Hostplane AI
*/

@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --color-bg: #0d0f12;
    --color-surface: #161a1f;
    --color-border: #262c35;
    --color-text: #e2e8f0;
    --color-muted: #94a3b8;
    --color-accent: #de6b35; /* Rust Orange */
    --font-mono: 'JetBrains Mono', monospace;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    background-image: radial-gradient(circle at 2px 2px, #1a1e24 1px, transparent 0);
    background-size: 40px 40px;
}

.terminal-panel {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.terminal-header {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.font-mono { font-family: var(--font-mono); }

.cursor {
    display: inline-block;
    width: 8px;
    height: 1.2em;
    background: var(--color-accent);
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.status-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}
.status-stable { background: rgba(222, 107, 53, 0.1); color: #de6b35; border: 1px solid rgba(222, 107, 53, 0.2); }
.status-alpha { background: rgba(251, 191, 36, 0.1); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.2); }
.status-concept { background: rgba(148, 163, 184, 0.1); color: #94a3b8; border: 1px solid rgba(148, 163, 184, 0.2); }