.onboarding-progress-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.onboarding-progress-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.onboarding-progress-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(99, 179, 237, 0.5);
}

.onboarding-progress-circle svg {
    width: 34px;
    height: 34px;
    transform: rotate(-90deg);
}

.onboarding-progress-circle .progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 3;
}

.onboarding-progress-circle .progress-bar-ring {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s ease, stroke 0.3s ease;
}

.onboarding-progress-circle .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.onboarding-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: #1a202c;
    border: 1px solid #2d3748;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 1060;
    display: none;
    margin-top: 8px;
    overflow: hidden;
}

.onboarding-dropdown.show {
    display: block;
    animation: obDropIn 0.2s ease-out;
}

@keyframes obDropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.onboarding-dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid #2d3748;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.onboarding-dropdown-header h6 {
    margin: 0;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 600;
}

.onboarding-dropdown-header .badge {
    font-size: 0.7rem;
}

.onboarding-step {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(45, 55, 72, 0.5);
    text-decoration: none;
    color: #a0aec0;
    transition: background 0.15s ease;
}

.onboarding-step:last-child {
    border-bottom: none;
}

.onboarding-step:hover {
    background: rgba(45, 55, 72, 0.5);
    color: #e2e8f0;
    text-decoration: none;
}

.onboarding-step-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.onboarding-step.done .onboarding-step-icon {
    background: rgba(72, 187, 120, 0.2);
    color: #48bb78;
}

.onboarding-step.pending .onboarding-step-icon {
    background: rgba(99, 179, 237, 0.15);
    color: #63b3ed;
}

.onboarding-step.done .onboarding-step-label {
    text-decoration: line-through;
    color: #718096;
}

.onboarding-step-label {
    font-size: 0.8rem;
    flex-grow: 1;
}

.onboarding-step-check {
    font-size: 0.75rem;
    color: #48bb78;
    margin-left: 8px;
}

.celebration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.celebration-modal {
    background: linear-gradient(135deg, #1a365d, #2a4365);
    border: 1px solid #4299e1;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: celebPop 0.4s ease-out;
    position: relative;
}

@keyframes celebPop {
    0% { transform: scale(0.7); opacity: 0; }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.celebration-modal .celebration-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.celebration-modal h3 {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.celebration-modal p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.celebration-modal .next-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.celebration-modal .next-actions a {
    display: block;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    background: rgba(66, 153, 225, 0.15);
    color: #63b3ed;
    border: 1px solid rgba(66, 153, 225, 0.3);
    transition: background 0.2s ease;
}

.celebration-modal .next-actions a:hover {
    background: rgba(66, 153, 225, 0.25);
}

.celebration-modal .dismiss-btn {
    margin-top: 1rem;
    background: none;
    border: none;
    color: #718096;
    font-size: 0.8rem;
    cursor: pointer;
}

.celebration-modal .dismiss-btn:hover {
    color: #a0aec0;
}
