/* CSS Reset and Normalize */
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Orbitron:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg);
    color: var(--color-primary);
    font-family: var(--font-primary);
    overflow-x: hidden;
    cursor: crosshair;
    line-height: 1.6;
}

/* Remove default button styles */
button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

/* Remove default link styles */
a {
    color: inherit;
    text-decoration: none;
}

/* Remove default list styles */
ul, ol {
    list-style: none;
}

/* Image defaults */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Form elements */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Focus styles */
:focus {
    outline: 2px solid var(--color-accent-3);
    outline-offset: 2px;
}

/* Selection styles */
::selection {
    background: var(--color-accent-3);
    color: var(--color-bg);
}

::-moz-selection {
    background: var(--color-accent-3);
    color: var(--color-bg);
}