*{margin:0;padding:0;box-sizing:border-box}html,body,#root{width:100%;height:100%;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:root{--primary-color: #2563eb;--secondary-color: #64748b;--success-color: #059669;--warning-color: #d97706;--error-color: #dc2626;--background-color: #f8fafc;--surface-color: #ffffff;--text-primary: #1e293b;--text-secondary: #64748b;--border-color: #e2e8f0;--shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--border-radius: 8px;--transition: all .2s cubic-bezier(.4, 0, .2, 1)}.button{display:inline-flex;align-items:center;justify-content:center;padding:.5rem 1rem;border:none;border-radius:var(--border-radius);font-size:.875rem;font-weight:500;cursor:pointer;transition:var(--transition);text-decoration:none;gap:.5rem}.button-primary{background-color:var(--primary-color);color:#fff}.button-primary:hover{background-color:#1d4ed8}.button-secondary{background-color:var(--surface-color);color:var(--text-primary);border:1px solid var(--border-color)}.button-secondary:hover{background-color:#f1f5f9}.button:disabled{opacity:.6;cursor:not-allowed}.card{background:var(--surface-color);border-radius:var(--border-radius);border:1px solid var(--border-color);box-shadow:var(--shadow)}.loading-spinner{width:24px;height:24px;border:2px solid var(--border-color);border-top:2px solid var(--primary-color);border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.app{display:flex;flex-direction:column;height:100vh;background-color:var(--background-color)}.app-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.5rem;background:var(--surface-color);border-bottom:1px solid var(--border-color);box-shadow:var(--shadow);z-index:1000}.app-title{font-size:1.5rem;font-weight:700;color:var(--text-primary);margin:0}.app-main{flex:1;position:relative;overflow:hidden}.visualization-container{width:100vw;height:calc(100vh - 110px);position:relative;background:linear-gradient(135deg,#1a1a2e,#16213e,#0f3460);overflow:hidden}.sidebar{width:320px;background:var(--surface-color);border-left:1px solid var(--border-color);display:flex;flex-direction:column;box-shadow:var(--shadow-lg);min-height:100vh;position:relative;z-index:999}.toolbar{padding:1rem;border-bottom:1px solid var(--border-color)}.toolbar-title{font-size:1rem;font-weight:600;color:var(--text-primary);margin-bottom:.75rem}.tool-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(80px,1fr));gap:.5rem}.tool-button{display:flex;flex-direction:column;align-items:center;padding:.75rem .5rem;border:1px solid var(--border-color);border-radius:var(--border-radius);background:var(--surface-color);cursor:pointer;transition:var(--transition);text-decoration:none;color:var(--text-primary)}.tool-button:hover{background:#f1f5f9;border-color:var(--primary-color)}.tool-button.active{background:var(--primary-color);color:#fff;border-color:var(--primary-color)}.tool-icon{font-size:1.5rem;margin-bottom:.25rem}.tool-label{font-size:.75rem;font-weight:500;text-align:center}.control-panel{padding:1rem;border-bottom:2px solid var(--primary-color);position:sticky;top:0;background:var(--surface-color);z-index:100;box-shadow:0 2px 8px #0000001a}.control-group{margin-bottom:1rem}.control-group:last-child{margin-bottom:0}.control-label{display:block;font-size:.875rem;font-weight:500;color:var(--text-primary);margin-bottom:.5rem}.control-buttons{display:flex;gap:.5rem}.speed-slider{width:100%;height:6px;border-radius:3px;background:var(--border-color);outline:none;-webkit-appearance:none}.speed-slider::-webkit-slider-thumb{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:18px;height:18px;border-radius:50%;background:var(--primary-color);cursor:pointer}.speed-slider::-moz-range-thumb{width:18px;height:18px;border-radius:50%;background:var(--primary-color);cursor:pointer;border:none}.stats-panel{padding:1rem;flex:1;overflow-y:auto}.stats-panel-floating{position:fixed;top:80px;left:20px;width:280px;max-height:300px;background:var(--surface-color);border:1px solid var(--border-color);border-radius:var(--border-radius);box-shadow:var(--shadow-lg);padding:1rem;z-index:1000;overflow-y:auto}.stats-grid{display:grid;gap:.75rem}.stat-card{padding:.75rem;background:var(--background-color);border-radius:var(--border-radius);border:1px solid var(--border-color)}.stat-label{font-size:.75rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.025em;margin-bottom:.25rem}.stat-value{font-size:1.25rem;font-weight:600;color:var(--text-primary)}.loading-screen{position:fixed;top:0;left:0;right:0;bottom:0;background:var(--surface-color);display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:9999}.loading-content{text-align:center;max-width:400px}.loading-title{font-size:1.5rem;font-weight:700;color:var(--text-primary);margin-bottom:.5rem}.loading-subtitle{color:var(--text-secondary);margin-bottom:2rem}.loading-progress{width:100%;height:6px;background:var(--border-color);border-radius:3px;overflow:hidden;margin-bottom:1rem}.loading-progress-bar{height:100%;background:var(--primary-color);transition:width .3s ease}.error-boundary{padding:2rem;text-align:center;color:var(--error-color)}.error-boundary h2{margin-bottom:1rem}.error-boundary pre{background:#f1f5f9;padding:1rem;border-radius:var(--border-radius);text-align:left;overflow:auto;margin-top:1rem}@media (max-width: 768px){.sidebar{position:fixed;right:-320px;top:0;height:100vh;width:320px;transition:right .3s ease;z-index:1000}.sidebar.open{right:0}.sidebar-toggle{display:flex!important}.app-main{flex-direction:column}.visualization-container{width:100%!important}}@media (max-width: 480px){.sidebar{width:100vw;right:-100vw}.control-panel{padding:.75rem}.toolbar-title{font-size:.9rem}.control-buttons{flex-direction:column;gap:.25rem}}.sidebar-toggle{position:fixed;top:1rem;right:1rem;z-index:1001;background:var(--primary-color);color:#fff;border:none;border-radius:50%;width:48px;height:48px;font-size:1.2rem;cursor:pointer;box-shadow:var(--shadow);display:none}@media (max-width: 768px){.sidebar-toggle{display:flex;align-items:center;justify-content:center}}
