/**
 * Ignition appearance tokens.
 *
 * Component CSS consumes semantic --ig-* values. Game selectors below only
 * provide brand inputs and artwork slots, so game identity never forks layout
 * or component behaviour.
 */

:root {
    color-scheme: light;

    --ig-font-size: 16px;
    --ig-font-sans: "Segoe UI Variable", "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --ig-font-display: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --ig-font-mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;

    --ig-radius-xs: 0.15rem;
    --ig-radius-sm: 0.25rem;
    --ig-radius-md: 0.4rem;
    --ig-radius-lg: 0.6rem;
    --ig-radius-xl: 0.85rem;

    --ig-ui-accent: #5367d9;
    --ig-ui-accent-rgb: 83, 103, 217;
    --ig-ui-secondary: #2f8190;
    --ig-ui-secondary-rgb: 47, 129, 144;

    --ig-brand: #5d6ee8;
    --ig-brand-rgb: 93, 110, 232;
    --ig-brand-secondary: #2f9aae;
    --ig-brand-secondary-rgb: 47, 154, 174;
    --ig-brand-deep: #17213d;
    --ig-brand-tint: #edf0ff;
    --ig-theme-art: none;
    --ig-theme-art-position: center;
    --ig-theme-pattern-opacity: 0.1;

    --ig-game-accent: var(--ig-brand);
    --ig-game-accent-rgb: var(--ig-brand-rgb);
    --ig-game-header-tint: var(--ig-brand-tint);
}

