﻿
/* #region DESIGN TOKENS */

:root {
    /* Backgrounds */
    --color-bg-base: #000000; /* True Black */
    --color-bg-surface: #121212; /* Dark Charcoal for panels/cards */
    --color-bg-surface-alt: #1a1a1a;
    /* Text */
    --color-text-primary: #ffffff; /* Pure White */
    --color-text-secondary: #a0a0a0; /* Light Gray */
    /* Accents */
    --color-primary: #6fff00; /* Neon Green */
    --color-primary-hover: #5ad100; /* Slightly darker neon green for hover states */
    --color-danger: #ff3333; /* For destructive actions or low stock alerts */
    /* Borders */
    --color-border: #222222; /* Subtle dark borders */
    /* Typography */
    --font-heading: "Inter", system-ui, -apple-system, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    /* Layout & Utilities */
    --layout-max-width: 1200px;
    --border-radius-base: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --shadow-base: 0 4px 12px rgba(111, 255, 0, 0.05); /* Subtle neon glow shadow */
}

/* #endregion */

/* #region RESET & BASE */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: var(--color-bg-base);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-text-primary);
}

h1:focus {
    outline: none;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--color-primary);
}

ul {
    list-style: none;
}

/* #endregion */
