:root {
    --bg-primary: #0f172a;
    --text-primary: #f1f5f9;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

.logo {
    max-width: 100%;
    height: auto;
    /* Adjust size if needed based on the example hero-logo usage, 
       but standardizing it to be responsive is good practice. 
       Example had max-width: 200px in hero section. */
    max-width: 300px; 
}
