/* muhan.dev */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0d1117; color: #c9d1d9; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; }
.hero { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.terminal { width: 100%; max-width: 580px; margin: 0 auto; }
.chrome { background: #21262d; border-radius: 8px 8px 0 0; padding: 10px 14px; display: flex; align-items: center; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #f85149; }
.dot.yellow { background: #d29922; }
.dot.green { background: #3fb950; }
.chrome-title { font-family: 'Fira Code', monospace; font-size: 0.65rem; color: #484f58; margin-left: 8px; }
.terminal-body { background: #161b22; padding: 1.5rem; border-radius: 0 0 8px 8px; }
.command { font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 0.8rem; margin-bottom: 0.3rem; }
.prompt { color: #58a6ff; }
.output { font-family: 'Fira Code', monospace; font-size: 0.75rem; color: #8b949e; margin-bottom: 0.5rem; }
.output .green { color: #3fb950; }
.output .yellow { color: #d29922; }
.output.dim { color: #484f58; }
.ascii-art { font-family: 'Fira Code', monospace; font-size: 0.55rem; color: #58a6ff; margin: 0.5rem 0; line-height: 1.2; }
.cursor { display: inline-block; width: 8px; height: 16px; background: #3fb950; animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.commands { padding: 1rem 2rem; }
.config { padding: 1rem 2rem; }
.code-text { font-family: 'Fira Code', monospace; font-size: 0.75rem; line-height: 1.8; }
.code-text .blue { color: #58a6ff; }
.code-text .yellow { color: #d29922; }
.exit { text-align: center; padding: 3rem 2rem; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
