/* Theme tokens — modeled after battlelog.co reference screenshots */

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

:root {
    /* Backgrounds — dark navy / violet */
    --bg-0: #0e0d1f;
    --bg-1: #161429;
    --bg-2: #1f1c38;
    --bg-3: #252140;

    /* Surfaces */
    --surface: #1c1a33;
    --surface-2: #252140;
    --surface-hover: #2a2748;

    /* Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.12);

    /* Text */
    --text: #efeff5;
    --text-soft: #c2c0d4;
    --text-dim: #8a87a3;
    --text-muted: #5e5b7a;

    /* Accents */
    --accent: #f5a623;          /* primary orange/amber */
    --accent-hot: #f7931e;
    --accent-soft: rgba(245, 166, 35, 0.18);
    --violet: #6c63ff;          /* secondary CTA */
    --violet-hot: #7c73ff;
    --violet-soft: rgba(108, 99, 255, 0.18);

    /* Status */
    --success: #22c55e;
    --warning: #f5a623;
    --danger: #ef4444;
    --info: #38bdf8;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-glow-orange: 0 0 32px rgba(245, 166, 35, 0.30);
    --shadow-glow-violet: 0 0 32px rgba(108, 99, 255, 0.35);

    /* Radius */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;

    /* Layout */
    --container: 1240px;
    --header-h: 78px;

    /* Fonts */
    --font-display: 'Rajdhani', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Consolas', monospace;
}

html, body {
    background: var(--bg-0);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    overflow-x: hidden;
}

body {
    background-image:
        radial-gradient(ellipse 90% 50% at 70% 0%, rgba(108, 99, 255, 0.18), transparent 60%),
        radial-gradient(ellipse 60% 40% at 10% 30%, rgba(245, 166, 35, 0.10), transparent 60%),
        linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(34px, 5vw, 60px); }
h2 { font-size: clamp(26px, 3vw, 40px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
h4 { font-size: 18px; }

p { color: var(--text-soft); }

a { color: var(--text); transition: color .15s; }
a:hover { color: var(--accent); }

::selection { background: var(--accent); color: var(--bg-0); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.muted { color: var(--text-dim); }
.text-accent { color: var(--accent); }
.text-violet { color: var(--violet); }
.uppercase { text-transform: uppercase; letter-spacing: 0.08em; }
.mono { font-family: var(--font-mono); }
