@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

.terminal-border {
    border: 2px solid #00ff41;
    position: relative;
}

.terminal-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff41, #00ff41);
    z-index: -1;
    opacity: 0.1;
}

.accent-green {
    color: #00ff41;
}

.accent-orange {
    color: #ff6b35;
}

.grid-bg {
    background-image: 
        linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.brutalist-box {
    border: 1px solid #e0e0e0;
    background: #0a0a0a;
    position: relative;
    transition: transform 0.2s ease;
}

.brutalist-box:hover {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 #00ff41;
}

.command-line {
    background: #1a1a1a;
    border-left: 3px solid #00ff41;
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.blink {
    animation: blink 1s infinite;
}

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

.slide-in {
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ascii-art {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    line-height: 1.2;
    color: #00ff41;
    white-space: pre;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff41;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
