* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Courier New', monospace; background: #0a0a0f; color: #e0e0e0; line-height: 1.6; }
.container { max-width: 1400px; margin: 0 auto; padding: 20px; }
nav { background: #1a1a1f; padding: 12px 20px; border-bottom: 1px solid #00d4ff; display: flex; align-items: center; justify-content: space-between; }
.logo { height: 36px; border-radius: 4px; }
.login-logo { width: 180px; margin: 0 auto 20px; display: block; border-radius: 8px; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: #00d4ff; text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: #fff; }
.btn { background: #00d4ff; color: #0a0a0f; border: none; padding: 10px 20px; cursor: pointer; font-family: inherit; font-size: 14px; transition: all 0.3s; border-radius: 3px; }
.btn:hover { background: #00a8cc; box-shadow: 0 0 10px #00d4ff; }
.btn-secondary { background: #333344; color: #e0e0e0; }
.btn-secondary:hover { background: #444455; box-shadow: none; }
.card { background: #1a1a1f; border: 1px solid #333344; padding: 20px; margin: 10px 0; border-radius: 4px; transition: border-color 0.3s; }
.card:hover { border-color: #00d4ff; }
.login-container { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; background: radial-gradient(circle at center, #1a1a2f 0%, #0a0a0f 100%); }
.login-box { background: #1a1a1f; border: 2px solid #00d4ff; padding: 40px; border-radius: 8px; box-shadow: 0 0 30px rgba(0,212,255,0.3); width: 400px; }
input, textarea { width: 100%; background: #0a0a0f; border: 1px solid #333344; color: #e0e0e0; padding: 10px; margin: 8px 0; font-family: inherit; border-radius: 3px; }
input:focus, textarea:focus { outline: none; border-color: #00d4ff; box-shadow: 0 0 5px rgba(0,212,255,0.5); }
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 3px; font-size: 11px; font-weight: bold; text-transform: uppercase; }
.status-open { background: #00d4ff; color: #0a0a0f; }
.status-active { background: #c4a44a; color: #0a0a0f; }
.status-done { background: #44ff88; color: #0a0a0f; }
.status-blocked { background: #ff4444; color: #fff; }
.status-planning { background: #666; color: #fff; }
.status-pending { background: #666; color: #fff; }
.status-approved { background: #44ff88; color: #0a0a0f; }
.status-noted { background: #c4a44a; color: #0a0a0f; }
.status-research { background: #00d4ff; color: #0a0a0f; }
.status-completed { background: #44ff88; color: #0a0a0f; }
.status-archived { background: #444; color: #999; }
.progress-bar { background: #333344; height: 16px; border-radius: 8px; overflow: hidden; margin: 8px 0; }
.progress-fill { background: linear-gradient(90deg, #00d4ff, #44ff88); height: 100%; transition: width 0.5s; }
.tabs { display: flex; gap: 5px; border-bottom: 1px solid #333344; margin: 20px 0; flex-wrap: wrap; }
.tab { padding: 10px 16px; cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.3s; font-size: 13px; }
.tab:hover { color: #00d4ff; }
.tab.active { border-bottom-color: #00d4ff; color: #00d4ff; }
.message { padding: 10px; margin: 5px 0; background: #0a0a0f; border-left: 3px solid #00d4ff; border-radius: 0 3px 3px 0; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px 12px; text-align: left; border-bottom: 1px solid #1a1a2f; }
th { color: #00d4ff; font-size: 12px; text-transform: uppercase; }
tr:hover { background: rgba(0,212,255,0.03); }
.chat-container { display: flex; flex-direction: column; height: 500px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 15px; background: #0a0a0f; border-radius: 4px; }
.chat-input { display: flex; gap: 10px; padding: 15px 0 0; }
.chat-input input { flex: 1; margin: 0; }
.error { color: #ff4444; padding: 10px; background: rgba(255,68,68,0.1); border: 1px solid #ff4444; border-radius: 4px; margin: 10px 0; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 15px; }
.skeleton { background: linear-gradient(90deg, #1a1a1f 25%, #222233 50%, #1a1a1f 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; height: 80px; border-radius: 4px; margin: 10px 0; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
code { font-family: 'Courier New', monospace; font-size: 13px; }
pre { overflow-x: auto; }
