:root {
    color-scheme: light;
    --bg: #ffffff;
    --text: #000000;
    --muted: #000000;
    --border: #000000;
    --surface: rgba(255, 255, 255, 0.92);
    --shadow: 0 24px 80px -48px rgba(0, 0, 0, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
body * {
    color: #000000 !important;
}

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

a:hover {
    color: #000000 !important;
}

section {
    padding: 4rem 0;
}

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

.card-outline {
    border: 1px solid #000;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.btn-outline {
    border: 1px solid #000;
    background: transparent;
    color: #000;
}

::selection {
    background: rgba(0, 0, 0, 0.08);
    color: #000000;
}
