@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Syne+Mono&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { min-height: 100vh; background: #1a1a2e; font-family: 'Syne Mono', monospace; color: #e0e0e0; user-select: none; }
#ns-app { min-height: 100vh; position: relative; }
#ns-desktop { min-height: 100vh; background: linear-gradient(135deg, #2d3a5c, #1a1a2e); padding-bottom: 40px; }
#ns-taskbar { position: fixed; bottom: 0; left: 0; right: 0; height: 36px; background: #0a0a14; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; font-size: 0.7rem; z-index: 5; }
#ns-notifs { padding: 16px; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.ns-toast {
  width: min(320px, 90vw); padding: 12px 16px; background: #2a2a40; border-left: 4px solid #5865f2;
  border-radius: 6px; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.4); animation: ns-slide 0.3s ease;
}
.ns-toast:hover { background: #3a3a55; }
.ns-toast h4 { font-family: 'Bungee', cursive; font-size: 0.75rem; margin-bottom: 4px; color: #fff; }
.ns-toast p { font-size: 0.65rem; opacity: 0.8; }
@keyframes ns-slide { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.ns-screen { position: fixed; inset: 0; z-index: 20; display: none; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-align: center; background: rgba(10,10,20,0.96); }
.ns-screen.active { display: flex; }
.ns-credit { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; opacity: 0.7; margin-bottom: 12px; color: #c8a84b; }
h1 { font-family: 'Bungee', cursive; font-size: clamp(1.2rem, 4vw, 1.8rem); color: #f0d880; margin-bottom: 12px; }
.ns-tagline { font-size: 0.85rem; margin-bottom: 20px; color: #aaa; }
button { font-family: 'Syne Mono', monospace; font-size: 0.75rem; padding: 12px 28px; color: #fff; background: #2a2040; border: 1px solid rgba(200,168,75,0.4); border-radius: 6px; cursor: pointer; }
.ns-exit { position: fixed; bottom: 44px; right: 14px; font-size: 0.7rem; color: rgba(200,168,75,0.6); text-decoration: none; z-index: 30; }
