:root { color-scheme: dark; }

* { box-sizing: border-box; }

html,
body { min-height: 100%; }

.kvr-home-page {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    background: #070402;
    font-family: Arial, Helvetica, sans-serif;
}

.kvr-home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    background: radial-gradient(ellipse at center, rgba(82, 29, 4, .28), transparent 58%);
}

.kvr-home-logo {
    display: block;
    width: min(100%, 470px);
    height: auto;
    object-fit: contain;
    mix-blend-mode: screen;
}

.kvr-home-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: min(100%, 420px);
    margin-top: -16px;
}

.kvr-home-button {
    min-width: 150px;
    min-height: 50px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff8b27;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.kvr-home-button:hover,
.kvr-home-button:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.kvr-home-login { background: transparent; }

.kvr-home-login:hover,
.kvr-home-login:focus-visible {
    background: rgba(255, 120, 24, .16);
    box-shadow: 0 0 18px rgba(255, 104, 16, .26);
}

.kvr-home-signup {
    background: linear-gradient(135deg, #ff9d37, #ed550b 58%, #ae2c03);
    box-shadow: 0 7px 22px rgba(211, 68, 5, .42), inset 0 1px 1px rgba(255, 238, 188, .6);
}

.kvr-home-signup:hover,
.kvr-home-signup:focus-visible {
    box-shadow: 0 10px 28px rgba(244, 83, 8, .64), inset 0 1px 1px rgba(255, 238, 188, .6);
}

@media (max-width: 480px) {
    .kvr-home { padding: 24px 18px; }

    .kvr-home-logo { width: min(100%, 360px); }

    .kvr-home-actions {
        gap: 10px;
        margin-top: -6px;
    }

    .kvr-home-button {
        min-width: 0;
        flex: 1;
        min-height: 47px;
        padding: 0 12px;
        font-size: 14px;
    }
}
