/* base.css - CSS Variables, Resets, Typography */

:root {
    --bg-color: #050505;
    --card-bg: #0A0A0A;
    --sidebar-bg: #F7D000;
    --text-color: #E0E0E0;
    --text-muted: #666666;
    --text-on-yellow: #000000;
    --accent-color: #F7D000;
    --accent-dim: rgba(247, 208, 0, 0.1);
    --border-color: #1A1A1A;
    --sidebar-border: rgba(0, 0, 0, 0.1);
    --success-color: #00F7A0;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    margin: 0;
    font-weight: 600;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.hidden {
    display: none !important;
}