/*
Theme Name:        Probability Terminal
Theme URI:         https://example.com/probability-terminal
Author:            Pixelworx Studio
Author URI:        https://example.com
Description:       A self-contained WordPress theme that turns any site into a market-structure analysis terminal. Calculates continuation/reversal probability from mock OHLCV data using a transparent 100-point scoring model with backtest reliability gating. Educational and paper-trading only — not financial advice. All analysis runs in PHP via the WP REST API; no external backend required.
Version:           0.1.0
Requires at least: 6.0
Tested up to:      6.6
Requires PHP:      7.4
License:           GPL v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       probability-terminal
Tags:              dark-mode, custom-colors, custom-menu, full-width-template, one-column, theme-options
*/

/* All visual styles live in assets/css/dashboard.css and are enqueued via functions.php.
   This file exists primarily for the WordPress theme header above. */

/* Minimal reset so non-dashboard pages also look clean */
:root { color-scheme: dark; }
html, body { margin: 0; padding: 0; }
body {
  background: #07090c;
  color: #e6e9ee;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: #7dd3fc; text-decoration: none; }
a:hover { text-decoration: underline; }
* { box-sizing: border-box; }
