/* ONBOARDING OVERLAY */
.onboarding-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: #FAFAFA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.onboarding-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* SLIDES CONTAINER */
.onboarding-slides {
    width: 100%;
    max-width: 360px;
    padding: 0 24px;
    text-align: center;
    position: relative;
}

.onboarding-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: slideIn 0.35s ease;
}

.onboarding-slide.active {
    display: flex;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ILLUSTRATION */
.onboarding-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(34, 23, 35, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 36px;
}

/* TEXT */
.onboarding-slide h2 {
    font-size: 22px;
    font-weight: 700;
    color: #221723;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.onboarding-slide p {
    font-size: 15px;
    color: #6E6E73;
    line-height: 1.55;
    margin-bottom: 32px;
    max-width: 300px;
}

/* DOTS */
.onboarding-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}

.onboarding-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(34, 23, 35, 0.15);
    transition: background 0.2s ease, width 0.2s ease;
}

.onboarding-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #221723;
}

/* BUTTONS */
.onboarding-actions {
    width: 100%;
    max-width: 360px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.onboarding-next {
    width: 100%;
    padding: 14px;
    border-radius: 999px;
    border: none;
    background: #221723;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.onboarding-next:active {
    opacity: 0.85;
}

.onboarding-skip {
    width: 100%;
    padding: 10px;
    border: none;
    background: transparent;
    color: #AEAEB2;
    font-size: 13px;
    cursor: pointer;
}
