#tourOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: tourFadeIn 0.35s ease;
}

@keyframes tourFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes tourSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.tour-dialog {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px 28px;
    max-width: 520px;
    width: 92%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: tourSlideUp 0.4s ease;
    text-align: center;
    position: relative;
}

.tour-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 12px;
}

.tour-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.tour-step-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: left;
    padding: 0 8px;
}

.tour-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.tour-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all 0.3s;
}

.tour-dot.active {
    background: #4f46e5;
    transform: scale(1.3);
}

.tour-dot.done {
    background: #059669;
}

.tour-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-btn-skip {
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.tour-btn-skip:hover {
    color: #64748b;
}

.tour-btn-next {
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.tour-btn-next:hover {
    background: #4338ca;
    transform: translateY(-1px);
}

.tour-btn-next:active {
    transform: scale(0.97);
}

.tour-badge {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}
