:root{--font-text:"Trebuchet MS", Tahoma, Geneva, Verdana, sans-serif;--font-code:"Courier New", Courier, monospace;--phase-fetch:#2196f3;--phase-decode:#ff9800;--phase-execute:#4caf50;--bus-address:#9c27b0;--bus-data:#e91e63;--bus-control:#00bcd4;--colour-accent:#ff5722;--transition:.25s ease}[data-theme=light]{--bg:#f4f6f9;--bg-panel:#fff;--bg-node:#e8edf5;--bg-node-active:#1a56a8;--bg-cpu:#dce4f0;--bg-ram:#e8f5e9;--border:#c0cfe8;--text:#1a1f2e;--text-muted:#5a6580;--text-node:#1a1f2e;--text-node-active:#fff;--shadow:0 2px 12px #0000001a;--shadow-node:0 2px 6px #00000026}[data-theme=dark]{--bg:#0f1117;--bg-panel:#1a1f2e;--bg-node:#252c3d;--bg-node-active:#1a56a8;--bg-cpu:#1e2535;--bg-ram:#1a2920;--border:#2e3a55;--text:#e8ecf4;--text-muted:#8896b0;--text-node:#c8d4e8;--text-node-active:#fff;--shadow:0 2px 16px #0006;--shadow-node:0 2px 8px #00000080}*,:before,:after{box-sizing:border-box;margin:0;padding:0}html{font-size:16px}body{font-family:var(--font-text);background:var(--bg);color:var(--text);min-height:100vh;transition:background var(--transition), color var(--transition)}.app{flex-direction:column;min-height:100vh;display:flex}.app-header{background:var(--bg-panel);border-bottom:2px solid var(--border);box-shadow:var(--shadow);justify-content:space-between;align-items:center;gap:1rem;padding:.75rem 1.5rem;display:flex}.app-header__title{color:var(--text);white-space:nowrap;font-size:1.25rem;font-weight:700}.app-header__title span{color:var(--phase-fetch)}.app-header__controls{align-items:center;gap:.75rem;display:flex}.mode-tabs{background:var(--bg);border:1px solid var(--border);border-radius:8px;gap:.25rem;padding:3px;display:flex}.mode-tab{font-family:var(--font-text);cursor:pointer;color:var(--text-muted);transition:background var(--transition), color var(--transition);background:0 0;border:none;border-radius:6px;padding:.35rem .9rem;font-size:.85rem;font-weight:600}.mode-tab:hover{background:var(--bg-node);color:var(--text)}.mode-tab--active{background:var(--phase-fetch);color:#fff}.mode-tab--active.tab--quiz{background:var(--phase-execute)}.theme-toggle{color:var(--text-muted);cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;gap:.4rem;font-size:.8rem;display:flex}.theme-toggle input[type=checkbox]{appearance:none;background:var(--border);cursor:pointer;width:36px;height:20px;transition:background var(--transition);border-radius:10px;position:relative}.theme-toggle input[type=checkbox]:checked{background:var(--phase-fetch)}.theme-toggle input[type=checkbox]:after{content:"";width:14px;height:14px;transition:left var(--transition);background:#fff;border-radius:50%;position:absolute;top:3px;left:3px}.theme-toggle input[type=checkbox]:checked:after{left:19px}.app-main{flex:1;padding:1rem 1.5rem}.mode-layout{grid-template-columns:1fr 390px;align-items:start;gap:1.25rem;height:calc(100vh - 80px);display:grid}.diagram-pane{background:var(--bg-panel);border:1px solid var(--border);box-shadow:var(--shadow);border-radius:12px;padding:.5rem}.diagram-pane svg{width:100%;height:auto;display:block}.info-pane{background:var(--bg-panel);border:1px solid var(--border);box-shadow:var(--shadow);border-radius:12px;flex-direction:column;gap:.85rem;max-height:calc(100vh - 90px);padding:1.25rem;display:flex;overflow-y:auto}.cpu-enclosure{fill:var(--bg-cpu);stroke:var(--border);stroke-width:2px}.enclosure-label{font-family:var(--font-text);fill:var(--text-muted);text-anchor:middle;font-size:14px;font-weight:700}.cache-badge{fill:#fff3e0;stroke:#ff9800;stroke-width:1.5px}[data-theme=dark] .cache-badge{fill:#2d2010}.cache-label{font-family:var(--font-text);fill:#e65100;text-anchor:middle;font-size:11px;font-weight:600}.bus-label{font-family:var(--font-text);font-size:10px;font-weight:600}.bus-drop{stroke:var(--border);stroke-width:1.5px;stroke-dasharray:3 3}.internal-wire{stroke:var(--border);stroke-width:1.5px}.cpu-node rect{fill:var(--bg-node);stroke:var(--border);stroke-width:1.5px;filter:drop-shadow(var(--shadow-node));transition:fill .2s,stroke .2s,filter .2s}.node-label{font-family:var(--font-text);fill:var(--text-node);text-anchor:middle;dominant-baseline:auto;pointer-events:none;font-size:15px;font-weight:700}.node-sublabel{font-family:var(--font-text);fill:var(--text-muted);text-anchor:middle;pointer-events:none;font-size:9px}.node-value{font-family:var(--font-code);fill:var(--phase-execute);text-anchor:middle;pointer-events:none;font-size:9px}.cpu-node--active rect{fill:var(--bg-node-active);stroke:#5b9bd5;stroke-width:2.5px;filter:drop-shadow(0 0 8px #1a56a8b3)}.cpu-node--active .node-label,.cpu-node--active .node-sublabel{fill:var(--text-node-active)}.phase-fetch .cpu-node--active rect{fill:#1565c0;stroke:var(--phase-fetch);filter:drop-shadow(0 0 10px #2196f3cc)}.phase-decode .cpu-node--active rect{fill:#e65100;stroke:var(--phase-decode);filter:drop-shadow(0 0 10px #ff9800cc)}.phase-execute .cpu-node--active rect{fill:#2e7d32;stroke:var(--phase-execute);filter:drop-shadow(0 0 10px #4caf50cc)}.cpu-node--target rect{stroke:var(--colour-accent);stroke-width:2.5px;animation:1.2s ease-in-out infinite pulse-ring}@keyframes pulse-ring{0%{stroke-opacity:1;stroke-width:2.5px}50%{stroke-opacity:.4;stroke-width:4px}to{stroke-opacity:1;stroke-width:2.5px}}.cpu-node--correct rect{animation:.4s ease-out flash-green;fill:#2e7d32!important;stroke:var(--phase-execute)!important}@keyframes flash-green{0%{filter:drop-shadow(0 0 16px #4caf50)}to{filter:drop-shadow(0 0 6px #4caf5066)}}.cpu-node--wrong rect{animation:.4s ease-out flash-red;fill:#b71c1c!important;stroke:#ef5350!important}@keyframes flash-red{0%{filter:drop-shadow(0 0 16px #ef5350)}to{filter:drop-shadow(0 0 6px #ef53504d)}}.progress-bar{background:var(--bg);border:1px solid var(--border);border-radius:3px;height:6px;overflow:hidden}.progress-bar__fill{background:var(--phase-fetch);border-radius:3px;height:100%;transition:width .4s}.progress-label{color:var(--text-muted);text-align:right;margin-top:-.2rem;font-size:.75rem}.badges{flex-wrap:wrap;gap:.5rem;display:flex}.badge{font-family:var(--font-text);text-transform:uppercase;letter-spacing:.05em;border-radius:4px;padding:.2rem .6rem;font-size:.72rem;font-weight:700}.badge--fetch{background:var(--phase-fetch);color:#fff}.badge--decode{background:var(--phase-decode);color:#fff}.badge--execute{background:var(--phase-execute);color:#fff}.badge--instruction{background:var(--bg-node);color:var(--text);border:1px solid var(--border);font-family:var(--font-code)}.step-title{color:var(--text);font-size:1rem;font-weight:700;line-height:1.3}.quiz-question{color:var(--phase-fetch)}.step-explanation{color:var(--text);font-size:.875rem;line-height:1.65}.register-update{background:var(--bg);border:1px solid var(--border);border-left:3px solid var(--phase-execute);border-radius:6px;padding:.5rem .75rem;font-size:.82rem}.register-update__label{color:var(--text-muted);margin-bottom:.2rem;font-weight:600;display:block}.register-update__value{font-family:var(--font-code);color:var(--phase-execute);font-size:.85rem}.controls{grid-template-columns:1fr 1fr;gap:.4rem;display:grid}.btn{font-family:var(--font-text);cursor:pointer;transition:background var(--transition), opacity var(--transition), transform .1s;border:none;border-radius:7px;padding:.45rem 1rem;font-size:.85rem;font-weight:600}.btn:active{transform:scale(.97)}.btn:disabled{opacity:.35;cursor:not-allowed}.btn--primary{background:var(--phase-fetch);color:#fff}.btn--primary:hover:not(:disabled){background:#1565c0}.btn--secondary{background:var(--bg-node);color:var(--text);border:1px solid var(--border)}.btn--secondary:hover:not(:disabled){background:var(--border)}.btn--quiz-switch{background:var(--phase-execute);color:#fff;width:100%;padding:.6rem;font-size:.9rem}.btn--quiz-switch:hover{background:#1b5e20}.quiz-score{color:var(--text-muted);text-align:right;font-size:1rem;font-weight:600}.quiz-hint{color:#5d4037;background:#fff8e1;border:1px solid #ffcc02;border-left:3px solid #ff9800;border-radius:6px;padding:.5rem .75rem;font-size:.85rem}[data-theme=dark] .quiz-hint{color:#ffe0b2;background:#2d2510}.feedback{border-radius:8px;padding:.65rem .9rem;font-size:.85rem;font-weight:600;line-height:1.5;animation:.25s slide-in}@keyframes slide-in{0%{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}.feedback--correct{border:1px solid var(--phase-execute);color:#1b5e20;background:#e8f5e9}[data-theme=dark] .feedback--correct{color:#a5d6a7;background:#1a2e1a}.feedback--wrong{color:#880e4f;background:#fce4ec;border:1px solid #e91e63;flex-direction:column;gap:.6rem;font-weight:400;display:flex}[data-theme=dark] .feedback--wrong{color:#f48fb1;background:#2d1020}.btn--dismiss{color:#fff;background:#e91e63;border-radius:6px;align-self:flex-start;padding:.35rem .8rem;font-size:.8rem}.btn--dismiss:hover{background:#880e4f}[data-theme=dark] .btn--dismiss{background:#c2185b}[data-theme=dark] .btn--dismiss:hover{background:#e91e63}.completion-screen{text-align:center;flex-direction:column;justify-content:center;align-items:center;gap:1rem;min-height:60vh;padding:3rem 2rem;display:flex}.completion-title{font-size:2rem;font-weight:700}.completion-score{font-size:4rem;font-weight:900;font-family:var(--font-code)}.completion-pct{color:var(--text-muted);font-size:1.25rem;font-weight:600}.completion-detail{max-width:500px;color:var(--text-muted);font-size:.95rem}.completion-actions{gap:1rem;margin-top:1rem;display:flex}.completion-actions .btn{padding:.65rem 1.75rem;font-size:1rem}@media (width<=900px){.mode-layout{grid-template-columns:1fr;height:auto}.info-pane{max-height:none}.app-header__title{font-size:1rem}}
