/* NUKEH Terminal Styles */
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');

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

body {
    font-family: 'Courier Prime', monospace;
    background: #000;
    color: #00ff00;
    overflow: hidden;
    line-height: 1.2;
    font-size: 14px;
}

.crt {
    background: #000;
    position: relative;
    height: 100vh;
    overflow: hidden;
    animation: flicker 0.15s infinite linear;
}

.crt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 50%, rgba(0, 255, 0, 0.03) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1000;
}

.crt::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1001;
}

@keyframes flicker {
    0% { opacity: 1; }
    97% { opacity: 1; }
    98% { opacity: 0.98; }
    99% { opacity: 0.99; }
    100% { opacity: 1; }
}

.terminal {
    padding: 20px;
    height: calc(100vh - 40px);
    overflow-y: auto;
    background: #000;
    font-size: 14px;
    white-space: pre-wrap;
    position: relative;
    z-index: 1;
}

.command-line {
    display: flex;
    margin-bottom: 5px;
}

.prompt-text {
    color: #00ff00;
    margin-right: 5px;
}

.command-input {
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: 'Courier Prime', monospace;
    font-size: 14px;
    outline: none;
    flex: 1;
    caret-color: #00ff00;
}

.output {
    margin-bottom: 10px;
}

.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.boot-text {
    color: #00ff00;
    font-family: 'Courier Prime', monospace;
}

.prompt {
    color: #00ff00;
}

.user-input {
    color: #00ff00;
}

.error {
    color: #ff0000;
}

.warning {
    color: #ffff00;
}

.classified {
    background: #00ff00;
    color: #000;
}

.cursor {
    background: #00ff00;
    animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* SEO Content - Hidden from visual users */
.seo-content {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terminal {
        padding: 10px;
        font-size: 12px;
    }
    
    .command-input {
        font-size: 12px;
    }
}