/* mujun.dev */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #111827; color: #f3f4f6; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.6; }
.gradient-bar { height: 3px; background: linear-gradient(to right, #ef4444, #f59e0b); }
.hero { text-align: center; padding: 4rem 2rem 2rem; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); }
.counter { font-family: 'JetBrains Mono', monospace; font-size: 1.2rem; color: #ef4444; display: block; margin-top: 1rem; }
.timestamp { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: #4b5563; display: block; margin-top: 0.3rem; }
.detections { max-width: 560px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.detect-panel { background: #1f2937; border: 1px solid #374151; border-radius: 8px; padding: 1.25rem; }
.panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.panel-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.9rem; }
.severity { font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; padding: 2px 8px; border-radius: 3px; }
.severity.critical { background: rgba(239,68,68,0.15); color: #ef4444; }
.severity.warning { background: rgba(245,158,11,0.15); color: #f59e0b; }
.severity.clear { background: rgba(34,197,94,0.15); color: #22c55e; }
.severity-bar { height: 4px; background: #374151; border-radius: 2px; margin-bottom: 0.5rem; }
.bar-fill { height: 100%; border-radius: 2px; display: block; }
.panel-text { font-size: 0.75rem; color: #9ca3af; }
.comparison { max-width: 560px; margin: 0 auto; padding: 2rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.code-block { background: #1e293b; border-radius: 8px; padding: 1rem; }
.code-label { font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; color: #64748b; display: block; margin-bottom: 0.5rem; }
.code-text { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: #e2e8f0; white-space: pre; line-height: 1.6; }
.highlight { color: #ef4444; }
.resolved { color: #22c55e; }
.summary { text-align: center; padding: 3rem 2rem; }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.65rem; color: #374151; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 500px) { .comparison { grid-template-columns: 1fr; } }
