/* Light theme (default) */
:root {
    --background-color: #c8cdd3;
    --text-color: #1e2a3a;
    --status-color: #4a5568;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #1e2a3a;
        --text-color: #c8cdd3;
        --status-color: #a0aec0;
    }
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo {
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
    border-radius: 16px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.status {
    font-size: 1.25rem;
    color: var(--status-color);
    font-weight: 400;
}

@media (max-width: 480px) {
    .logo {
        width: 150px;
        height: 150px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .status {
        font-size: 1rem;
    }
}
