/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: #0a0a0a;
}

body {
    font-family: var(--font-family);
    background: transparent;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Global Link Styles */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
    cursor: none;
}

a:hover {
    color: var(--color-accent);
}

a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Global Button Reset (for buttons not using .btn class) */
button {
    cursor: none;
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: white;
}

