/* =========================
   Modern CSS Reset (Minimal)
   ========================= */

/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margins */
* {
    margin: 0;
    padding: 0;
}

/* Core body defaults */
html {
    height: 100%;
    color-scheme: light dark;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100%;
    line-height: 1.5;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Form elements */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

/* Remove list styles */
ul,
ol {
    list-style: none;
}

/* Anchor reset */
a {
    color: inherit;
    text-decoration: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

/* Table reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}