/* LogicScope Premium Styling Sheet - VoltC Style (Improved UI/UX) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg-main: #06070a;
  --bg-card: rgba(18, 22, 33, 0.75);
  --bg-darker: #090a0f;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(99, 102, 241, 0.25);
  
  /* Text Colors */
  --text-primary: #f9fafb;
  --text-secondary: #9ca3af;
  --text-muted: #4b5563;

  /* Theme Accents */
  --accent-primary: #6366f1; /* Indigo */
  --accent-secondary: #a855f7; /* Purple */
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  
  --success: #10b981; /* Emerald */
  --warning: #f59e0b; /* Amber */
  --danger: #ef4444; /* Rose */
  
  --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  --glass-blur: blur(20px);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Background Grid Decor */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  pointer-events: none;
  mask-image: radial-gradient(circle, black 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle, black 35%, transparent 80%);
}

.grid-overlay::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  filter: blur(80px);
}

.grid-overlay::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
  filter: blur(80px);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  background: rgba(6, 7, 10, 0.8);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.navbar-container {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.btn-nav-download {
  background: var(--accent-gradient);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-main);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
  transition: var(--transition-smooth);
}

.btn-nav-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Sections */
.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
  padding-top: 170px;
  padding-bottom: 90px;
  text-align: center;
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 40px auto;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-primary);
  box-shadow: 0 4px 25px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}

/* VS Code Extension Simulator Frame */
.simulator-showcase {
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-darker) 100%);
  padding-bottom: 120px;
}

.vscode-frame {
  background: #0d0e15;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  height: 680px;
  margin-top: 20px;
}

/* VS Code Header */
.vscode-header {
  height: 40px;
  background: #08090d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--border-color);
  user-select: none;
}

