body {
    background-image: url('/images/bg_werin3.png');
}

body.bg-bis {
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(99, 60, 220, 0.2) 0%, transparent 55%),
        linear-gradient(135deg, #0f0c1d 0%, #1e1245 50%, #110d2e 100%);
    background-color: #0f0c1d;
}

.w-mxc {
    width: max-content;
}

/* ── Onboarding wrapper ── */
.onboarding-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

/* ── Progress steps ── */
.onboarding-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.onboarding-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.onboarding-step-line {
    position: absolute;
    top: 20px;
    left: calc(-50%);
    width: 100%;
    height: 2px;
    z-index: 0;
}
.onboarding-step-line-done   { background: #3b82f6; }
.onboarding-step-line-active { background: linear-gradient(to right, #3b82f6 50%, rgba(255,255,255,0.2) 50%); }
.onboarding-step-line-idle   { background: rgba(255,255,255,0.2); }

.onboarding-step-circle {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
    transition: all 0.2s;
    border: 2px solid rgba(255,255,255,0.25);
    background: #0f0c1d;
    color: rgba(255,255,255,0.5);
}

.onboarding-step-completed .onboarding-step-circle {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}
.onboarding-step-completed .onboarding-step-circle .path1,
.onboarding-step-completed .onboarding-step-circle .path2 {
    color: #fff;
    opacity: 1;
}

.onboarding-step-current .onboarding-step-circle {
    background: #fff;
    border-color: #fff;
    color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.2);
}

.onboarding-step-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}
.onboarding-step-current .onboarding-step-label  { color: #fff; font-weight: 600; }
.onboarding-step-completed .onboarding-step-label { color: rgba(255,255,255,0.85); }

/* ── Choice cards ── */
.onboarding-choices {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.onboarding-choice-item {
    position: relative;
}

.onboarding-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.onboarding-choice-label {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--bs-border-color, #e5e7eb);
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    user-select: none;
    gap: 12px;
}

.onboarding-choice-label::before {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--bs-border-color, #d1d5db);
    transition: all 0.15s;
}

.onboarding-choice-label:hover {
    border-color: #3b82f6;
    background: rgba(59,130,246,0.06);
}

.onboarding-radio:checked + .onboarding-choice-label {
    border-color: #3b82f6;
    background: rgba(59,130,246,0.08);
    color: #3b82f6;
}

.onboarding-radio:checked + .onboarding-choice-label::before {
    background: #3b82f6;
    border-color: #3b82f6;
    box-shadow: inset 0 0 0 4px #fff;
}

