:root {
    --bg: #111;
    --panel: #161616;
    --ink: #eaeaea;
    --muted: #9a9a9a;
    --accent: #ff8c1a;
    --accent-weak: #ffb36a;
    --bd: 1px solid rgba(255, 255, 255, .06);
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --radius: 14px
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--ink);
    font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif
}

a {
    color: var(--accent);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

h1, h2 {
    margin: 0 20px 14px;
    text-align: center;
    font-family: inherit
}

h1 {
    font-size: 40px;
    line-height: 50px;
    color: var(--accent)
}

h2 {
    font-size: 22px;
    line-height: 32px;
    color: var(--muted)
}

.questions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 32px 16px 64px
}

.section {
    display: block;
    margin: 16px auto;
    padding: 20px;
    width: min(860px, 100%);
    /*background: linear-gradient(180deg, rgba(255, 140, 26, .03), transparent) var(--panel);*/
    /*border: var(--bd);*/
    /*border-radius: var(--radius);*/
    /*box-shadow: var(--shadow)*/
}

.question-title {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 28px;
    color: var(--ink);
    text-align: center
}

.question-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.question-option {
    display: inline-block;
    margin: 6px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 140, 26, .35);
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease
}

.question-option:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
    background: rgba(255, 140, 26, .08)
}

.question-option:active {
    transform: translateY(0)
}

.question-option.green {
    border-color: rgba(0, 200, 0, .35);
    background: rgba(0, 200, 0, .08)
}

.question-option.red {
    border-color: rgba(255, 80, 80, .35);
    background: rgba(255, 80, 80, .07)
}

.history {
    padding: 0 20px;
    margin-top: 10px;
    width: min(860px, 100%);
    color: var(--muted)
}

.history-item {
    padding: 4px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .06)
}

.history-item span {
    color: var(--ink)
}

.points {
    display: none
}

.lang-switch {
    position: fixed;
    top: 14px;
    right: 16px;
    display: flex;
    gap: 6px;
    align-items: center;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 140, 26, .35);
    border-radius: 999px;
    padding: 6px 8px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10;
    text-shadow: 1px 0 3px #000
}

.lang-btn {
    appearance: none;
    border: none;
    background: transparent;
    color: var(--ink);
    padding: 6px 10px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px
}

.lang-btn.active {
    background: var(--accent);
    color: #000;
    font-weight: 600
}

.brand-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-weak);
    display: inline-block;
    margin-left: 2px;
    opacity: .9
}

body::before {
    content: "";
    display: block;
    height: 48px
}

@media (max-width: 480px) {
    h1 {
        font-size: 30px;
        line-height: 38px
    }

    .section {
        margin: 12px;
        padding: 16px
    }

    .question-option {
        padding: 9px 12px
    }
}
