/* Lucast – doplňkové styly nad Tailwind CSS (dark theme). */

:root {
    color-scheme: dark;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    text-rendering: optimizeLegibility;
}

/* --- Scrollbar --- */
* {
    scrollbar-width: thin;
    scrollbar-color: #2E2B27 #0A0A09;
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: #0A0A09;
}

*::-webkit-scrollbar-thumb {
    background: #2E2B27;
    border: 2px solid #0A0A09;
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #403C36;
}

/* --- Formuláře --- */
.field-invalid {
    border-color: #ef4444 !important;
}

/* --- Karty na stránce odkazů --- */
.link-card:active {
    transform: scale(0.985);
}

/* --- Kotvy pod sticky hlavičkou --- */
[id] {
    scroll-margin-top: 5rem;
}

/* --- Respektuj systémové omezení animací --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- Tisk --- */
@media print {
    header, footer, form {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}
