:root {
    --bg-color: #ffffff;
    --text-color: #37352f;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

.container {
    text-align: center;
}

.logo-image {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto 12px;
}

.logo {
    font-size: 2.5rem;
    /* Notion headings are usually not massive, but big enough */
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-color);
}

/* Responsive adjustments if needed, though simple centering works everywhere */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }
}
