body {
    background: #0a0a0a;
    color: #00ff00;
    font-family: 'Fira Mono', 'Consolas', monospace;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.terminal {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 8px;
    box-shadow: 0 16px 70px rgba(0, 255, 0, 0.1);
    width: 90vw;
    max-width: 1000px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: terminalGlow 2s ease-in-out infinite alternate;
}

@keyframes terminalGlow {
    0% { box-shadow: 0 16px 70px rgba(0, 255, 0, 0.1); }
    100% { box-shadow: 0 16px 70px rgba(0, 255, 0, 0.2); }
}
.terminal-header {
    background: #111;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }
.terminal-title {
    margin-left: 16px;
    color: #aaa;
    font-size: 1rem;
}
.terminal-body {
    flex: 1;
    padding: 16px;
    background: #0a0a0a;
    color: #00ff00;
    font-size: 14px;
    line-height: 1.4;
    overflow-y: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.typing {
    animation: typing 0.05s steps(1) infinite;
}

@keyframes typing {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.error {
    color: #ff4757;
}

.warning {
    color: #ffa502;
}

.success {
    color: #2ed573;
}

.info {
    color: #70a1ff;
}
.terminal-input {
    background: #161b22;
    border-top: 1px solid #30363d;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.prompt {
    color: #00ff00;
    margin-right: 8px;
    text-shadow: 0 0 5px #00ff00;
}

input[type="text"] {
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    width: 100%;
    text-shadow: 0 0 3px #00ff00;
}

input[type="text"]::selection {
    background: rgba(0, 255, 0, 0.3);
}
::-webkit-scrollbar {
    width: 8px;
    background: #222;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
