::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 12px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 12px;
    border: 1px solid var(--accent-color);
}

@supports not selector(::-webkit-scrollbar) {
    body {
        scrollbar-color: var(--secondary-color) var(--primary-color);
    }
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    letter-spacing: 1px;
}

body {
    margin: 0;
    font-family: 'Orbitron';
    color: var(--color-white);
    background-color: var(--primary-color);
}

h3,
h2 {
    text-align: center;
    margin-block-start: 0;
    margin-block-end: 0;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
}

a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--color-white);
}

a:hover {
    text-decoration: underline;
}

img {
    height: var(--space-6);
}

hr {
    width: 80%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    height: var(--header-height);
    font-weight: bold;
    display: flex;
    align-items: center;
    z-index: 1;
    box-shadow: 0 2px 4px var(--glow-color);
}

main {
    padding-top: calc(var(--header-height) + var(--space-3));
    padding-bottom: var(--space-3);
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

footer {
    background-color: var(--secondary-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 -2px 4px var(--glow-color);
}

.max-content {
    padding: 0 max(calc(50% - 720px), clamp(1rem, 4vw, 4rem));
}

.hide-mobile {
    display: none;
}

.hide-desktop {
    display: block;
}

.hide-tab-text {
    display: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: var(--space-2);
}

.header-brand {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: var(--space-3);
}

.searching-content {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.centered {
    align-items: center;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--overlay-loader);
    z-index: 1;
}

.loader img {
    width: var(--space-7);
    height: var(--space-7);
    animation: spin 1s linear infinite;
}

.hidden {
    display: none !important;
}

.legend {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    font-size: 0.85rem;
    color: var(--muted-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.legend-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: var(--radius-full);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.imprint-content {
    padding: calc(var(--header-height) + var(--space-3)) var(--space-6) var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.imprint-content h2,
h3 {
    text-align: start
}