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

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    gap: 2rem;
}

img {
    width: 280px;
    height: auto;
}

.new-game {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #10b981;
    color: #0f172a;
    font-family: inherit;
    font-size: inherit;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.new-game:hover {
    background-color: #34d399;
}

.error-title {
    font-size: 2rem;
    font-weight: 300;
    color: #f43f5e;
}

.error-message {
    font-size: 1.125rem;
    color: #94a3b8;
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
        gap: 1.25rem;
    }
}