/* FILE: domain.com/assets/style.css */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: #0a0e17; color: #e2e8f0; font-family: 'Fira Code', monospace; -webkit-font-smoothing: antialiased; }
.text-cyan { color: #06b6d4; }
.text-green { color: #10b981; }
.text-yellow { color: #f59e0b; }
.text-red { color: #ef4444; }

.terminal-screen {
    background: #111827; border: 1px solid rgba(6, 182, 212, 0.3); border-radius: 8px;
    padding: 20px; box-shadow: inset 0 0 20px rgba(0,0,0,0.5); overflow-y: auto;
}
.terminal-screen::-webkit-scrollbar { width: 8px; }
.terminal-screen::-webkit-scrollbar-track { background: #0a0e17; }
.terminal-screen::-webkit-scrollbar-thumb { background: #06b6d4; border-radius: 4px; }

.task-row { margin-bottom: 20px; }
.task-row .task-info { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.9rem; }
.task-row .task-info .tag { font-weight: bold; color: #10b981; }
.task-row .task-info .percentage { font-weight: bold; color: #06b6d4; }
.task-row .progress-bg { width: 100%; height: 8px; background: rgba(226, 232, 240, 0.05); border-radius: 4px; overflow: hidden; }
.task-row .progress-bg .progress-bar { width: 0%; height: 100%; background: linear-gradient(90deg, #06b6d4, #10b981); box-shadow: 0 0 10px rgba(6, 182, 212, 0.5); }

/* DESKTOP (Flexbox Version - Ramah untuk Code Editor Lama) */
body.is-desktop { display: flex; justify-content: center; align-items: center; min-height: 100vh; padding: 20px; }
body.is-desktop .desktop-container { display: flex; width: 100%; max-width: 1200px; }

/* Menggunakan flex dan margin untuk menggantikan grid dan gap */
body.is-desktop .desktop-sidebar { flex: 0 0 320px; margin-right: 30px; background: #111827; padding: 30px; border-radius: 12px; border: 1px solid rgba(148, 163, 184, 0.2); height: fit-content; }

body.is-desktop .desktop-sidebar h1 { color: #06b6d4; margin-bottom: 5px; text-shadow: 0 0 10px rgba(6, 182, 212, 0.3); }
body.is-desktop .desktop-sidebar p { color: #94a3b8; font-size: 0.85rem; margin-bottom: 30px; line-height: 1.5; }
body.is-desktop .desktop-sidebar input { width: 100%; background: rgba(10, 14, 23, 0.5); border: 1px solid #06b6d4; color: #e2e8f0; padding: 12px; border-radius: 6px; margin-bottom: 15px; font-family: 'Fira Code', monospace; outline: none; }
body.is-desktop .desktop-sidebar button { width: 100%; background: #10b981; color: #0a0e17; border: none; padding: 15px; border-radius: 6px; font-weight: bold; font-family: 'Fira Code', monospace; cursor: pointer; transition: background 0.3s; }

body.is-desktop .desktop-main-content { flex: 1; }
body.is-desktop .desktop-main-content .terminal-screen { height: 600px; }

/* MOBILE */
body.is-mobile { padding: 15px; display: flex; flex-direction: column; height: 100vh; overflow: hidden; }
body.is-mobile .mobile-header { text-align: center; padding: 10px 0 20px 0; }
body.is-mobile .mobile-header h1 { color: #06b6d4; font-size: 1.8rem; }
body.is-mobile .mobile-header p { color: #94a3b8; font-size: 0.8rem; margin-top: 5px; }
body.is-mobile .mobile-content { flex: 1; display: flex; flex-direction: column; gap: 15px; }
body.is-mobile .mobile-content input { width: 100%; background: #111827; border: 1px solid #06b6d4; color: #e2e8f0; padding: 15px; border-radius: 8px; font-size: 1rem; text-align: center; outline: none; }
body.is-mobile .mobile-content .btn-large { width: 100%; background: #10b981; color: #0a0e17; border: none; padding: 18px; border-radius: 8px; font-weight: bold; font-size: 1.1rem; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3); }
body.is-mobile .mobile-content .mobile-terminal { flex: 1; margin-bottom: 10px; }