/* --- GLOBAL RESET & BASE STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #1a1a1a; /* Dark background */
    color: #f0f0f0; /* Off-white text */
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

/* --- SHARED UTILS --- */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

a:hover {
    color: #fff;
}

.hanzi {
    font-family: "Noto Serif SC", serif;
    letter-spacing: 0.2em;
}