:root,
:root[data-ig-theme="light"] {
    color-scheme: light;

    --ig-background: #eef1f5;
    --ig-background-elevated: #f5f7fa;
    --ig-surface: #f9fafc;
    --ig-surface-raised: #ffffff;
    --ig-surface-subtle: #f0f3f7;
    --ig-surface-strong: #e5eaf0;
    --ig-text-color: #172033;
    --ig-text-muted: #647084;
    --ig-text-faint: #606c80;
    --ig-heading-color: #101827;
    --ig-border-color: #d8dee8;
    --ig-border-strong: #c5cdd9;
    --ig-overlay: rgba(16, 24, 39, 0.48);

    --ig-accent: var(--ig-ui-accent);
    --ig-accent-rgb: var(--ig-ui-accent-rgb);
    --ig-accent-contrast: #ffffff;
    --ig-accent-soft: color-mix(in srgb, var(--ig-accent) 13%, white);
    --ig-accent-subtle: color-mix(in srgb, var(--ig-accent) 7%, white);
    --ig-secondary: var(--ig-ui-secondary);
    --ig-secondary-soft: color-mix(in srgb, var(--ig-secondary) 12%, white);

    --ig-nav-surface: #111923;
    --ig-nav-surface-raised: #192431;
    --ig-nav-item-color: rgba(241, 245, 252, 0.84);
    --ig-nav-item-muted: rgba(241, 245, 252, 0.6);
    --ig-nav-border: rgba(255, 255, 255, 0.1);
    --ig-nav-active: rgba(255, 255, 255, 0.12);

    --ig-header-surface: var(--ig-surface-raised);
    --ig-card-shadow: 0 0.75rem 2rem rgba(27, 39, 61, 0.08), 0 0.12rem 0.35rem rgba(27, 39, 61, 0.06);
    --ig-card-shadow-hover: 0 1rem 2.6rem rgba(27, 39, 61, 0.13), 0 0.2rem 0.55rem rgba(27, 39, 61, 0.08);
    --ig-window-shadow: 0 1.5rem 4rem rgba(15, 23, 42, 0.22), 0 0.25rem 0.75rem rgba(15, 23, 42, 0.12);
    --ig-focus-ring: 0 0 0 0.22rem color-mix(in srgb, var(--ig-accent) 28%, transparent);

    --bs-body-color: var(--ig-text-color);
    --bs-body-bg: var(--ig-background);
    --bs-secondary-color: var(--ig-text-muted);
    --bs-tertiary-color: var(--ig-text-faint);
    --bs-secondary-bg: var(--ig-surface-strong);
    --bs-tertiary-bg: var(--ig-surface-subtle);
    --bs-emphasis-color: var(--ig-heading-color);
    --bs-border-color: var(--ig-border-color);
    --bs-border-color-translucent: color-mix(in srgb, var(--ig-border-color) 68%, transparent);
    --bs-primary: var(--ig-accent);
    --bs-primary-rgb: var(--ig-accent-rgb);
    --bs-link-color: var(--ig-accent);
    --bs-link-hover-color: color-mix(in srgb, var(--ig-accent) 76%, #111827);
    --bs-card-bg: var(--ig-surface-raised);
    --bs-modal-bg: var(--ig-surface-raised);
    --bs-badge-font-size: 0.8em;
}

:root[data-ig-theme="dark"] {
    color-scheme: dark;

    --ig-background: #0b1017;
    --ig-background-elevated: #0f1620;
    --ig-surface: #121a25;
    --ig-surface-raised: #17212e;
    --ig-surface-subtle: #1b2735;
    --ig-surface-strong: #233142;
    --ig-text-color: #e9eef6;
    --ig-text-muted: #a4afbf;
    --ig-text-faint: #7f8da0;
    --ig-heading-color: #f7f9fc;
    --ig-border-color: #29384a;
    --ig-border-strong: #35475c;
    --ig-overlay: rgba(2, 6, 12, 0.7);

    --ig-accent: #9aa6ff;
    --ig-accent-rgb: 154, 166, 255;
    --ig-accent-contrast: #0a0f16;
    --ig-accent-soft: color-mix(in srgb, var(--ig-accent) 14%, var(--ig-surface));
    --ig-accent-subtle: color-mix(in srgb, var(--ig-accent) 8%, var(--ig-surface));
    --ig-secondary: #72c2cf;
    --ig-secondary-soft: color-mix(in srgb, var(--ig-secondary) 13%, var(--ig-surface));

    --ig-nav-surface: #0b1119;
    --ig-nav-surface-raised: #121c27;
    --ig-nav-item-color: rgba(238, 244, 252, 0.86);
    --ig-nav-item-muted: rgba(238, 244, 252, 0.64);
    --ig-nav-border: rgba(255, 255, 255, 0.09);
    --ig-nav-active: rgba(255, 255, 255, 0.11);

    --ig-header-surface: var(--ig-surface-raised);
    --ig-card-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.26), 0 0.12rem 0.35rem rgba(0, 0, 0, 0.2);
    --ig-card-shadow-hover: 0 1rem 2.8rem rgba(0, 0, 0, 0.34), 0 0.2rem 0.6rem rgba(0, 0, 0, 0.24);
    --ig-window-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.48), 0 0.25rem 0.8rem rgba(0, 0, 0, 0.34);
    --ig-focus-ring: 0 0 0 0.22rem color-mix(in srgb, var(--ig-accent) 30%, transparent);

    --bs-body-color: var(--ig-text-color);
    --bs-body-bg: var(--ig-background);
    --bs-secondary-color: var(--ig-text-muted);
    --bs-tertiary-color: var(--ig-text-faint);
    --bs-secondary-bg: var(--ig-surface-strong);
    --bs-tertiary-bg: var(--ig-surface-subtle);
    --bs-emphasis-color: var(--ig-heading-color);
    --bs-border-color: var(--ig-border-color);
    --bs-border-color-translucent: color-mix(in srgb, var(--ig-border-color) 74%, transparent);
    --bs-primary: var(--ig-accent);
    --bs-primary-rgb: var(--ig-accent-rgb);
    --bs-link-color: var(--ig-accent);
    --bs-link-hover-color: color-mix(in srgb, var(--ig-accent) 78%, white);
    --bs-card-bg: var(--ig-surface-raised);
    --bs-modal-bg: var(--ig-surface-raised);
}

