
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
}

/* Allow copy on marked sections */
body.no-copy [data-allow-copy="true"],
body.no-copy [data-allow-copy="true"] * {
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

/* Basic copy/paste deterrent (not secure) */
body.no-copy,
body.no-copy * {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

html.dark body {
    background-color: #0c0a09;
    color: #f5f5f4;
}

html.dark .bg-stone-50,
html.dark .bg-stone-50\/80 {
    background-color: #0c0a09 !important;
}

html.dark .bg-white,
html.dark .bg-white\/70,
html.dark .bg-white\/95 {
    background-color: #1c1917 !important;
}

html.dark .text-stone-900 {
    color: #f5f5f4 !important;
}

html.dark .text-stone-600,
html.dark .text-stone-500 {
    color: #d6d3d1 !important;
}

html.dark .border-stone-200,
html.dark .border-stone-200\/60,
html.dark .border-stone-300\/70 {
    border-color: #292524 !important;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
