:root {
    --bg: #0b0f14;
    --surface: #111820;
    --text: #e6edf3;
    --muted: #9aa7b4;
    --accent: #64c8ff;
    --border: #26303a;
    --radius: 10px;
    --font-sans: "IBM Plex Sans", "Space Grotesk", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
}

a { color: var(--accent); }

header, .header, .content, .search-header, .results-container {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: none !important;
}

input, button, select {
    background: #0f1620;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
}

button {
    cursor: pointer;
}