.window-controls {
  display: flex;
  gap: 8px;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.control-dot.close { background: #ff5f56; }
.control-dot.minimize { background: #ffbd2e; }
.control-dot.maximize { background: #27c93f; }

.vscode-tabs-bar {
  display: flex;
  height: 100%;
  align-items: flex-end;
}

.tab-title {
  background: #08090d;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 0.78rem;
  gap: 8px;
  color: var(--text-secondary);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-right: 1px solid var(--border-color);
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  cursor: pointer;
}

.tab-title.active {
  background: #0d0e15;
  color: var(--text-primary);
  border-left-color: var(--border-color);
  border-top-color: var(--border-color);
  height: 33px;
  position: relative;
  z-index: 2;
}

.tab-close {
  cursor: pointer;
  opacity: 0.5;
  font-size: 0.85rem;
}

.vscode-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mode-select {
  background: #08090d;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  outline: none;
  cursor: pointer;
}

.mode-select:focus {
  border-color: var(--accent-primary);
  color: var(--text-primary);
}

.btn-sim-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.btn-sim-control:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sim-control.success {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  border-color: rgba(16, 185, 129, 0.25);
}

.btn-sim-control.success:hover {
  background: rgba(16, 185, 129, 0.22);
}

/* Body Wrapper */
.vscode-body-wrapper {
  display: flex;
  flex: 1;
  overflow: hidden;
  height: calc(100% - 62px); /* Header + Footer */
}

/* Activitybar */
.vscode-activitybar {
  width: 50px;
  background: #08090d;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
  align-items: center;
  user-select: none;
}

.activity-top, .activity-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.activity-item {
  color: var(--text-muted);
  font-size: 1.15rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 50px;
  text-align: center;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid transparent;
}

.activity-item:hover, .activity-item.active {
  color: var(--text-primary);
}

.activity-item.active {
  border-left-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* VS Code Body */
.vscode-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #0a0b10;
  overflow: hidden;
}

/* Split Workspace layout */
.split-workspace {
  display: flex;
  flex: 1;
  height: 100%;
  overflow: hidden;
}

/* Common Pane Style */
.editor-pane, .canvas-pane {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.editor-pane {
  flex: 1.1;
  border-right: 1px solid var(--border-color);
}

.canvas-pane {
  flex: 1.5;
  border-right: 1px solid var(--border-color);
  background: #08090d;
}

.sidebar-pane {
  width: 200px;
  background: #0c0d12;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pane-header {
  height: 32px;
  background: #08090d;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  user-select: none;
}

.pane-header span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Editor Specifics */
.editor-languages {
  display: flex;
  gap: 4px;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 2px 6px;
  font-size: 0.65rem;
  border-radius: 3px;
  cursor: pointer;
}

.lang-btn.active {
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-primary);
  border-color: rgba(99, 102, 241, 0.3);
  font-weight: 600;
}

.editor-container {
  flex: 1;
  display: flex;
  overflow: hidden;
  background: #090a0e;
}

.line-numbers {
  width: 38px;
  background: #07080b;
  border-right: 1px solid rgba(255, 255, 255, 0.02);
  padding: 10px 0;
  text-align: right;
  padding-right: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  user-select: none;
  line-height: 1.45;
}

.code-textarea {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  padding: 10px;
  color: #c9ccd6;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1.45;
  white-space: pre;
  overflow: auto;
}

/* Canvas Toolbar */
.canvas-toolbar {
  display: flex;
  gap: 4px;
}

.toolbar-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.toolbar-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

/* Viewport for SVG diagrams */
.canvas-viewport {
  flex: 1;
  overflow: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 15px 15px;
}

.mermaid-diagram {
  transform-origin: center center;
  transition: transform 0.15s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.canvas-message {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  color: var(--text-muted);
  background: rgba(8, 9, 13, 0.85);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Sidebar Metrics Specifics */
.sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.stat-card .label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2px;
}

.stat-card .value {
  font-size: 1.1rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-primary);
}

.stat-card .value.accent {
  color: var(--accent-secondary);
}

.stat-card .desc {
  font-size: 0.65rem;
  color: var(--text-secondary);
  margin-top: 2px;
  line-height: 1.3;
}

/* VS Code Footer */
.vscode-footer {
  height: 22px;
  background: var(--accent-primary);
  color: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 0.7rem;
  font-weight: 600;
  user-select: none;
}

.footer-left, .footer-right {
  display: flex;
  gap: 12px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-item.bg-indigo {
  background: rgba(0, 0, 0, 0.15);
  padding: 0 8px;
  height: 22px;
}

/* Features Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.05);
}

.feature-card .icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Installation Card */
.install-card {
  max-width: 580px;
  margin: 0 auto;
  background: #08090d;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.install-header {
  background: #050608;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.install-body {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.install-body code {
  color: var(--accent-secondary);
}

.btn-copy-command {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.btn-copy-command:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Site Footer */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
}
.site-footer a:hover {
  color: var(--text-primary);
}

/* Hero Badge styles */
.hero-badge-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeIn 0.8s ease-out;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge-indigo {
  background: rgba(99, 102, 241, 0.08);
  color: var(--accent-primary);
  border: 1px solid rgba(99, 102, 241, 0.18);
}

.badge-glow {
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.15);
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.hidden {
  display: none !important;
}

/* VS Code Sidebar Explorer */
.vscode-sidebar {
  width: 190px;
  background: #08090c;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  user-select: none;
  flex-shrink: 0;
}

.sidebar-header {
  padding: 10px 14px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}

.sidebar-section {
  padding: 8px 0;
}

.section-title {
  padding: 4px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.file-tree {
  list-style: none;
  margin-top: 4px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
}

.file-item:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
}

.file-item.active {
  background: rgba(129, 140, 248, 0.08);
  color: var(--accent-primary);
  border-left: 2px solid var(--accent-primary);
  padding-left: 16px;
  font-weight: 600;
}

/* Settings Options */
.settings-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.sidebar-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.sidebar-select {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sidebar-select:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.sidebar-select:focus {
  border-color: var(--accent-primary);
}

.border-bottom-1 {
  border-bottom: 1px solid var(--border-color);
}

.overflow-auto {
  overflow-y: auto;
}

.flex-1 {
  flex: 1;
}

/* Bottom Console/Terminal Panel */
.console-panel {
  background: #07080b;
  border-top: 1px solid var(--border-color);
  height: 120px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.console-panel.collapsed {
  height: 30px;
}

.console-header {
  height: 30px;
  background: #050608;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  user-select: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.console-tabs {
  display: flex;
  height: 100%;
}

.console-tab-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 30px;
  color: var(--text-secondary);
  cursor: pointer;
  border-right: 1px solid var(--border-color);
  font-size: 0.68rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.console-tab-item.active {
  background: #07080b;
  color: var(--text-primary);
  border-bottom: 2px solid var(--accent-primary);
}

.console-tab-item:hover {
  color: var(--text-primary);
}

.console-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.console-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.68rem;
  padding: 2px 6px;
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.console-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.console-viewport {
  flex: 1;
  padding: 10px 16px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #a8aab3;
  line-height: 1.35;
}

.console-line {
  margin-bottom: 4px;
  white-space: pre-wrap;
}

.console-line .timestamp {
  color: var(--text-muted);
  margin-right: 8px;
}

.console-line .info {
  color: #38bdf8;
}

.console-line .success {
  color: var(--success);
}

.console-line .warning {
  color: var(--warning);
}

.console-line .error {
  color: var(--danger);
}

.console-line .system {
  color: var(--accent-secondary);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .nav-links {
    display: none;
  }
  .split-workspace {
    flex-direction: column;
  }
  .editor-pane, .canvas-pane {
    height: 350px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  .sidebar-pane {
    width: 100%;
    height: auto;
  }
  .vscode-frame {
    height: auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}