/* Game profiles: brand inputs and optional art only. */
:root[data-ig-game="tenetite"] {
    --ig-brand: #b77735;
    --ig-brand-rgb: 183, 119, 53;
    --ig-brand-secondary: #3d8f82;
    --ig-brand-secondary-rgb: 61, 143, 130;
    --ig-brand-deep: #203432;
    --ig-brand-tint: #f6efe5;
    --ig-theme-art: url("/assets/images/themes/tenetite/tenetite-login-art.webp");
    --ig-theme-art-position: center;
    --ig-theme-pattern-opacity: 0.12;
}

:root[data-ig-game="ageofshadows"] {
    --ig-brand: #58789d;
    --ig-brand-rgb: 88, 120, 157;
    --ig-brand-secondary: #8b6c9f;
    --ig-brand-secondary-rgb: 139, 108, 159;
    --ig-brand-deep: #1a2230;
    --ig-brand-tint: #e9eef4;
    --ig-theme-art: url("/assets/images/themes/ageofshadows/ageofshadows-login-art.webp");
    --ig-theme-art-position: center;
}

:root[data-ig-game="everbrook"] {
    --ig-brand: #6f934f;
    --ig-brand-rgb: 111, 147, 79;
    --ig-brand-secondary: #4f94a3;
    --ig-brand-secondary-rgb: 79, 148, 163;
    --ig-brand-deep: #1b2e26;
    --ig-brand-tint: #eef5e7;
    --ig-theme-art: url("/assets/images/themes/everbrook/everbrook-login-art.webp");
    --ig-theme-art-position: center;
}

:root[data-ig-game="everdeep"] {
    --ig-brand: #4f8f64;
    --ig-brand-rgb: 79, 143, 100;
    --ig-brand-secondary: #a38b49;
    --ig-brand-secondary-rgb: 163, 139, 73;
    --ig-brand-deep: #182a22;
    --ig-brand-tint: #edf5ed;
    --ig-theme-art: url("/assets/images/themes/everdeep/everdeep-login-art.webp");
    --ig-theme-art-position: center;
}

:root[data-ig-game="hearthwild"] {
    --ig-brand: #b8793d;
    --ig-brand-rgb: 184, 121, 61;
    --ig-brand-secondary: #6d8d52;
    --ig-brand-secondary-rgb: 109, 141, 82;
    --ig-brand-deep: #30261c;
    --ig-brand-tint: #f5ede2;
    --ig-theme-art: url("/assets/images/themes/hearthwild/hearthwild-login-art.webp");
    --ig-theme-art-position: center;
}

:root[data-ig-game="shadows_of_evermore"] {
    --ig-brand: #765f94;
    --ig-brand-rgb: 118, 95, 148;
    --ig-brand-secondary: #a9576e;
    --ig-brand-secondary-rgb: 169, 87, 110;
    --ig-brand-deep: #261d31;
    --ig-brand-tint: #f1edf5;
    --ig-theme-art: url("/assets/images/themes/shadows_of_evermore/shadows-of-evermore-login-art.webp");
    --ig-theme-art-position: center;
}

:root[data-ig-theme="dark"][data-ig-game="tenetite"] {
    --ig-brand: #cf8a45;
    --ig-brand-rgb: 207, 138, 69;
}

:root[data-ig-theme="dark"][data-ig-game="ageofshadows"] {
    --ig-brand: #7696ba;
    --ig-brand-rgb: 118, 150, 186;
}

:root[data-ig-theme="dark"][data-ig-game="everbrook"] {
    --ig-brand: #8fb66b;
    --ig-brand-rgb: 143, 182, 107;
}

:root[data-ig-theme="dark"][data-ig-game="everdeep"] {
    --ig-brand: #69a97d;
    --ig-brand-rgb: 105, 169, 125;
}

:root[data-ig-theme="dark"][data-ig-game="hearthwild"] {
    --ig-brand: #cf955b;
    --ig-brand-rgb: 207, 149, 91;
}

:root[data-ig-theme="dark"][data-ig-game="shadows_of_evermore"] {
    --ig-brand: #967aba;
    --ig-brand-rgb: 150, 122, 186;
}
