/* Explain: Dark luxury base reset, scrolling, and typography defaults */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    color: var(--text-color);
    background:
        radial-gradient(circle at 12% 6%, rgba(250, 204, 21, 0.16), transparent 25rem),
        radial-gradient(circle at 88% 12%, rgba(249, 115, 22, 0.13), transparent 28rem),
        radial-gradient(circle at 50% 95%, rgba(245, 158, 11, 0.12), transparent 34rem),
        linear-gradient(180deg, #050608 0%, #0b0d12 44%, #050608 100%);
}

img {
    max-width: 100%;
}

::selection {
    background: var(--accent-color);
    color: #111318;
}

:focus-visible {
    outline: 3px solid rgba(250, 204, 21, 0.75);
    outline-offset: 3px;
}

input,
select,
textarea {
    color: var(--text-color);
}
