/* mechanic.stream */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0c0c14; color: #e0e0e0; font-family: 'Inter', sans-serif; line-height: 1.6; }
.hero { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 2rem; position: relative; overflow: hidden; }
.grid-bg { position: absolute; inset: 0; background: repeating-linear-gradient(rgba(34,211,238,0.05) 0px, transparent 1px, transparent 40px), repeating-linear-gradient(90deg, rgba(34,211,238,0.05) 0px, transparent 1px, transparent 40px); }
.crosshair { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ch-h { position: absolute; width: 40px; height: 1px; background: rgba(34,211,238,0.2); left: -20px; }
.ch-v { position: absolute; width: 1px; height: 40px; background: rgba(34,211,238,0.2); top: -20px; }
.hud-frame { position: relative; text-align: center; padding: 3rem; z-index: 1; }
.bracket { position: absolute; width: 20px; height: 20px; }
.tl { top: 0; left: 0; border-top: 2px solid #22d3ee; border-left: 2px solid #22d3ee; }
.tr { top: 0; right: 0; border-top: 2px solid #22d3ee; border-right: 2px solid #22d3ee; }
.bl { bottom: 0; left: 0; border-bottom: 2px solid #22d3ee; border-left: 2px solid #22d3ee; }
.br { bottom: 0; right: 0; border-bottom: 2px solid #22d3ee; border-right: 2px solid #22d3ee; }
.bracket.sm { width: 12px; height: 12px; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(1.5rem, 4vw, 2.5rem); text-transform: uppercase; color: #e0e0e0; }
.stream-label { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: #22d3ee; display: block; margin-top: 0.5rem; }
.live-badge { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.75rem; font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: #ef4444; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.channels { max-width: 600px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.stream-panel { background: #141422; border: 1px solid rgba(34,211,238,0.3); padding: 1.5rem; position: relative; }
.panel-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; text-transform: uppercase; margin-bottom: 0.3rem; }
.panel-text { font-size: 0.8rem; color: #a0a0a0; margin-bottom: 0.75rem; }
.panel-stats { display: flex; gap: 1.5rem; }
.stat { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: #22d3ee; }
.live-channels { padding: 2rem 1.5rem; }
.channel-strip { display: flex; justify-content: center; gap: 1rem; }
.channel { width: 48px; height: 48px; border-radius: 50%; background: #141422; border: 2px solid #22d3ee; display: flex; align-items: center; justify-content: center; }
.channel.active { box-shadow: 0 0 12px rgba(34,211,238,0.4); }
.ch-glow { width: 8px; height: 8px; border-radius: 50%; background: #22d3ee; }
.ch-glow.dim { background: #1a1a2e; }
.disconnect { text-align: center; padding: 3rem 2rem; }
.end-text { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; color: #22d3ee; opacity: 0.5; }
.footer-brand { font-size: 0.6rem; color: #1a1a2e; display: block; margin-top: 0.5rem; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.scan-line { position: fixed; top: 0; left: 0; width: 100%; height: 1px; background: rgba(34,211,238,0.15); z-index: 9999; animation: scan 8s linear infinite; pointer-events: none; }
@keyframes scan { 0% { top: 0; } 100% { top: 100vh; } }
