:root {
    --bg-deep: #0b1b2b;
    --bg-mid: #152c42;
    --bg-soft: #f5f7fb;
    --accent: #ff6b35;
    --accent-2: #2bbf8a;
    --accent-3: #f4b860;
    --text-dark: #0b1b2b;
    --text-light: #f7f3ec;
    --card-bg: rgba(255, 255, 255, 0.92);
    --card-dark: rgba(13, 30, 45, 0.85);
    --border: rgba(16, 31, 46, 0.12);
    --shadow: 0 18px 40px rgba(9, 17, 32, 0.18);
    --radius: 18px;
}

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

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text-dark);
    background: #f5f7fb;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

body::before { display: none; }

h1,
h2,
h3,
h4 {
    margin: 0 0 0.6rem;
    color: var(--bg-deep);
    font-family: "Fraunces", "Times New Roman", serif;
}

p {
    margin: 0 0 1rem;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
}
