:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #111111;
  --text-primary: #e6edf3;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --accent: #66FFFF;
  --accent-hover: #99FFFF;
  --accent-dim: #2E5C5C;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --border: #1a1a1a;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Courier New', Consolas, monospace;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --max-width: 1100px;
}
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { margin: 0; padding: 0; background: var(--bg-primary); color: var(--text-primary); font-family: var(--font-sans); font-weight: 400; line-height: 1.6; min-height: 100vh; }
::selection { background: var(--accent); color: #000; }
a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-hover); }
h1, h2, h3 { font-weight: 600; line-height: 1.3; margin: 0; color: var(--text-primary); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Form Elements */
input[type="text"], input[type="number"], input[type="email"], input[type="url"], textarea, select {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent-dim);
}
input::placeholder, textarea::placeholder {
    color: var(--text-muted);
}
input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.form-group { margin-bottom: var(--space-md); }
.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}
.required { color: var(--error); }
.optional { font-weight: 400; color: var(--text-muted); }

/* Loading States */
.loading-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-2xl);
    color: var(--text-muted);
}
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.empty-state {
    text-align: center;
    padding: var(--space-2xl);
    color: var(--text-muted);
}
.empty-state-hero {
    text-align: center;
    padding: var(--space-2xl);
}
.empty-state-hero h3 {
    margin-bottom: var(--space-sm);
}
.empty-state-hero p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

/* Accent Color */
.accent { color: var(--accent); }
