/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
    background-color: #0f0f10;
    color: #eaeaea;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Layout */
.container {
    text-align: center;
    padding: 2rem;
    max-width: 480px;
}

/* Branding */
.logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.logo span {
    color: #e53935; /* subtle red accent */
}

/* Text */
.tagline {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.subtext {
    font-size: 1rem;
    color: #b5b5b5;
    line-height: 1.5;
}

/* Footer */
.footer {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: #777;
}
