/* Onboarding overlay */
#onboarding-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onboarding-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.onboarding-card {
    position: relative;
    background: #1a1a2e;
    border-radius: 20px;
    padding: 40px;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 20px 80px rgba(108, 92, 231, 0.2);
    border: 1px solid rgba(108, 92, 231, 0.15);
}

/* Step indicators */
.onboarding-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
}

.onboarding-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a2a3e;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.onboarding-step.active {
    background: linear-gradient(135deg, #6c5ce7, #a855f7);
    color: #fff;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
}

.onboarding-step.completed {
    background: #2ecc71;
    color: #fff;
}

.onboarding-line {
    width: 40px;
    height: 2px;
    background: #2a2a3e;
    margin: 0 8px;
}

/* Content pages */
.onboarding-content {
    min-height: 280px;
}

.onboarding-page {
    display: none;
    animation: fadeIn 0.3s ease;
}

.onboarding-page.active {
    display: block;
}

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

.onboarding-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 16px;
}

.onboarding-page h2 {
    text-align: center;
    font-size: 22px;
    margin: 0 0 12px 0;
    color: #fff;
}

.onboarding-page p {
    text-align: center;
    color: #aaa;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.onboarding-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.onboarding-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 14px;
}

.onboarding-feature span:first-child {
    font-size: 32px;
}

.onboarding-tip {
    background: #0f0f1a;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border-left: 3px solid #6c5ce7;
}

.onboarding-tip strong {
    color: #6c5ce7;
    display: block;
    margin-bottom: 8px;
}

.onboarding-tip ul {
    margin: 0;
    padding-left: 20px;
    color: #aaa;
}

.onboarding-tip li {
    margin-bottom: 4px;
}

.onboarding-tip p {
    margin: 0;
    text-align: left;
    font-size: 14px;
}

/* Actions */
.onboarding-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.btn-skip {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    padding: 8px 16px;
    transition: color 0.2s;
}

.btn-skip:hover {
    color: #aaa;
}

.btn-next {
    background: linear-gradient(135deg, #6c5ce7, #a855f7);
    border: none;
    border-radius: 10px;
    color: #fff;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-next:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}
