/* =========================================================
   ERATHRON – BASE
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    background:
        radial-gradient(
            circle at top center,
            rgba(181, 31, 40, 0.06),
            transparent 45%
        ),
        var(--color-bg);

    color: var(--color-text);

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 15px;
    line-height: 1.5;

    overflow: hidden;
}

/* =========================================================
   ZÁKLADNÍ PRVKY
========================================================= */

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0d0d0f;
}

::-webkit-scrollbar-thumb {
    background: #343438;
    border-radius: 20px;
}

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

/* =========================================================
   VÝBĚR TEXTU
========================================================= */

::selection {
    background: var(--color-gold);
    color: #080808;
}